pub struct DescribeClustersFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DescribeClusters.
Returns information about all provisioned DAX clusters if no cluster identifier is specified, or about a specific DAX cluster if a cluster identifier is supplied.
If the cluster is in the CREATING state, only cluster level information will be displayed until all of the nodes are successfully provisioned.
If the cluster is in the DELETING state, only cluster level information will be displayed.
If nodes are currently being added to the DAX cluster, node endpoint information and creation time for the additional nodes will not be displayed until they are completely provisioned. When the DAX cluster state is available, the cluster is ready for use.
If nodes are currently being removed from the DAX cluster, no endpoint information for the removed nodes is displayed.
Implementations§
source§impl DescribeClustersFluentBuilder
impl DescribeClustersFluentBuilder
sourcepub fn as_input(&self) -> &DescribeClustersInputBuilder
pub fn as_input(&self) -> &DescribeClustersInputBuilder
Access the DescribeClusters as a reference.
sourcepub async fn send(
self,
) -> Result<DescribeClustersOutput, SdkError<DescribeClustersError, HttpResponse>>
pub async fn send( self, ) -> Result<DescribeClustersOutput, SdkError<DescribeClustersError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<DescribeClustersOutput, DescribeClustersError, Self>
pub fn customize( self, ) -> CustomizableOperation<DescribeClustersOutput, DescribeClustersError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn cluster_names(self, input: impl Into<String>) -> Self
pub fn cluster_names(self, input: impl Into<String>) -> Self
Appends an item to ClusterNames.
To override the contents of this collection use set_cluster_names.
The names of the DAX clusters being described.
sourcepub fn set_cluster_names(self, input: Option<Vec<String>>) -> Self
pub fn set_cluster_names(self, input: Option<Vec<String>>) -> Self
The names of the DAX clusters being described.
sourcepub fn get_cluster_names(&self) -> &Option<Vec<String>>
pub fn get_cluster_names(&self) -> &Option<Vec<String>>
The names of the DAX clusters being described.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults must be between 20 and 100.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults must be between 20 and 100.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults must be between 20 and 100.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
Trait Implementations§
source§impl Clone for DescribeClustersFluentBuilder
impl Clone for DescribeClustersFluentBuilder
source§fn clone(&self) -> DescribeClustersFluentBuilder
fn clone(&self) -> DescribeClustersFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for DescribeClustersFluentBuilder
impl !RefUnwindSafe for DescribeClustersFluentBuilder
impl Send for DescribeClustersFluentBuilder
impl Sync for DescribeClustersFluentBuilder
impl Unpin for DescribeClustersFluentBuilder
impl !UnwindSafe for DescribeClustersFluentBuilder
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