Struct aws_sdk_datasync::types::Throughput
source · #[non_exhaustive]pub struct Throughput {
pub read: Option<f64>,
pub write: Option<f64>,
pub other: Option<f64>,
pub total: Option<f64>,
}
Expand description
The throughput peaks for an on-premises storage system volume. Each data point represents the 95th percentile peak value during a 1-hour interval.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.read: Option<f64>
Peak throughput related to read operations.
write: Option<f64>
Peak throughput related to write operations.
other: Option<f64>
Peak throughput unrelated to read and write operations.
total: Option<f64>
Peak total throughput on your on-premises storage system resource.
Implementations§
source§impl Throughput
impl Throughput
source§impl Throughput
impl Throughput
sourcepub fn builder() -> ThroughputBuilder
pub fn builder() -> ThroughputBuilder
Creates a new builder-style object to manufacture Throughput
.
Trait Implementations§
source§impl Clone for Throughput
impl Clone for Throughput
source§fn clone(&self) -> Throughput
fn clone(&self) -> Throughput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Throughput
impl Debug for Throughput
source§impl PartialEq for Throughput
impl PartialEq for Throughput
source§fn eq(&self, other: &Throughput) -> bool
fn eq(&self, other: &Throughput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Throughput
Auto Trait Implementations§
impl RefUnwindSafe for Throughput
impl Send for Throughput
impl Sync for Throughput
impl Unpin for Throughput
impl UnwindSafe for Throughput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.