#[non_exhaustive]pub struct GlobalSecondaryIndexWarmThroughputDescription {
pub read_units_per_second: Option<i64>,
pub write_units_per_second: Option<i64>,
pub status: Option<IndexStatus>,
}
Expand description
The description of the warm throughput value on a global secondary index.
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.read_units_per_second: Option<i64>
Represents warm throughput read units per second value for a global secondary index.
write_units_per_second: Option<i64>
Represents warm throughput write units per second value for a global secondary index.
status: Option<IndexStatus>
Represents the warm throughput status being created or updated on a global secondary index. The status can only be UPDATING
or ACTIVE
.
Implementations§
Source§impl GlobalSecondaryIndexWarmThroughputDescription
impl GlobalSecondaryIndexWarmThroughputDescription
Sourcepub fn read_units_per_second(&self) -> Option<i64>
pub fn read_units_per_second(&self) -> Option<i64>
Represents warm throughput read units per second value for a global secondary index.
Sourcepub fn write_units_per_second(&self) -> Option<i64>
pub fn write_units_per_second(&self) -> Option<i64>
Represents warm throughput write units per second value for a global secondary index.
Sourcepub fn status(&self) -> Option<&IndexStatus>
pub fn status(&self) -> Option<&IndexStatus>
Represents the warm throughput status being created or updated on a global secondary index. The status can only be UPDATING
or ACTIVE
.
Source§impl GlobalSecondaryIndexWarmThroughputDescription
impl GlobalSecondaryIndexWarmThroughputDescription
Sourcepub fn builder() -> GlobalSecondaryIndexWarmThroughputDescriptionBuilder
pub fn builder() -> GlobalSecondaryIndexWarmThroughputDescriptionBuilder
Creates a new builder-style object to manufacture GlobalSecondaryIndexWarmThroughputDescription
.
Trait Implementations§
Source§impl Clone for GlobalSecondaryIndexWarmThroughputDescription
impl Clone for GlobalSecondaryIndexWarmThroughputDescription
Source§fn clone(&self) -> GlobalSecondaryIndexWarmThroughputDescription
fn clone(&self) -> GlobalSecondaryIndexWarmThroughputDescription
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for GlobalSecondaryIndexWarmThroughputDescription
impl PartialEq for GlobalSecondaryIndexWarmThroughputDescription
Source§fn eq(&self, other: &GlobalSecondaryIndexWarmThroughputDescription) -> bool
fn eq(&self, other: &GlobalSecondaryIndexWarmThroughputDescription) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GlobalSecondaryIndexWarmThroughputDescription
Auto Trait Implementations§
impl Freeze for GlobalSecondaryIndexWarmThroughputDescription
impl RefUnwindSafe for GlobalSecondaryIndexWarmThroughputDescription
impl Send for GlobalSecondaryIndexWarmThroughputDescription
impl Sync for GlobalSecondaryIndexWarmThroughputDescription
impl Unpin for GlobalSecondaryIndexWarmThroughputDescription
impl UnwindSafe for GlobalSecondaryIndexWarmThroughputDescription
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§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