pub struct DescribeCacheClustersMessage {
pub cache_cluster_id: Option<String>,
pub marker: Option<String>,
pub max_records: Option<i64>,
pub show_cache_clusters_not_in_replication_groups: Option<bool>,
pub show_cache_node_info: Option<bool>,
}
Expand description
Represents the input of a DescribeCacheClusters
operation.
Fields§
§cache_cluster_id: Option<String>
The user-supplied cluster identifier. If this parameter is specified, only information about that specific cluster is returned. This parameter isn't case sensitive.
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
.
max_records: Option<i64>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a marker is included in the response so that the remaining results can be retrieved.
Default: 100
Constraints: minimum 20; maximum 100.
show_cache_clusters_not_in_replication_groups: Option<bool>
An optional flag that can be included in the DescribeCacheCluster
request to show only nodes (API/CLI: clusters) that are not members of a replication group. In practice, this mean Memcached and single node Redis clusters.
show_cache_node_info: Option<bool>
An optional flag that can be included in the DescribeCacheCluster
request to retrieve information about the individual cache nodes.
Trait Implementations§
Source§impl Clone for DescribeCacheClustersMessage
impl Clone for DescribeCacheClustersMessage
Source§fn clone(&self) -> DescribeCacheClustersMessage
fn clone(&self) -> DescribeCacheClustersMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DescribeCacheClustersMessage
impl Debug for DescribeCacheClustersMessage
Source§impl Default for DescribeCacheClustersMessage
impl Default for DescribeCacheClustersMessage
Source§fn default() -> DescribeCacheClustersMessage
fn default() -> DescribeCacheClustersMessage
Source§impl PartialEq for DescribeCacheClustersMessage
impl PartialEq for DescribeCacheClustersMessage
Source§fn eq(&self, other: &DescribeCacheClustersMessage) -> bool
fn eq(&self, other: &DescribeCacheClustersMessage) -> bool
self
and other
values to be equal, and is used by ==
.