Struct aws_sdk_datasync::types::P95Metrics
source · #[non_exhaustive]pub struct P95Metrics {
pub iops: Option<Iops>,
pub throughput: Option<Throughput>,
pub latency: Option<Latency>,
}
Expand description
The types of performance data that DataSync Discovery collects about an on-premises storage system resource.
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.iops: Option<Iops>
The IOPS peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.
throughput: Option<Throughput>
The throughput peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.
latency: Option<Latency>
The latency peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.
Implementations§
source§impl P95Metrics
impl P95Metrics
sourcepub fn iops(&self) -> Option<&Iops>
pub fn iops(&self) -> Option<&Iops>
The IOPS peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.
sourcepub fn throughput(&self) -> Option<&Throughput>
pub fn throughput(&self) -> Option<&Throughput>
The throughput peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.
source§impl P95Metrics
impl P95Metrics
sourcepub fn builder() -> P95MetricsBuilder
pub fn builder() -> P95MetricsBuilder
Creates a new builder-style object to manufacture P95Metrics
.
Trait Implementations§
source§impl Clone for P95Metrics
impl Clone for P95Metrics
source§fn clone(&self) -> P95Metrics
fn clone(&self) -> P95Metrics
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for P95Metrics
impl Debug for P95Metrics
source§impl PartialEq<P95Metrics> for P95Metrics
impl PartialEq<P95Metrics> for P95Metrics
source§fn eq(&self, other: &P95Metrics) -> bool
fn eq(&self, other: &P95Metrics) -> bool
self
and other
values to be equal, and is used
by ==
.