#[non_exhaustive]pub struct ReplicationGroupUpdateBuilder { /* private fields */ }
Expand description
A builder for ReplicationGroupUpdate
.
Implementations§
source§impl ReplicationGroupUpdateBuilder
impl ReplicationGroupUpdateBuilder
sourcepub fn create(self, input: CreateReplicationGroupMemberAction) -> Self
pub fn create(self, input: CreateReplicationGroupMemberAction) -> Self
The parameters required for creating a replica for the table.
sourcepub fn set_create(
self,
input: Option<CreateReplicationGroupMemberAction>,
) -> Self
pub fn set_create( self, input: Option<CreateReplicationGroupMemberAction>, ) -> Self
The parameters required for creating a replica for the table.
sourcepub fn get_create(&self) -> &Option<CreateReplicationGroupMemberAction>
pub fn get_create(&self) -> &Option<CreateReplicationGroupMemberAction>
The parameters required for creating a replica for the table.
sourcepub fn update(self, input: UpdateReplicationGroupMemberAction) -> Self
pub fn update(self, input: UpdateReplicationGroupMemberAction) -> Self
The parameters required for updating a replica for the table.
sourcepub fn set_update(
self,
input: Option<UpdateReplicationGroupMemberAction>,
) -> Self
pub fn set_update( self, input: Option<UpdateReplicationGroupMemberAction>, ) -> Self
The parameters required for updating a replica for the table.
sourcepub fn get_update(&self) -> &Option<UpdateReplicationGroupMemberAction>
pub fn get_update(&self) -> &Option<UpdateReplicationGroupMemberAction>
The parameters required for updating a replica for the table.
sourcepub fn delete(self, input: DeleteReplicationGroupMemberAction) -> Self
pub fn delete(self, input: DeleteReplicationGroupMemberAction) -> Self
The parameters required for deleting a replica for the table.
sourcepub fn set_delete(
self,
input: Option<DeleteReplicationGroupMemberAction>,
) -> Self
pub fn set_delete( self, input: Option<DeleteReplicationGroupMemberAction>, ) -> Self
The parameters required for deleting a replica for the table.
sourcepub fn get_delete(&self) -> &Option<DeleteReplicationGroupMemberAction>
pub fn get_delete(&self) -> &Option<DeleteReplicationGroupMemberAction>
The parameters required for deleting a replica for the table.
sourcepub fn build(self) -> ReplicationGroupUpdate
pub fn build(self) -> ReplicationGroupUpdate
Consumes the builder and constructs a ReplicationGroupUpdate
.
Trait Implementations§
source§impl Clone for ReplicationGroupUpdateBuilder
impl Clone for ReplicationGroupUpdateBuilder
source§fn clone(&self) -> ReplicationGroupUpdateBuilder
fn clone(&self) -> ReplicationGroupUpdateBuilder
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 Default for ReplicationGroupUpdateBuilder
impl Default for ReplicationGroupUpdateBuilder
source§fn default() -> ReplicationGroupUpdateBuilder
fn default() -> ReplicationGroupUpdateBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ReplicationGroupUpdateBuilder
impl PartialEq for ReplicationGroupUpdateBuilder
source§fn eq(&self, other: &ReplicationGroupUpdateBuilder) -> bool
fn eq(&self, other: &ReplicationGroupUpdateBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReplicationGroupUpdateBuilder
Auto Trait Implementations§
impl Freeze for ReplicationGroupUpdateBuilder
impl RefUnwindSafe for ReplicationGroupUpdateBuilder
impl Send for ReplicationGroupUpdateBuilder
impl Sync for ReplicationGroupUpdateBuilder
impl Unpin for ReplicationGroupUpdateBuilder
impl UnwindSafe for ReplicationGroupUpdateBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.