Struct aws_sdk_elasticache::operation::disassociate_global_replication_group::builders::DisassociateGlobalReplicationGroupInputBuilder
source · #[non_exhaustive]pub struct DisassociateGlobalReplicationGroupInputBuilder { /* private fields */ }Expand description
A builder for DisassociateGlobalReplicationGroupInput.
Implementations§
source§impl DisassociateGlobalReplicationGroupInputBuilder
impl DisassociateGlobalReplicationGroupInputBuilder
sourcepub fn global_replication_group_id(self, input: impl Into<String>) -> Self
pub fn global_replication_group_id(self, input: impl Into<String>) -> Self
The name of the Global datastore
This field is required.sourcepub fn set_global_replication_group_id(self, input: Option<String>) -> Self
pub fn set_global_replication_group_id(self, input: Option<String>) -> Self
The name of the Global datastore
sourcepub fn get_global_replication_group_id(&self) -> &Option<String>
pub fn get_global_replication_group_id(&self) -> &Option<String>
The name of the Global datastore
sourcepub fn replication_group_id(self, input: impl Into<String>) -> Self
pub fn replication_group_id(self, input: impl Into<String>) -> Self
The name of the secondary cluster you wish to remove from the Global datastore
This field is required.sourcepub fn set_replication_group_id(self, input: Option<String>) -> Self
pub fn set_replication_group_id(self, input: Option<String>) -> Self
The name of the secondary cluster you wish to remove from the Global datastore
sourcepub fn get_replication_group_id(&self) -> &Option<String>
pub fn get_replication_group_id(&self) -> &Option<String>
The name of the secondary cluster you wish to remove from the Global datastore
sourcepub fn replication_group_region(self, input: impl Into<String>) -> Self
pub fn replication_group_region(self, input: impl Into<String>) -> Self
The Amazon region of secondary cluster you wish to remove from the Global datastore
This field is required.sourcepub fn set_replication_group_region(self, input: Option<String>) -> Self
pub fn set_replication_group_region(self, input: Option<String>) -> Self
The Amazon region of secondary cluster you wish to remove from the Global datastore
sourcepub fn get_replication_group_region(&self) -> &Option<String>
pub fn get_replication_group_region(&self) -> &Option<String>
The Amazon region of secondary cluster you wish to remove from the Global datastore
sourcepub fn build(
self
) -> Result<DisassociateGlobalReplicationGroupInput, BuildError>
pub fn build( self ) -> Result<DisassociateGlobalReplicationGroupInput, BuildError>
Consumes the builder and constructs a DisassociateGlobalReplicationGroupInput.
source§impl DisassociateGlobalReplicationGroupInputBuilder
impl DisassociateGlobalReplicationGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DisassociateGlobalReplicationGroupOutput, SdkError<DisassociateGlobalReplicationGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DisassociateGlobalReplicationGroupOutput, SdkError<DisassociateGlobalReplicationGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DisassociateGlobalReplicationGroupInputBuilder
impl Clone for DisassociateGlobalReplicationGroupInputBuilder
source§fn clone(&self) -> DisassociateGlobalReplicationGroupInputBuilder
fn clone(&self) -> DisassociateGlobalReplicationGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DisassociateGlobalReplicationGroupInputBuilder
impl Default for DisassociateGlobalReplicationGroupInputBuilder
source§fn default() -> DisassociateGlobalReplicationGroupInputBuilder
fn default() -> DisassociateGlobalReplicationGroupInputBuilder
source§impl PartialEq for DisassociateGlobalReplicationGroupInputBuilder
impl PartialEq for DisassociateGlobalReplicationGroupInputBuilder
source§fn eq(&self, other: &DisassociateGlobalReplicationGroupInputBuilder) -> bool
fn eq(&self, other: &DisassociateGlobalReplicationGroupInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DisassociateGlobalReplicationGroupInputBuilder
Auto Trait Implementations§
impl Freeze for DisassociateGlobalReplicationGroupInputBuilder
impl RefUnwindSafe for DisassociateGlobalReplicationGroupInputBuilder
impl Send for DisassociateGlobalReplicationGroupInputBuilder
impl Sync for DisassociateGlobalReplicationGroupInputBuilder
impl Unpin for DisassociateGlobalReplicationGroupInputBuilder
impl UnwindSafe for DisassociateGlobalReplicationGroupInputBuilder
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> 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