Class: Aws::ECS::Types::EphemeralStorage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#size_in_gi_bInteger

The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is ‘20` GiB and the maximum supported value is `200` GiB.

Returns:

  • (Integer)


4757
4758
4759
4760
4761
# File 'lib/aws-sdk-ecs/types.rb', line 4757

class EphemeralStorage < Struct.new(
  :size_in_gi_b)
  SENSITIVE = []
  include Aws::Structure
end