PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::Batch::SubmitJob; use Moose; has ArrayProperties => (is => 'ro', isa => 'Paws::Batch::ArrayProperties', traits => ['NameInRequest'], request_name => 'arrayProperties'); has ContainerOverrides => (is => 'ro', isa => 'Paws::Batch::ContainerOverrides', traits => ['NameInRequest'], request_name => 'containerOverrides'); has DependsOn => (is => 'ro', isa => 'ArrayRef[Paws::Batch::JobDependency]', traits => ['NameInRequest'], request_name => 'dependsOn'); has JobDefinition => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'jobDefinition', required => 1); has JobName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'jobName', required => 1); has JobQueue => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'jobQueue', required => 1); has NodeOverrides => (is => 'ro', isa => 'Paws::Batch::NodeOverrides', traits => ['NameInRequest'], request_name => 'nodeOverrides'); has Parameters => (is => 'ro', isa => 'Paws::Batch::ParametersMap', traits => ['NameInRequest'], request_name => 'parameters'); has PropagateTags => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'propagateTags'); has RetryStrategy => (is => 'ro', isa => 'Paws::Batch::RetryStrategy', traits => ['NameInRequest'], request_name => 'retryStrategy'); has Tags => (is => 'ro', isa => 'Paws::Batch::TagrisTagsMap', traits => ['NameInRequest'], request_name => 'tags'); has Timeout => (is => 'ro', isa => 'Paws::Batch::JobTimeout', traits => ['NameInRequest'], request_name => 'timeout'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'SubmitJob'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/v1/submitjob'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Batch::SubmitJobResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::Batch::SubmitJob - Arguments for method SubmitJob on L =head1 DESCRIPTION This class represents the parameters used for calling the method SubmitJob on the L service. Use the attributes of this class as arguments to method SubmitJob. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SubmitJob. =head1 SYNOPSIS my $batch = Paws->service('Batch'); # To submit a job to a queue # This example submits a simple container job called example to the HighPriority # job queue. my $SubmitJobResponse = $batch->SubmitJob( 'JobDefinition' => 'sleep60', 'JobName' => 'example', 'JobQueue' => 'HighPriority' ); # Results: my $jobId = $SubmitJobResponse->jobId; my $jobName = $SubmitJobResponse->jobName; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 ArrayProperties => L The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000. If you specify array properties for a job, it becomes an array job. For more information, see Array Jobs (https://docs.aws.amazon.com/batch/latest/userguide/array_jobs.html) in the I. =head2 ContainerOverrides => L A list of container overrides in the JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container, which is specified in the job definition or the Docker image, with a C override. You can also override existing environment variables on a container or add new environment variables to it with an C override. =head2 DependsOn => ArrayRef[L] A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can specify a C type dependency without specifying a job ID for array jobs so that each child array job completes sequentially, starting at index 0. You can also specify an C type dependency with a job ID for array jobs. In that case, each index child of this job must wait for the corresponding index child of each dependency to complete before it can begin. =head2 B JobDefinition => Str The job definition used by this job. This value can be one of C, C, or the Amazon Resource Name (ARN) for the job definition. If C is specified without a revision then the latest active revision is used. =head2 B JobName => Str The name of the job. The first character must be alphanumeric, and up to 128 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. =head2 B JobQueue => Str The job queue where the job is submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue. =head2 NodeOverrides => L A list of node overrides in JSON format that specify the node range to target and the container overrides for that node range. This parameter isn't applicable to jobs running on Fargate resources; use C instead. =head2 Parameters => L Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a C request override any corresponding parameter defaults from the job definition. =head2 PropagateTags => Bool Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the C state. When specified, this overrides the tag propagation setting in the job definition. =head2 RetryStrategy => L The retry strategy to use for failed jobs from this SubmitJob operation. When a retry strategy is specified here, it overrides the retry strategy defined in the job definition. =head2 Tags => L The tags that you apply to the job request to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging AWS Resources (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) in I. =head2 Timeout => L The timeout configuration for this SubmitJob operation. You can specify a timeout duration after which AWS Batch terminates your jobs if they haven't finished. If a job is terminated due to a timeout, it isn't retried. The minimum value for the timeout is 60 seconds. This configuration overrides any timeout configuration specified in the job definition. For array jobs, child jobs have the same timeout configuration as the parent job. For more information, see Job Timeouts (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/job_timeouts.html) in the I. =head1 SEE ALSO This class forms part of L, documenting arguments for method SubmitJob in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut