Struct aws_sdk_elasticache::operation::describe_global_replication_groups::builders::DescribeGlobalReplicationGroupsOutputBuilder
source · #[non_exhaustive]pub struct DescribeGlobalReplicationGroupsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeGlobalReplicationGroupsOutput
.
Implementations§
source§impl DescribeGlobalReplicationGroupsOutputBuilder
impl DescribeGlobalReplicationGroupsOutputBuilder
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. >
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. >
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. >
sourcepub fn global_replication_groups(self, input: GlobalReplicationGroup) -> Self
pub fn global_replication_groups(self, input: GlobalReplicationGroup) -> Self
Appends an item to global_replication_groups
.
To override the contents of this collection use set_global_replication_groups
.
Indicates the slot configuration and global identifier for each slice group.
sourcepub fn set_global_replication_groups(
self,
input: Option<Vec<GlobalReplicationGroup>>
) -> Self
pub fn set_global_replication_groups( self, input: Option<Vec<GlobalReplicationGroup>> ) -> Self
Indicates the slot configuration and global identifier for each slice group.
sourcepub fn get_global_replication_groups(
&self
) -> &Option<Vec<GlobalReplicationGroup>>
pub fn get_global_replication_groups( &self ) -> &Option<Vec<GlobalReplicationGroup>>
Indicates the slot configuration and global identifier for each slice group.
sourcepub fn build(self) -> DescribeGlobalReplicationGroupsOutput
pub fn build(self) -> DescribeGlobalReplicationGroupsOutput
Consumes the builder and constructs a DescribeGlobalReplicationGroupsOutput
.
Trait Implementations§
source§impl Clone for DescribeGlobalReplicationGroupsOutputBuilder
impl Clone for DescribeGlobalReplicationGroupsOutputBuilder
source§fn clone(&self) -> DescribeGlobalReplicationGroupsOutputBuilder
fn clone(&self) -> DescribeGlobalReplicationGroupsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeGlobalReplicationGroupsOutputBuilder
impl Default for DescribeGlobalReplicationGroupsOutputBuilder
source§fn default() -> DescribeGlobalReplicationGroupsOutputBuilder
fn default() -> DescribeGlobalReplicationGroupsOutputBuilder
source§impl PartialEq for DescribeGlobalReplicationGroupsOutputBuilder
impl PartialEq for DescribeGlobalReplicationGroupsOutputBuilder
source§fn eq(&self, other: &DescribeGlobalReplicationGroupsOutputBuilder) -> bool
fn eq(&self, other: &DescribeGlobalReplicationGroupsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeGlobalReplicationGroupsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeGlobalReplicationGroupsOutputBuilder
impl RefUnwindSafe for DescribeGlobalReplicationGroupsOutputBuilder
impl Send for DescribeGlobalReplicationGroupsOutputBuilder
impl Sync for DescribeGlobalReplicationGroupsOutputBuilder
impl Unpin for DescribeGlobalReplicationGroupsOutputBuilder
impl UnwindSafe for DescribeGlobalReplicationGroupsOutputBuilder
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