Struct aws_sdk_elasticache::operation::describe_serverless_cache_snapshots::DescribeServerlessCacheSnapshotsInput
source · #[non_exhaustive]pub struct DescribeServerlessCacheSnapshotsInput {
pub serverless_cache_name: Option<String>,
pub serverless_cache_snapshot_name: Option<String>,
pub snapshot_type: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.serverless_cache_name: Option<String>
The identifier of serverless cache. If this parameter is specified, only snapshots associated with that specific serverless cache are described. Available for Redis only.
serverless_cache_snapshot_name: Option<String>
The identifier of the serverless cache’s snapshot. If this parameter is specified, only this snapshot is described. Available for Redis only.
snapshot_type: Option<String>
The type of snapshot that is being described. Available for Redis only.
next_token: Option<String>
An optional marker returned from a prior request to support 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 max-results. Available for Redis only.
max_results: Option<i32>
The maximum number of records to include in the response. If more records exist than the specified max-results value, a market is included in the response so that remaining results can be retrieved. Available for Redis only.The default is 50. The Validation Constraints are a maximum of 50.
Implementations§
source§impl DescribeServerlessCacheSnapshotsInput
impl DescribeServerlessCacheSnapshotsInput
sourcepub fn serverless_cache_name(&self) -> Option<&str>
pub fn serverless_cache_name(&self) -> Option<&str>
The identifier of serverless cache. If this parameter is specified, only snapshots associated with that specific serverless cache are described. Available for Redis only.
sourcepub fn serverless_cache_snapshot_name(&self) -> Option<&str>
pub fn serverless_cache_snapshot_name(&self) -> Option<&str>
The identifier of the serverless cache’s snapshot. If this parameter is specified, only this snapshot is described. Available for Redis only.
sourcepub fn snapshot_type(&self) -> Option<&str>
pub fn snapshot_type(&self) -> Option<&str>
The type of snapshot that is being described. Available for Redis only.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An optional marker returned from a prior request to support 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 max-results. Available for Redis only.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of records to include in the response. If more records exist than the specified max-results value, a market is included in the response so that remaining results can be retrieved. Available for Redis only.The default is 50. The Validation Constraints are a maximum of 50.
source§impl DescribeServerlessCacheSnapshotsInput
impl DescribeServerlessCacheSnapshotsInput
sourcepub fn builder() -> DescribeServerlessCacheSnapshotsInputBuilder
pub fn builder() -> DescribeServerlessCacheSnapshotsInputBuilder
Creates a new builder-style object to manufacture DescribeServerlessCacheSnapshotsInput
.
Trait Implementations§
source§impl Clone for DescribeServerlessCacheSnapshotsInput
impl Clone for DescribeServerlessCacheSnapshotsInput
source§fn clone(&self) -> DescribeServerlessCacheSnapshotsInput
fn clone(&self) -> DescribeServerlessCacheSnapshotsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeServerlessCacheSnapshotsInput
impl PartialEq for DescribeServerlessCacheSnapshotsInput
source§fn eq(&self, other: &DescribeServerlessCacheSnapshotsInput) -> bool
fn eq(&self, other: &DescribeServerlessCacheSnapshotsInput) -> bool
self
and other
values to be equal, and is used
by ==
.