Class: Aws::ComputeOptimizer::Types::ContainerConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ComputeOptimizer::Types::ContainerConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-computeoptimizer/types.rb
 
Overview
Describes the container configurations within the tasks of your Amazon ECS service.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #container_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the container.
 - 
  
    
      #cpu  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of CPU units reserved for the container.
 - 
  
    
      #memory_size_configuration  ⇒ Types::MemorySizeConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The memory size configurations for the container.
 
Instance Attribute Details
#container_name ⇒ String
The name of the container.
      382 383 384 385 386 387 388  | 
    
      # File 'lib/aws-sdk-computeoptimizer/types.rb', line 382 class ContainerConfiguration < Struct.new( :container_name, :memory_size_configuration, :cpu) SENSITIVE = [] include Aws::Structure end  | 
  
#cpu ⇒ Integer
The number of CPU units reserved for the container.
      382 383 384 385 386 387 388  | 
    
      # File 'lib/aws-sdk-computeoptimizer/types.rb', line 382 class ContainerConfiguration < Struct.new( :container_name, :memory_size_configuration, :cpu) SENSITIVE = [] include Aws::Structure end  | 
  
#memory_size_configuration ⇒ Types::MemorySizeConfiguration
The memory size configurations for the container.
      382 383 384 385 386 387 388  | 
    
      # File 'lib/aws-sdk-computeoptimizer/types.rb', line 382 class ContainerConfiguration < Struct.new( :container_name, :memory_size_configuration, :cpu) SENSITIVE = [] include Aws::Structure end  |