Struct aws_sdk_elasticache::operation::describe_global_replication_groups::DescribeGlobalReplicationGroupsOutput
source · #[non_exhaustive]pub struct DescribeGlobalReplicationGroupsOutput {
pub marker: Option<String>,
pub global_replication_groups: Option<Vec<GlobalReplicationGroup>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.marker: 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. >
global_replication_groups: Option<Vec<GlobalReplicationGroup>>
Indicates the slot configuration and global identifier for each slice group.
Implementations§
source§impl DescribeGlobalReplicationGroupsOutput
impl DescribeGlobalReplicationGroupsOutput
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
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) -> Option<&[GlobalReplicationGroup]>
pub fn global_replication_groups(&self) -> Option<&[GlobalReplicationGroup]>
Indicates the slot configuration and global identifier for each slice group.
source§impl DescribeGlobalReplicationGroupsOutput
impl DescribeGlobalReplicationGroupsOutput
sourcepub fn builder() -> DescribeGlobalReplicationGroupsOutputBuilder
pub fn builder() -> DescribeGlobalReplicationGroupsOutputBuilder
Creates a new builder-style object to manufacture DescribeGlobalReplicationGroupsOutput
.
Trait Implementations§
source§impl Clone for DescribeGlobalReplicationGroupsOutput
impl Clone for DescribeGlobalReplicationGroupsOutput
source§fn clone(&self) -> DescribeGlobalReplicationGroupsOutput
fn clone(&self) -> DescribeGlobalReplicationGroupsOutput
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 PartialEq for DescribeGlobalReplicationGroupsOutput
impl PartialEq for DescribeGlobalReplicationGroupsOutput
source§fn eq(&self, other: &DescribeGlobalReplicationGroupsOutput) -> bool
fn eq(&self, other: &DescribeGlobalReplicationGroupsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeGlobalReplicationGroupsOutput
impl RequestId for DescribeGlobalReplicationGroupsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeGlobalReplicationGroupsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeGlobalReplicationGroupsOutput
impl Send for DescribeGlobalReplicationGroupsOutput
impl Sync for DescribeGlobalReplicationGroupsOutput
impl Unpin for DescribeGlobalReplicationGroupsOutput
impl UnwindSafe for DescribeGlobalReplicationGroupsOutput
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