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::ECS::StartTask; use Moose; has Cluster => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'cluster' ); has ContainerInstances => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'containerInstances' , required => 1); has EnableECSManagedTags => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'enableECSManagedTags' ); has EnableExecuteCommand => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'enableExecuteCommand' ); has Group => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'group' ); has NetworkConfiguration => (is => 'ro', isa => 'Paws::ECS::NetworkConfiguration', traits => ['NameInRequest'], request_name => 'networkConfiguration' ); has Overrides => (is => 'ro', isa => 'Paws::ECS::TaskOverride', traits => ['NameInRequest'], request_name => 'overrides' ); has PropagateTags => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'propagateTags' ); has ReferenceId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'referenceId' ); has StartedBy => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'startedBy' ); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::ECS::Tag]', traits => ['NameInRequest'], request_name => 'tags' ); has TaskDefinition => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'taskDefinition' , required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'StartTask'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ECS::StartTaskResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::ECS::StartTask - Arguments for method StartTask on L =head1 DESCRIPTION This class represents the parameters used for calling the method StartTask on the L service. Use the attributes of this class as arguments to method StartTask. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartTask. =head1 SYNOPSIS my $ecs = Paws->service('ECS'); my $StartTaskResponse = $ecs->StartTask( ContainerInstances => [ 'MyString', ... ], TaskDefinition => 'MyString', Cluster => 'MyString', # OPTIONAL EnableECSManagedTags => 1, # OPTIONAL EnableExecuteCommand => 1, # OPTIONAL Group => 'MyString', # OPTIONAL NetworkConfiguration => { AwsvpcConfiguration => { Subnets => [ 'MyString', ... ], AssignPublicIp => 'ENABLED', # values: ENABLED, DISABLED; OPTIONAL SecurityGroups => [ 'MyString', ... ], }, # OPTIONAL }, # OPTIONAL Overrides => { ContainerOverrides => [ { Command => [ 'MyString', ... ], Cpu => 1, # OPTIONAL Environment => [ { Name => 'MyString', Value => 'MyString', }, ... ], # OPTIONAL EnvironmentFiles => [ { Type => 's3', # values: s3 Value => 'MyString', }, ... ], # OPTIONAL Memory => 1, # OPTIONAL MemoryReservation => 1, # OPTIONAL Name => 'MyString', ResourceRequirements => [ { Type => 'GPU', # values: GPU, InferenceAccelerator Value => 'MyString', }, ... ], # OPTIONAL }, ... ], # OPTIONAL Cpu => 'MyString', EphemeralStorage => { SizeInGiB => 1, }, # OPTIONAL ExecutionRoleArn => 'MyString', InferenceAcceleratorOverrides => [ { DeviceName => 'MyString', DeviceType => 'MyString', }, ... ], # OPTIONAL Memory => 'MyString', TaskRoleArn => 'MyString', }, # OPTIONAL PropagateTags => 'TASK_DEFINITION', # OPTIONAL ReferenceId => 'MyString', # OPTIONAL StartedBy => 'MyString', # OPTIONAL Tags => [ { Key => 'MyTagKey', # min: 1, max: 128; OPTIONAL Value => 'MyTagValue', # max: 256; OPTIONAL }, ... ], # OPTIONAL ); # Results: my $Failures = $StartTaskResponse->Failures; my $Tasks = $StartTaskResponse->Tasks; # 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 Cluster => Str The short name or full Amazon Resource Name (ARN) of the cluster on which to start your task. If you do not specify a cluster, the default cluster is assumed. =head2 B ContainerInstances => ArrayRef[Str|Undef] The container instance IDs or full ARN entries for the container instances on which you would like to place your task. You can specify up to 10 container instances. =head2 EnableECSManagedTags => Bool Specifies whether to enable Amazon ECS managed tags for the task. For more information, see Tagging Your Amazon ECS Resources (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html) in the I. =head2 EnableExecuteCommand => Bool Whether or not the execute command functionality is enabled for the task. If C, this enables execute command functionality on all containers in the task. =head2 Group => Str The name of the task group to associate with the task. The default value is the family name of the task definition (for example, family:my-family-name). =head2 NetworkConfiguration => L The VPC subnet and security group configuration for tasks that receive their own elastic network interface by using the C networking mode. =head2 Overrides => L A list of container overrides in JSON format that specify the name of a container in the specified task definition and the overrides it should receive. You can override the default command for a container (that is specified in the task definition or Docker image) with a C override. You can also override existing environment variables (that are specified in the task definition or Docker image) on a container or add new environment variables to it with an C override. A total of 8192 characters are allowed for overrides. This limit includes the JSON formatting characters of the override structure. =head2 PropagateTags => Str Specifies whether to propagate the tags from the task definition or the service to the task. If no value is specified, the tags are not propagated. Valid values are: C<"TASK_DEFINITION">, C<"SERVICE"> =head2 ReferenceId => Str The reference ID to use for the task. =head2 StartedBy => Str An optional tag specified when a task is started. For example, if you automatically trigger a task to run a batch process job, you could apply a unique identifier for that job to your task with the C parameter. You can then identify which tasks belong to that job by filtering the results of a ListTasks call with the C value. Up to 36 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. If a task is started by an Amazon ECS service, then the C parameter contains the deployment ID of the service that starts it. =head2 Tags => ArrayRef[L] The metadata that you apply to the task to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags: =over =item * Maximum number of tags per resource - 50 =item * For each resource, each tag key must be unique, and each tag key can have only one value. =item * Maximum key length - 128 Unicode characters in UTF-8 =item * Maximum value length - 256 Unicode characters in UTF-8 =item * If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @. =item * Tag keys and values are case-sensitive. =item * Do not use C, C, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit. =back =head2 B TaskDefinition => Str The C and C (C) or full ARN of the task definition to start. If a C is not specified, the latest C revision is used. =head1 SEE ALSO This class forms part of L, documenting arguments for method StartTask in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut