Struct aws_sdk_elasticache::operation::describe_serverless_cache_snapshots::builders::DescribeServerlessCacheSnapshotsOutputBuilder
source · #[non_exhaustive]pub struct DescribeServerlessCacheSnapshotsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeServerlessCacheSnapshotsOutput
.
Implementations§
source§impl DescribeServerlessCacheSnapshotsOutputBuilder
impl DescribeServerlessCacheSnapshotsOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &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.
sourcepub fn serverless_cache_snapshots(self, input: ServerlessCacheSnapshot) -> Self
pub fn serverless_cache_snapshots(self, input: ServerlessCacheSnapshot) -> Self
Appends an item to serverless_cache_snapshots
.
To override the contents of this collection use set_serverless_cache_snapshots
.
The serverless caches snapshots associated with a given description request. Available for Redis only.
sourcepub fn set_serverless_cache_snapshots(
self,
input: Option<Vec<ServerlessCacheSnapshot>>,
) -> Self
pub fn set_serverless_cache_snapshots( self, input: Option<Vec<ServerlessCacheSnapshot>>, ) -> Self
The serverless caches snapshots associated with a given description request. Available for Redis only.
sourcepub fn get_serverless_cache_snapshots(
&self,
) -> &Option<Vec<ServerlessCacheSnapshot>>
pub fn get_serverless_cache_snapshots( &self, ) -> &Option<Vec<ServerlessCacheSnapshot>>
The serverless caches snapshots associated with a given description request. Available for Redis only.
sourcepub fn build(self) -> DescribeServerlessCacheSnapshotsOutput
pub fn build(self) -> DescribeServerlessCacheSnapshotsOutput
Consumes the builder and constructs a DescribeServerlessCacheSnapshotsOutput
.
Trait Implementations§
source§impl Clone for DescribeServerlessCacheSnapshotsOutputBuilder
impl Clone for DescribeServerlessCacheSnapshotsOutputBuilder
source§fn clone(&self) -> DescribeServerlessCacheSnapshotsOutputBuilder
fn clone(&self) -> DescribeServerlessCacheSnapshotsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeServerlessCacheSnapshotsOutputBuilder
impl Default for DescribeServerlessCacheSnapshotsOutputBuilder
source§fn default() -> DescribeServerlessCacheSnapshotsOutputBuilder
fn default() -> DescribeServerlessCacheSnapshotsOutputBuilder
source§impl PartialEq for DescribeServerlessCacheSnapshotsOutputBuilder
impl PartialEq for DescribeServerlessCacheSnapshotsOutputBuilder
source§fn eq(&self, other: &DescribeServerlessCacheSnapshotsOutputBuilder) -> bool
fn eq(&self, other: &DescribeServerlessCacheSnapshotsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeServerlessCacheSnapshotsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeServerlessCacheSnapshotsOutputBuilder
impl RefUnwindSafe for DescribeServerlessCacheSnapshotsOutputBuilder
impl Send for DescribeServerlessCacheSnapshotsOutputBuilder
impl Sync for DescribeServerlessCacheSnapshotsOutputBuilder
impl Unpin for DescribeServerlessCacheSnapshotsOutputBuilder
impl UnwindSafe for DescribeServerlessCacheSnapshotsOutputBuilder
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