Method: Aws::ECS::Types::RegisterTaskDefinitionRequest#ephemeral_storage

Defined in:
lib/aws-sdk-ecs/types.rb

#ephemeral_storageTypes::EphemeralStorage

The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see [Using data volumes in tasks] in the *Amazon ECS Developer Guide*.

<note markdown=“1”> For tasks using the Fargate launch type, the task requires the following platforms:

* Linux platform version `1.4.0` or later.
  • Windows platform version 1.0.0 or later.

</note>

[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/using_data_volumes.html



11097
11098
11099
11100
11101
11102
11103
11104
11105
11106
11107
11108
11109
11110
11111
11112
11113
11114
11115
11116
11117
11118
# File 'lib/aws-sdk-ecs/types.rb', line 11097

class RegisterTaskDefinitionRequest < Struct.new(
  :family,
  :task_role_arn,
  :execution_role_arn,
  :network_mode,
  :container_definitions,
  :volumes,
  :placement_constraints,
  :requires_compatibilities,
  :cpu,
  :memory,
  :tags,
  :pid_mode,
  :ipc_mode,
  :proxy_configuration,
  :inference_accelerators,
  :ephemeral_storage,
  :runtime_platform,
  :enable_fault_injection)
  SENSITIVE = []
  include Aws::Structure
end