#[non_exhaustive]pub struct EcsServiceUtilizationMetric { /* private fields */ }Expand description
Describes the utilization metric of an Amazon ECS service.
To determine the performance difference between your current ECS service and the recommended option, compare the utilization metric data of your service against its projected utilization metric data.
Implementations§
source§impl EcsServiceUtilizationMetric
 
impl EcsServiceUtilizationMetric
sourcepub fn name(&self) -> Option<&EcsServiceMetricName>
 
pub fn name(&self) -> Option<&EcsServiceMetricName>
The name of the utilization metric.
The following utilization metrics are available:
-  Cpu— The amount of CPU units that are used in the service.
-  Memory— The amount of memory that is used in the service.
sourcepub fn statistic(&self) -> Option<&EcsServiceMetricStatistic>
 
pub fn statistic(&self) -> Option<&EcsServiceMetricStatistic>
The statistic of the 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.
source§impl EcsServiceUtilizationMetric
 
impl EcsServiceUtilizationMetric
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EcsServiceUtilizationMetric.
Trait Implementations§
source§impl Clone for EcsServiceUtilizationMetric
 
impl Clone for EcsServiceUtilizationMetric
source§fn clone(&self) -> EcsServiceUtilizationMetric
 
fn clone(&self) -> EcsServiceUtilizationMetric
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for EcsServiceUtilizationMetric
 
impl Debug for EcsServiceUtilizationMetric
source§impl PartialEq<EcsServiceUtilizationMetric> for EcsServiceUtilizationMetric
 
impl PartialEq<EcsServiceUtilizationMetric> for EcsServiceUtilizationMetric
source§fn eq(&self, other: &EcsServiceUtilizationMetric) -> bool
 
fn eq(&self, other: &EcsServiceUtilizationMetric) -> bool
self and other values to be equal, and is used
by ==.