#[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§
source§impl 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.
source§impl EbsUtilizationMetric
impl EbsUtilizationMetric
sourcepub fn builder() -> EbsUtilizationMetricBuilder
pub fn builder() -> EbsUtilizationMetricBuilder
Creates a new builder-style object to manufacture EbsUtilizationMetric
.
Trait Implementations§
source§impl Clone for EbsUtilizationMetric
impl Clone for EbsUtilizationMetric
source§fn clone(&self) -> EbsUtilizationMetric
fn clone(&self) -> EbsUtilizationMetric
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EbsUtilizationMetric
impl Debug for EbsUtilizationMetric
source§impl PartialEq for EbsUtilizationMetric
impl PartialEq for EbsUtilizationMetric
source§fn eq(&self, other: &EbsUtilizationMetric) -> bool
fn eq(&self, other: &EbsUtilizationMetric) -> bool
self
and other
values to be equal, and is used
by ==
.