Method: Aws::ECS::Types::TaskOverride#ephemeral_storage
- Defined in:
- lib/aws-sdk-ecs/types.rb
#ephemeral_storage ⇒ Types::EphemeralStorage
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>
11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 |
# File 'lib/aws-sdk-ecs/types.rb', line 11494 class TaskOverride < Struct.new( :container_overrides, :cpu, :inference_accelerator_overrides, :execution_role_arn, :memory, :task_role_arn, :ephemeral_storage) SENSITIVE = [] include Aws::Structure end |