#[non_exhaustive]pub struct RdsdbUtilizationMetric {
pub name: Option<RdsdbMetricName>,
pub statistic: Option<RdsdbMetricStatistic>,
pub value: f64,
}
Expand description
Describes the utilization metric of an Amazon RDS.
To determine the performance difference between your current Amazon RDS 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<RdsdbMetricName>
The name of the utilization metric.
statistic: Option<RdsdbMetricStatistic>
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.
value: f64
The value of the utilization metric.
Implementations§
source§impl RdsdbUtilizationMetric
impl RdsdbUtilizationMetric
sourcepub fn name(&self) -> Option<&RdsdbMetricName>
pub fn name(&self) -> Option<&RdsdbMetricName>
The name of the utilization metric.
sourcepub fn statistic(&self) -> Option<&RdsdbMetricStatistic>
pub fn statistic(&self) -> Option<&RdsdbMetricStatistic>
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 RdsdbUtilizationMetric
impl RdsdbUtilizationMetric
sourcepub fn builder() -> RdsdbUtilizationMetricBuilder
pub fn builder() -> RdsdbUtilizationMetricBuilder
Creates a new builder-style object to manufacture RdsdbUtilizationMetric
.
Trait Implementations§
source§impl Clone for RdsdbUtilizationMetric
impl Clone for RdsdbUtilizationMetric
source§fn clone(&self) -> RdsdbUtilizationMetric
fn clone(&self) -> RdsdbUtilizationMetric
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RdsdbUtilizationMetric
impl Debug for RdsdbUtilizationMetric
source§impl PartialEq for RdsdbUtilizationMetric
impl PartialEq for RdsdbUtilizationMetric
impl StructuralPartialEq for RdsdbUtilizationMetric
Auto Trait Implementations§
impl Freeze for RdsdbUtilizationMetric
impl RefUnwindSafe for RdsdbUtilizationMetric
impl Send for RdsdbUtilizationMetric
impl Sync for RdsdbUtilizationMetric
impl Unpin for RdsdbUtilizationMetric
impl UnwindSafe for RdsdbUtilizationMetric
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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