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::RunTask; use Moose; has CapacityProviderStrategy => (is => 'ro', isa => 'ArrayRef[Paws::ECS::CapacityProviderStrategyItem]', traits => ['NameInRequest'], request_name => 'capacityProviderStrategy' ); has Cluster => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'cluster' ); has Count => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'count' ); 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 LaunchType => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'launchType' ); 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 PlacementConstraints => (is => 'ro', isa => 'ArrayRef[Paws::ECS::PlacementConstraint]', traits => ['NameInRequest'], request_name => 'placementConstraints' ); has PlacementStrategy => (is => 'ro', isa => 'ArrayRef[Paws::ECS::PlacementStrategy]', traits => ['NameInRequest'], request_name => 'placementStrategy' ); has PlatformVersion => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'platformVersion' ); 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 => 'RunTask'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ECS::RunTaskResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::ECS::RunTask - Arguments for method RunTask on L =head1 DESCRIPTION This class represents the parameters used for calling the method RunTask on the L service. Use the attributes of this class as arguments to method RunTask. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to RunTask. =head1 SYNOPSIS my $ecs = Paws->service('ECS'); # To run a task on your default cluster # This example runs the specified task definition on your default cluster. my $RunTaskResponse = $ecs->RunTask( 'Cluster' => 'default', 'TaskDefinition' => 'sleep360:1' ); # Results: my $tasks = $RunTaskResponse->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 CapacityProviderStrategy => ArrayRef[L] The capacity provider strategy to use for the task. If a C is specified, the C parameter must be omitted. If no C or C is specified, the C for the cluster is used. =head2 Cluster => Str The short name or full Amazon Resource Name (ARN) of the cluster on which to run your task. If you do not specify a cluster, the default cluster is assumed. =head2 Count => Int The number of instantiations of the specified task to place on your cluster. You can specify up to 10 tasks per call. =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 to enable the execute command functionality for the containers in this 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 LaunchType => Str The infrastructure on which to run your standalone task. For more information, see Amazon ECS launch types (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the I. The C launch type runs your tasks on AWS Fargate On-Demand infrastructure. Fargate Spot infrastructure is available for use but a capacity provider strategy must be used. For more information, see AWS Fargate capacity providers (https://docs.aws.amazon.com/AmazonECS/latest/userguide/fargate-capacity-providers.html) in the I. The C launch type runs your tasks on Amazon EC2 instances registered to your cluster. The C launch type runs your tasks on your on-premise server or virtual machine (VM) capacity registered to your cluster. A task can use either a launch type or a capacity provider strategy. If a C is specified, the C parameter must be omitted. Valid values are: C<"EC2">, C<"FARGATE">, C<"EXTERNAL"> =head2 NetworkConfiguration => L The network configuration for the task. This parameter is required for task definitions that use the C network mode to receive their own elastic network interface, and it is not supported for other network modes. For more information, see Task Networking (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html) in the I. =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 PlacementConstraints => ArrayRef[L] An array of placement constraint objects to use for the task. You can specify up to 10 constraints per task (including constraints in the task definition and those specified at runtime). =head2 PlacementStrategy => ArrayRef[L] The placement strategy objects to use for the task. You can specify a maximum of five strategy rules per task. =head2 PlatformVersion => Str The platform version the task should run. A platform version is only specified for tasks using the Fargate launch type. If one is not specified, the C platform version is used by default. For more information, see AWS Fargate Platform Versions (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html) in the I. =head2 PropagateTags => Str Specifies whether to propagate the tags from the task definition to the task. If no value is specified, the tags are not propagated. Tags can only be propagated to the task during task creation. To add tags to a task after task creation, use the TagResource API action. An error will be received if you specify the C option when running a task. 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 run. 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 RunTask in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut