Class: Aws::ComputeOptimizer::Types::ContainerRecommendation

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#container_nameString

The name of the container.

Returns:

  • (String)


407
408
409
410
411
412
413
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 407

class ContainerRecommendation < Struct.new(
  :container_name,
  :memory_size_configuration,
  :cpu)
  SENSITIVE = []
  include Aws::Structure
end

#cpuInteger

The recommended number of CPU units reserved for the container.

Returns:

  • (Integer)


407
408
409
410
411
412
413
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 407

class ContainerRecommendation < Struct.new(
  :container_name,
  :memory_size_configuration,
  :cpu)
  SENSITIVE = []
  include Aws::Structure
end

#memory_size_configurationTypes::MemorySizeConfiguration

The recommended memory size configurations for the container.



407
408
409
410
411
412
413
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 407

class ContainerRecommendation < Struct.new(
  :container_name,
  :memory_size_configuration,
  :cpu)
  SENSITIVE = []
  include Aws::Structure
end