#[non_exhaustive]pub struct ReplicaSpecificationSummaryBuilder { /* private fields */ }
Expand description
A builder for ReplicaSpecificationSummary
.
Implementations§
source§impl ReplicaSpecificationSummaryBuilder
impl ReplicaSpecificationSummaryBuilder
sourcepub fn set_region(self, input: Option<String>) -> Self
pub fn set_region(self, input: Option<String>) -> Self
The Amazon Web Services Region.
sourcepub fn get_region(&self) -> &Option<String>
pub fn get_region(&self) -> &Option<String>
The Amazon Web Services Region.
sourcepub fn status(self, input: TableStatus) -> Self
pub fn status(self, input: TableStatus) -> Self
The status of the multi-Region table in the specified Amazon Web Services Region.
sourcepub fn set_status(self, input: Option<TableStatus>) -> Self
pub fn set_status(self, input: Option<TableStatus>) -> Self
The status of the multi-Region table in the specified Amazon Web Services Region.
sourcepub fn get_status(&self) -> &Option<TableStatus>
pub fn get_status(&self) -> &Option<TableStatus>
The status of the multi-Region table in the specified Amazon Web Services Region.
sourcepub fn capacity_specification(self, input: CapacitySpecificationSummary) -> Self
pub fn capacity_specification(self, input: CapacitySpecificationSummary) -> Self
The read/write throughput capacity mode for a table. The options are:
-
throughputMode:PAY_PER_REQUEST
and -
throughputMode:PROVISIONED
.
For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
sourcepub fn set_capacity_specification(
self,
input: Option<CapacitySpecificationSummary>,
) -> Self
pub fn set_capacity_specification( self, input: Option<CapacitySpecificationSummary>, ) -> Self
The read/write throughput capacity mode for a table. The options are:
-
throughputMode:PAY_PER_REQUEST
and -
throughputMode:PROVISIONED
.
For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
sourcepub fn get_capacity_specification(
&self,
) -> &Option<CapacitySpecificationSummary>
pub fn get_capacity_specification( &self, ) -> &Option<CapacitySpecificationSummary>
The read/write throughput capacity mode for a table. The options are:
-
throughputMode:PAY_PER_REQUEST
and -
throughputMode:PROVISIONED
.
For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
sourcepub fn build(self) -> ReplicaSpecificationSummary
pub fn build(self) -> ReplicaSpecificationSummary
Consumes the builder and constructs a ReplicaSpecificationSummary
.
Trait Implementations§
source§impl Clone for ReplicaSpecificationSummaryBuilder
impl Clone for ReplicaSpecificationSummaryBuilder
source§fn clone(&self) -> ReplicaSpecificationSummaryBuilder
fn clone(&self) -> ReplicaSpecificationSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ReplicaSpecificationSummaryBuilder
impl Default for ReplicaSpecificationSummaryBuilder
source§fn default() -> ReplicaSpecificationSummaryBuilder
fn default() -> ReplicaSpecificationSummaryBuilder
source§impl PartialEq for ReplicaSpecificationSummaryBuilder
impl PartialEq for ReplicaSpecificationSummaryBuilder
source§fn eq(&self, other: &ReplicaSpecificationSummaryBuilder) -> bool
fn eq(&self, other: &ReplicaSpecificationSummaryBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ReplicaSpecificationSummaryBuilder
Auto Trait Implementations§
impl Freeze for ReplicaSpecificationSummaryBuilder
impl RefUnwindSafe for ReplicaSpecificationSummaryBuilder
impl Send for ReplicaSpecificationSummaryBuilder
impl Sync for ReplicaSpecificationSummaryBuilder
impl Unpin for ReplicaSpecificationSummaryBuilder
impl UnwindSafe for ReplicaSpecificationSummaryBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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