Class: Aws::ComputeOptimizer::Types::ContainerRecommendation
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ComputeOptimizer::Types::ContainerRecommendation
 
- Defined in:
- gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb
Overview
The CPU and memory recommendations for a container 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 recommended number of CPU units reserved for the container. 
- 
  
    
      #memory_size_configuration  ⇒ Types::MemorySizeConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The recommended memory size configurations for the container. 
Instance Attribute Details
#container_name ⇒ String
The name of the container.
| 433 434 435 436 437 438 439 | # File 'gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb', line 433 class ContainerRecommendation < Struct.new( :container_name, :memory_size_configuration, :cpu) SENSITIVE = [] include Aws::Structure end | 
#cpu ⇒ Integer
The recommended number of CPU units reserved for the container.
| 433 434 435 436 437 438 439 | # File 'gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb', line 433 class ContainerRecommendation < Struct.new( :container_name, :memory_size_configuration, :cpu) SENSITIVE = [] include Aws::Structure end | 
#memory_size_configuration ⇒ Types::MemorySizeConfiguration
The recommended memory size configurations for the container.
| 433 434 435 436 437 438 439 | # File 'gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb', line 433 class ContainerRecommendation < Struct.new( :container_name, :memory_size_configuration, :cpu) SENSITIVE = [] include Aws::Structure end |