Struct aws_sdk_elasticache::operation::describe_serverless_cache_snapshots::DescribeServerlessCacheSnapshotsOutput
source · #[non_exhaustive]pub struct DescribeServerlessCacheSnapshotsOutput {
pub next_token: Option<String>,
pub serverless_cache_snapshots: Option<Vec<ServerlessCacheSnapshot>>,
/* private fields */
}
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.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.
serverless_cache_snapshots: Option<Vec<ServerlessCacheSnapshot>>
The serverless caches snapshots associated with a given description request. Available for Redis only.
Implementations§
source§impl DescribeServerlessCacheSnapshotsOutput
impl DescribeServerlessCacheSnapshotsOutput
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 serverless_cache_snapshots(&self) -> &[ServerlessCacheSnapshot]
pub fn serverless_cache_snapshots(&self) -> &[ServerlessCacheSnapshot]
The serverless caches snapshots associated with a given description request. Available for Redis only.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .serverless_cache_snapshots.is_none()
.
source§impl DescribeServerlessCacheSnapshotsOutput
impl DescribeServerlessCacheSnapshotsOutput
sourcepub fn builder() -> DescribeServerlessCacheSnapshotsOutputBuilder
pub fn builder() -> DescribeServerlessCacheSnapshotsOutputBuilder
Creates a new builder-style object to manufacture DescribeServerlessCacheSnapshotsOutput
.
Trait Implementations§
source§impl Clone for DescribeServerlessCacheSnapshotsOutput
impl Clone for DescribeServerlessCacheSnapshotsOutput
source§fn clone(&self) -> DescribeServerlessCacheSnapshotsOutput
fn clone(&self) -> DescribeServerlessCacheSnapshotsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeServerlessCacheSnapshotsOutput
impl PartialEq for DescribeServerlessCacheSnapshotsOutput
source§fn eq(&self, other: &DescribeServerlessCacheSnapshotsOutput) -> bool
fn eq(&self, other: &DescribeServerlessCacheSnapshotsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeServerlessCacheSnapshotsOutput
impl RequestId for DescribeServerlessCacheSnapshotsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeServerlessCacheSnapshotsOutput
Auto Trait Implementations§
impl Freeze for DescribeServerlessCacheSnapshotsOutput
impl RefUnwindSafe for DescribeServerlessCacheSnapshotsOutput
impl Send for DescribeServerlessCacheSnapshotsOutput
impl Sync for DescribeServerlessCacheSnapshotsOutput
impl Unpin for DescribeServerlessCacheSnapshotsOutput
impl UnwindSafe for DescribeServerlessCacheSnapshotsOutput
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