Class: Aws::ECS::Types::TaskEphemeralStorage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECS::Types::TaskEphemeralStorage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ecs/types.rb
 
Overview
The amount of ephemeral storage to allocate for the task.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specify an Key Management Service key ID to encrypt the ephemeral storage for the task.
 - 
  
    
      #size_in_gi_b  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total amount, in GiB, of the ephemeral storage to set for the task.
 
Instance Attribute Details
#kms_key_id ⇒ String
Specify an Key Management Service key ID to encrypt the ephemeral storage for the task.
      11211 11212 11213 11214 11215 11216  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 11211 class TaskEphemeralStorage < Struct.new( :size_in_gi_b, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#size_in_gi_b ⇒ Integer
The total amount, in GiB, of the ephemeral storage to set for the task. The minimum supported value is ‘20` GiB and the maximum supported value is `200` GiB.
      11211 11212 11213 11214 11215 11216  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 11211 class TaskEphemeralStorage < Struct.new( :size_in_gi_b, :kms_key_id) SENSITIVE = [] include Aws::Structure end  |