#[non_exhaustive]pub struct DescribeGlobalClustersInput {
pub global_cluster_identifier: Option<String>,
pub filters: Option<Vec<Filter>>,
pub max_records: Option<i32>,
pub marker: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.global_cluster_identifier: Option<String>The user-supplied cluster identifier. If this parameter is specified, information from only the specific cluster is returned. This parameter isn't case-sensitive.
filters: Option<Vec<Filter>>A filter that specifies one or more global DB clusters to describe.
Supported filters: db-cluster-id accepts cluster identifiers and cluster Amazon Resource Names (ARNs). The results list will only include information about the clusters identified by these ARNs.
max_records: Option<i32>The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.
marker: Option<String>An optional pagination token provided by a previous DescribeGlobalClusters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
Implementations§
source§impl DescribeGlobalClustersInput
impl DescribeGlobalClustersInput
sourcepub fn global_cluster_identifier(&self) -> Option<&str>
pub fn global_cluster_identifier(&self) -> Option<&str>
The user-supplied cluster identifier. If this parameter is specified, information from only the specific cluster is returned. This parameter isn't case-sensitive.
sourcepub fn filters(&self) -> &[Filter]
pub fn filters(&self) -> &[Filter]
A filter that specifies one or more global DB clusters to describe.
Supported filters: db-cluster-id accepts cluster identifiers and cluster Amazon Resource Names (ARNs). The results list will only include information about the clusters identified by these ARNs.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.
source§impl DescribeGlobalClustersInput
impl DescribeGlobalClustersInput
sourcepub fn builder() -> DescribeGlobalClustersInputBuilder
pub fn builder() -> DescribeGlobalClustersInputBuilder
Creates a new builder-style object to manufacture DescribeGlobalClustersInput.
Trait Implementations§
source§impl Clone for DescribeGlobalClustersInput
impl Clone for DescribeGlobalClustersInput
source§fn clone(&self) -> DescribeGlobalClustersInput
fn clone(&self) -> DescribeGlobalClustersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeGlobalClustersInput
impl Debug for DescribeGlobalClustersInput
source§impl PartialEq for DescribeGlobalClustersInput
impl PartialEq for DescribeGlobalClustersInput
source§fn eq(&self, other: &DescribeGlobalClustersInput) -> bool
fn eq(&self, other: &DescribeGlobalClustersInput) -> bool
self and other values to be equal, and is used
by ==.