#[non_exhaustive]pub struct EcsServiceProjectedUtilizationMetric {
pub name: Option<EcsServiceMetricName>,
pub statistic: Option<EcsServiceMetricStatistic>,
pub lower_bound_value: f64,
pub upper_bound_value: f64,
}
Expand description
Describes the projected utilization 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 utilization metric data of your service against its projected utilization metric data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<EcsServiceMetricName>
The name of the projected utilization metric.
The following utilization 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.
statistic: Option<EcsServiceMetricStatistic>
The statistic of the projected utilization metric.
The Compute Optimizer API, Command Line Interface (CLI), and SDKs return utilization metrics using only the Maximum
statistic, which is the highest value observed during the specified period.
The Compute Optimizer console displays graphs for some utilization metrics using the Average
statistic, which is the value of Sum
/ SampleCount
during the specified period. For more information, see Viewing resource recommendations in the Compute Optimizer User Guide. You can also get averaged utilization metric data for your resources using Amazon CloudWatch. For more information, see the Amazon CloudWatch User Guide.
lower_bound_value: f64
The lower bound values for the projected utilization metrics.
upper_bound_value: f64
The upper bound values for the projected utilization metrics.
Implementations§
source§impl EcsServiceProjectedUtilizationMetric
impl EcsServiceProjectedUtilizationMetric
sourcepub fn name(&self) -> Option<&EcsServiceMetricName>
pub fn name(&self) -> Option<&EcsServiceMetricName>
The name of the projected utilization metric.
The following utilization 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.
sourcepub fn statistic(&self) -> Option<&EcsServiceMetricStatistic>
pub fn statistic(&self) -> Option<&EcsServiceMetricStatistic>
The statistic of the projected utilization metric.
The Compute Optimizer API, Command Line Interface (CLI), and SDKs return utilization metrics using only the Maximum
statistic, which is the highest value observed during the specified period.
The Compute Optimizer console displays graphs for some utilization metrics using the Average
statistic, which is the value of Sum
/ SampleCount
during the specified period. For more information, see Viewing resource recommendations in the Compute Optimizer User Guide. You can also get averaged utilization metric data for your resources using Amazon CloudWatch. For more information, see the Amazon CloudWatch User Guide.
sourcepub fn lower_bound_value(&self) -> f64
pub fn lower_bound_value(&self) -> f64
The lower bound values for the projected utilization metrics.
sourcepub fn upper_bound_value(&self) -> f64
pub fn upper_bound_value(&self) -> f64
The upper bound values for the projected utilization metrics.
source§impl EcsServiceProjectedUtilizationMetric
impl EcsServiceProjectedUtilizationMetric
sourcepub fn builder() -> EcsServiceProjectedUtilizationMetricBuilder
pub fn builder() -> EcsServiceProjectedUtilizationMetricBuilder
Creates a new builder-style object to manufacture EcsServiceProjectedUtilizationMetric
.
Trait Implementations§
source§impl Clone for EcsServiceProjectedUtilizationMetric
impl Clone for EcsServiceProjectedUtilizationMetric
source§fn clone(&self) -> EcsServiceProjectedUtilizationMetric
fn clone(&self) -> EcsServiceProjectedUtilizationMetric
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for EcsServiceProjectedUtilizationMetric
impl PartialEq for EcsServiceProjectedUtilizationMetric
source§fn eq(&self, other: &EcsServiceProjectedUtilizationMetric) -> bool
fn eq(&self, other: &EcsServiceProjectedUtilizationMetric) -> bool
self
and other
values to be equal, and is used
by ==
.