#[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 ==
.impl StructuralPartialEq for EcsServiceUtilizationMetricBuilder
Auto Trait Implementations§
impl Freeze for EcsServiceUtilizationMetricBuilder
impl RefUnwindSafe for EcsServiceUtilizationMetricBuilder
impl Send for EcsServiceUtilizationMetricBuilder
impl Sync for EcsServiceUtilizationMetricBuilder
impl Unpin for EcsServiceUtilizationMetricBuilder
impl UnwindSafe for EcsServiceUtilizationMetricBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more