Struct aws_sdk_elasticache::client::fluent_builders::DescribeSnapshots [−][src]
pub struct DescribeSnapshots<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to DescribeSnapshots
.
Returns information about cluster or replication group snapshots.
By default, DescribeSnapshots
lists all of your snapshots; it can optionally
describe a single snapshot, or just the snapshots associated with a particular cache
cluster.
This operation is valid for Redis only.
Implementations
impl<C, M, R> DescribeSnapshots<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> DescribeSnapshots<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<DescribeSnapshotsOutput, SdkError<DescribeSnapshotsError>> where
R::Policy: SmithyRetryPolicy<DescribeSnapshotsInputOperationOutputAlias, DescribeSnapshotsOutput, DescribeSnapshotsError, DescribeSnapshotsInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<DescribeSnapshotsOutput, SdkError<DescribeSnapshotsError>> where
R::Policy: SmithyRetryPolicy<DescribeSnapshotsInputOperationOutputAlias, DescribeSnapshotsOutput, DescribeSnapshotsError, DescribeSnapshotsInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
A user-supplied replication group identifier. If this parameter is specified, only snapshots associated with that specific replication group are described.
A user-supplied replication group identifier. If this parameter is specified, only snapshots associated with that specific replication group are described.
A user-supplied cluster identifier. If this parameter is specified, only snapshots associated with that specific cluster are described.
A user-supplied cluster identifier. If this parameter is specified, only snapshots associated with that specific cluster are described.
A user-supplied name of the snapshot. If this parameter is specified, only this snapshot are described.
A user-supplied name of the snapshot. If this parameter is specified, only this snapshot are described.
If set to system
, the output shows snapshots that were automatically created by ElastiCache.
If set to user
the output shows snapshots that were manually created.
If omitted, the output shows both automatically and manually created snapshots.
If set to system
, the output shows snapshots that were automatically created by ElastiCache.
If set to user
the output shows snapshots that were manually created.
If omitted, the output shows both automatically and manually created snapshots.
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
.
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
.
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: 50
Constraints: minimum 20; maximum 50.
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: 50
Constraints: minimum 20; maximum 50.
A Boolean value which if true, the node group (shard) configuration is included in the snapshot description.
A Boolean value which if true, the node group (shard) configuration is included in the snapshot description.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for DescribeSnapshots<C, M, R>
impl<C, M, R> Send for DescribeSnapshots<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for DescribeSnapshots<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for DescribeSnapshots<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for DescribeSnapshots<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more