Struct aws_sdk_memorydb::input::DescribeSnapshotsInput
source · #[non_exhaustive]pub struct DescribeSnapshotsInput { /* private fields */ }
Implementations§
source§impl DescribeSnapshotsInput
impl DescribeSnapshotsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeSnapshots, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeSnapshots, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeSnapshots
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeSnapshotsInput
.
source§impl DescribeSnapshotsInput
impl DescribeSnapshotsInput
sourcepub fn cluster_name(&self) -> Option<&str>
pub fn cluster_name(&self) -> Option<&str>
A user-supplied cluster identifier. If this parameter is specified, only snapshots associated with that specific cluster are described.
sourcepub fn snapshot_name(&self) -> Option<&str>
pub fn snapshot_name(&self) -> Option<&str>
A user-supplied name of the snapshot. If this parameter is specified, only this named snapshot is described.
sourcepub fn source(&self) -> Option<&str>
pub fn source(&self) -> Option<&str>
If set to system, the output shows snapshots that were automatically created by MemoryDB. If set to user the output shows snapshots that were manually created. If omitted, the output shows both automatically and manually created snapshots.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
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 MaxResults value, a token is included in the response so that the remaining results can be retrieved.
sourcepub fn show_detail(&self) -> Option<bool>
pub fn show_detail(&self) -> Option<bool>
A Boolean value which if true, the shard configuration is included in the snapshot description.
Trait Implementations§
source§impl Clone for DescribeSnapshotsInput
impl Clone for DescribeSnapshotsInput
source§fn clone(&self) -> DescribeSnapshotsInput
fn clone(&self) -> DescribeSnapshotsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeSnapshotsInput
impl Debug for DescribeSnapshotsInput
source§impl PartialEq<DescribeSnapshotsInput> for DescribeSnapshotsInput
impl PartialEq<DescribeSnapshotsInput> for DescribeSnapshotsInput
source§fn eq(&self, other: &DescribeSnapshotsInput) -> bool
fn eq(&self, other: &DescribeSnapshotsInput) -> bool
self
and other
values to be equal, and is used
by ==
.