Struct aws_sdk_elasticache::operation::describe_serverless_caches::DescribeServerlessCachesInput
source · #[non_exhaustive]pub struct DescribeServerlessCachesInput {
pub serverless_cache_name: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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 for the serverless cache. If this parameter is specified, only information about that specific serverless cache is returned. Default: NULL
max_results: Option<i32>
The maximum number of records in the response. If more records exist than the specified max-records value, the next token is included in the response so that remaining results can be retrieved. The default is 50.
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 MaxResults.
Implementations§
source§impl DescribeServerlessCachesInput
impl DescribeServerlessCachesInput
sourcepub fn serverless_cache_name(&self) -> Option<&str>
pub fn serverless_cache_name(&self) -> Option<&str>
The identifier for the serverless cache. If this parameter is specified, only information about that specific serverless cache is returned. Default: NULL
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of records in the response. If more records exist than the specified max-records value, the next token is included in the response so that remaining results can be retrieved. The default is 50.
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 MaxResults.
source§impl DescribeServerlessCachesInput
impl DescribeServerlessCachesInput
sourcepub fn builder() -> DescribeServerlessCachesInputBuilder
pub fn builder() -> DescribeServerlessCachesInputBuilder
Creates a new builder-style object to manufacture DescribeServerlessCachesInput
.
Trait Implementations§
source§impl Clone for DescribeServerlessCachesInput
impl Clone for DescribeServerlessCachesInput
source§fn clone(&self) -> DescribeServerlessCachesInput
fn clone(&self) -> DescribeServerlessCachesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeServerlessCachesInput
impl PartialEq for DescribeServerlessCachesInput
source§fn eq(&self, other: &DescribeServerlessCachesInput) -> bool
fn eq(&self, other: &DescribeServerlessCachesInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeServerlessCachesInput
Auto Trait Implementations§
impl Freeze for DescribeServerlessCachesInput
impl RefUnwindSafe for DescribeServerlessCachesInput
impl Send for DescribeServerlessCachesInput
impl Sync for DescribeServerlessCachesInput
impl Unpin for DescribeServerlessCachesInput
impl UnwindSafe for DescribeServerlessCachesInput
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