#[non_exhaustive]pub struct EcsServiceUtilizationMetricBuilder { /* private fields */ }
Expand description
A builder for EcsServiceUtilizationMetric
.
Implementations§
source§impl EcsServiceUtilizationMetricBuilder
impl EcsServiceUtilizationMetricBuilder
sourcepub fn name(self, input: EcsServiceMetricName) -> Self
pub fn name(self, input: EcsServiceMetricName) -> Self
The name of the utilization metric.
The following utilization metrics are available:
-
Cpu
— The amount of CPU capacity that's used in the service. -
Memory
— The amount of memory that's used in the service.
sourcepub fn set_name(self, input: Option<EcsServiceMetricName>) -> Self
pub fn set_name(self, input: Option<EcsServiceMetricName>) -> Self
The name of the utilization metric.
The following utilization metrics are available:
-
Cpu
— The amount of CPU capacity that's used in the service. -
Memory
— The amount of memory that's used in the service.
sourcepub fn get_name(&self) -> &Option<EcsServiceMetricName>
pub fn get_name(&self) -> &Option<EcsServiceMetricName>
The name of the utilization metric.
The following utilization metrics are available:
-
Cpu
— The amount of CPU capacity that's used in the service. -
Memory
— The amount of memory that's used in the service.
sourcepub fn statistic(self, input: EcsServiceMetricStatistic) -> Self
pub fn statistic(self, input: EcsServiceMetricStatistic) -> Self
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.
sourcepub fn set_statistic(self, input: Option<EcsServiceMetricStatistic>) -> Self
pub fn set_statistic(self, input: Option<EcsServiceMetricStatistic>) -> Self
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.
sourcepub fn get_statistic(&self) -> &Option<EcsServiceMetricStatistic>
pub fn get_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.
sourcepub fn build(self) -> EcsServiceUtilizationMetric
pub fn build(self) -> EcsServiceUtilizationMetric
Consumes the builder and constructs a EcsServiceUtilizationMetric
.
Trait Implementations§
source§impl Clone for EcsServiceUtilizationMetricBuilder
impl Clone for EcsServiceUtilizationMetricBuilder
source§fn clone(&self) -> EcsServiceUtilizationMetricBuilder
fn clone(&self) -> EcsServiceUtilizationMetricBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for EcsServiceUtilizationMetricBuilder
impl Default for EcsServiceUtilizationMetricBuilder
source§fn default() -> EcsServiceUtilizationMetricBuilder
fn default() -> EcsServiceUtilizationMetricBuilder
source§impl PartialEq for EcsServiceUtilizationMetricBuilder
impl PartialEq for EcsServiceUtilizationMetricBuilder
source§fn eq(&self, other: &EcsServiceUtilizationMetricBuilder) -> bool
fn eq(&self, other: &EcsServiceUtilizationMetricBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.