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 ==
.