Class: Aws::ComputeOptimizer::Types::ECSServiceProjectedMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComputeOptimizer::Types::ECSServiceProjectedMetric
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-computeoptimizer/types.rb
Overview
Describes the projected metrics of an Amazon ECS service recommendation option.
To determine the performance difference between your current Amazon ECS service and the recommended option, compare the metric data of your service against its projected metric data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lower_bound_values ⇒ Array<Float>
The lower bound values for the projected metric.
-
#name ⇒ String
The name of the projected metric.
-
#timestamps ⇒ Array<Time>
The timestamps of the projected metric.
-
#upper_bound_values ⇒ Array<Float>
The upper bound values for the projected metric.
Instance Attribute Details
#lower_bound_values ⇒ Array<Float>
The lower bound values for the projected metric.
954 955 956 957 958 959 960 961 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 954 class ECSServiceProjectedMetric < Struct.new( :name, :timestamps, :upper_bound_values, :lower_bound_values) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the projected metric.
The following metrics are available:
-
‘Cpu` — The percentage of allocated compute units that are currently in use on the service tasks.
-
‘Memory` — The percentage of memory that’s currently in use on the service tasks.
954 955 956 957 958 959 960 961 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 954 class ECSServiceProjectedMetric < Struct.new( :name, :timestamps, :upper_bound_values, :lower_bound_values) SENSITIVE = [] include Aws::Structure end |
#timestamps ⇒ Array<Time>
The timestamps of the projected metric.
954 955 956 957 958 959 960 961 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 954 class ECSServiceProjectedMetric < Struct.new( :name, :timestamps, :upper_bound_values, :lower_bound_values) SENSITIVE = [] include Aws::Structure end |
#upper_bound_values ⇒ Array<Float>
The upper bound values for the projected metric.
954 955 956 957 958 959 960 961 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 954 class ECSServiceProjectedMetric < Struct.new( :name, :timestamps, :upper_bound_values, :lower_bound_values) SENSITIVE = [] include Aws::Structure end |