#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for ReplicationGroupPendingModifiedValues
Implementations
sourceimpl Builder
impl Builder
sourcepub fn primary_cluster_id(self, input: impl Into<String>) -> Self
pub fn primary_cluster_id(self, input: impl Into<String>) -> Self
The primary cluster ID that is applied immediately (if --apply-immediately
was specified), or during the next maintenance window.
sourcepub fn set_primary_cluster_id(self, input: Option<String>) -> Self
pub fn set_primary_cluster_id(self, input: Option<String>) -> Self
The primary cluster ID that is applied immediately (if --apply-immediately
was specified), or during the next maintenance window.
sourcepub fn automatic_failover_status(
self,
input: PendingAutomaticFailoverStatus
) -> Self
pub fn automatic_failover_status(
self,
input: PendingAutomaticFailoverStatus
) -> Self
Indicates the status of automatic failover for this Redis replication group.
sourcepub fn set_automatic_failover_status(
self,
input: Option<PendingAutomaticFailoverStatus>
) -> Self
pub fn set_automatic_failover_status(
self,
input: Option<PendingAutomaticFailoverStatus>
) -> Self
Indicates the status of automatic failover for this Redis replication group.
sourcepub fn resharding(self, input: ReshardingStatus) -> Self
pub fn resharding(self, input: ReshardingStatus) -> Self
The status of an online resharding operation.
sourcepub fn set_resharding(self, input: Option<ReshardingStatus>) -> Self
pub fn set_resharding(self, input: Option<ReshardingStatus>) -> Self
The status of an online resharding operation.
sourcepub fn auth_token_status(self, input: AuthTokenUpdateStatus) -> Self
pub fn auth_token_status(self, input: AuthTokenUpdateStatus) -> Self
The auth token status
sourcepub fn set_auth_token_status(self, input: Option<AuthTokenUpdateStatus>) -> Self
pub fn set_auth_token_status(self, input: Option<AuthTokenUpdateStatus>) -> Self
The auth token status
sourcepub fn user_groups(self, input: UserGroupsUpdateStatus) -> Self
pub fn user_groups(self, input: UserGroupsUpdateStatus) -> Self
The user group being modified.
sourcepub fn set_user_groups(self, input: Option<UserGroupsUpdateStatus>) -> Self
pub fn set_user_groups(self, input: Option<UserGroupsUpdateStatus>) -> Self
The user group being modified.
sourcepub fn log_delivery_configurations(
self,
input: PendingLogDeliveryConfiguration
) -> Self
pub fn log_delivery_configurations(
self,
input: PendingLogDeliveryConfiguration
) -> Self
Appends an item to log_delivery_configurations
.
To override the contents of this collection use set_log_delivery_configurations
.
The log delivery configurations being modified
sourcepub fn set_log_delivery_configurations(
self,
input: Option<Vec<PendingLogDeliveryConfiguration>>
) -> Self
pub fn set_log_delivery_configurations(
self,
input: Option<Vec<PendingLogDeliveryConfiguration>>
) -> Self
The log delivery configurations being modified
sourcepub fn build(self) -> ReplicationGroupPendingModifiedValues
pub fn build(self) -> ReplicationGroupPendingModifiedValues
Consumes the builder and constructs a ReplicationGroupPendingModifiedValues
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more