#[non_exhaustive]pub struct EbsUtilizationMetric {
pub name: Option<EbsMetricName>,
pub statistic: Option<MetricStatistic>,
pub value: f64,
}
Expand description
Describes a utilization metric of an Amazon Elastic Block Store (Amazon EBS) volume.
Compare the utilization metric data of your resource against its projected utilization metric data to determine the performance difference between your current resource and the recommended option.
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<EbsMetricName>
The name of the utilization metric.
The following utilization metrics are available:
-
VolumeReadOpsPerSecond
- The completed read operations per second from the volume in a specified period of time.Unit: Count
-
VolumeWriteOpsPerSecond
- The completed write operations per second to the volume in a specified period of time.Unit: Count
-
VolumeReadBytesPerSecond
- The bytes read per second from the volume in a specified period of time.Unit: Bytes
-
VolumeWriteBytesPerSecond
- The bytes written to the volume in a specified period of time.Unit: Bytes
statistic: Option<MetricStatistic>
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
sourceimpl EbsUtilizationMetric
impl EbsUtilizationMetric
sourcepub fn name(&self) -> Option<&EbsMetricName>
pub fn name(&self) -> Option<&EbsMetricName>
The name of the utilization metric.
The following utilization metrics are available:
-
VolumeReadOpsPerSecond
- The completed read operations per second from the volume in a specified period of time.Unit: Count
-
VolumeWriteOpsPerSecond
- The completed write operations per second to the volume in a specified period of time.Unit: Count
-
VolumeReadBytesPerSecond
- The bytes read per second from the volume in a specified period of time.Unit: Bytes
-
VolumeWriteBytesPerSecond
- The bytes written to the volume in a specified period of time.Unit: Bytes
sourcepub fn statistic(&self) -> Option<&MetricStatistic>
pub fn statistic(&self) -> Option<&MetricStatistic>
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.
sourceimpl EbsUtilizationMetric
impl EbsUtilizationMetric
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EbsUtilizationMetric
Trait Implementations
sourceimpl Clone for EbsUtilizationMetric
impl Clone for EbsUtilizationMetric
sourcefn clone(&self) -> EbsUtilizationMetric
fn clone(&self) -> EbsUtilizationMetric
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EbsUtilizationMetric
impl Debug for EbsUtilizationMetric
sourceimpl PartialEq<EbsUtilizationMetric> for EbsUtilizationMetric
impl PartialEq<EbsUtilizationMetric> for EbsUtilizationMetric
sourcefn eq(&self, other: &EbsUtilizationMetric) -> bool
fn eq(&self, other: &EbsUtilizationMetric) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EbsUtilizationMetric) -> bool
fn ne(&self, other: &EbsUtilizationMetric) -> bool
This method tests for !=
.
impl StructuralPartialEq for EbsUtilizationMetric
Auto Trait Implementations
impl RefUnwindSafe for EbsUtilizationMetric
impl Send for EbsUtilizationMetric
impl Sync for EbsUtilizationMetric
impl Unpin for EbsUtilizationMetric
impl UnwindSafe for EbsUtilizationMetric
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more