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 ==
.impl StructuralPartialEq for DescribeServerlessCacheSnapshotsInput
Auto Trait Implementations§
impl Freeze for DescribeServerlessCacheSnapshotsInput
impl RefUnwindSafe for DescribeServerlessCacheSnapshotsInput
impl Send for DescribeServerlessCacheSnapshotsInput
impl Sync for DescribeServerlessCacheSnapshotsInput
impl Unpin for DescribeServerlessCacheSnapshotsInput
impl UnwindSafe for DescribeServerlessCacheSnapshotsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more