Class: Aws::Pipes::Types::EcsTaskOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::EcsTaskOverride
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pipes/types.rb
Overview
The overrides that are associated with a task.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_overrides ⇒ Array<Types::EcsContainerOverride>
One or more container overrides that are sent to a task.
-
#cpu ⇒ String
The cpu override for the task.
-
#ephemeral_storage ⇒ Types::EcsEphemeralStorage
The ephemeral storage setting override for the task.
-
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the task execution IAM role override for the task.
-
#inference_accelerator_overrides ⇒ Array<Types::EcsInferenceAcceleratorOverride>
The Elastic Inference accelerator override for the task.
-
#memory ⇒ String
The memory override for the task.
-
#task_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume.
Instance Attribute Details
#container_overrides ⇒ Array<Types::EcsContainerOverride>
One or more container overrides that are sent to a task.
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-pipes/types.rb', line 1108 class EcsTaskOverride < Struct.new( :container_overrides, :cpu, :ephemeral_storage, :execution_role_arn, :inference_accelerator_overrides, :memory, :task_role_arn) SENSITIVE = [] include Aws::Structure end |
#cpu ⇒ String
The cpu override for the task.
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-pipes/types.rb', line 1108 class EcsTaskOverride < Struct.new( :container_overrides, :cpu, :ephemeral_storage, :execution_role_arn, :inference_accelerator_overrides, :memory, :task_role_arn) SENSITIVE = [] include Aws::Structure end |
#ephemeral_storage ⇒ Types::EcsEphemeralStorage
The ephemeral storage setting override for the task.
<note markdown=“1”> This parameter is only supported for tasks hosted on Fargate that use the following platform versions:
* Linux platform version `1.4.0` or later.
-
Windows platform version ‘1.0.0` or later.
</note>
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-pipes/types.rb', line 1108 class EcsTaskOverride < Struct.new( :container_overrides, :cpu, :ephemeral_storage, :execution_role_arn, :inference_accelerator_overrides, :memory, :task_role_arn) SENSITIVE = [] include Aws::Structure end |
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the task execution IAM role override for the task. For more information, see [Amazon ECS task execution IAM role] in the *Amazon Elastic Container Service Developer Guide*.
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-pipes/types.rb', line 1108 class EcsTaskOverride < Struct.new( :container_overrides, :cpu, :ephemeral_storage, :execution_role_arn, :inference_accelerator_overrides, :memory, :task_role_arn) SENSITIVE = [] include Aws::Structure end |
#inference_accelerator_overrides ⇒ Array<Types::EcsInferenceAcceleratorOverride>
The Elastic Inference accelerator override for the task.
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-pipes/types.rb', line 1108 class EcsTaskOverride < Struct.new( :container_overrides, :cpu, :ephemeral_storage, :execution_role_arn, :inference_accelerator_overrides, :memory, :task_role_arn) SENSITIVE = [] include Aws::Structure end |
#memory ⇒ String
The memory override for the task.
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-pipes/types.rb', line 1108 class EcsTaskOverride < Struct.new( :container_overrides, :cpu, :ephemeral_storage, :execution_role_arn, :inference_accelerator_overrides, :memory, :task_role_arn) SENSITIVE = [] include Aws::Structure end |
#task_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume. All containers in this task are granted the permissions that are specified in this role. For more information, see [IAM Role for Tasks] in the *Amazon Elastic Container Service Developer Guide*.
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-pipes/types.rb', line 1108 class EcsTaskOverride < Struct.new( :container_overrides, :cpu, :ephemeral_storage, :execution_role_arn, :inference_accelerator_overrides, :memory, :task_role_arn) SENSITIVE = [] include Aws::Structure end |