Struct aws_sdk_redshift::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder
source · pub struct DescribeClusterDbRevisionsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeClusterDbRevisions
.
Returns an array of ClusterDbRevision
objects.
Implementations§
source§impl DescribeClusterDbRevisionsFluentBuilder
impl DescribeClusterDbRevisionsFluentBuilder
sourcepub fn as_input(&self) -> &DescribeClusterDbRevisionsInputBuilder
pub fn as_input(&self) -> &DescribeClusterDbRevisionsInputBuilder
Access the DescribeClusterDbRevisions as a reference.
sourcepub async fn send(
self
) -> Result<DescribeClusterDbRevisionsOutput, SdkError<DescribeClusterDbRevisionsError, HttpResponse>>
pub async fn send( self ) -> Result<DescribeClusterDbRevisionsOutput, SdkError<DescribeClusterDbRevisionsError, 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<DescribeClusterDbRevisionsOutput, DescribeClusterDbRevisionsError, Self>
pub fn customize( self ) -> CustomizableOperation<DescribeClusterDbRevisionsOutput, DescribeClusterDbRevisionsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> DescribeClusterDbRevisionsPaginator
pub fn into_paginator(self) -> DescribeClusterDbRevisionsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a PaginationStream
.
sourcepub fn cluster_identifier(self, input: impl Into<String>) -> Self
pub fn cluster_identifier(self, input: impl Into<String>) -> Self
A unique identifier for a cluster whose ClusterDbRevisions
you are requesting. This parameter is case sensitive. All clusters defined for an account are returned by default.
sourcepub fn set_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_cluster_identifier(self, input: Option<String>) -> Self
A unique identifier for a cluster whose ClusterDbRevisions
you are requesting. This parameter is case sensitive. All clusters defined for an account are returned by default.
sourcepub fn get_cluster_identifier(&self) -> &Option<String>
pub fn get_cluster_identifier(&self) -> &Option<String>
A unique identifier for a cluster whose ClusterDbRevisions
you are requesting. This parameter is case sensitive. All clusters defined for an account are returned by default.
sourcepub fn max_records(self, input: i32) -> Self
pub fn max_records(self, input: i32) -> Self
The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in the marker
field of the response. You can retrieve the next set of response records by providing the returned marker
value in the marker
parameter and retrying the request.
Default: 100
Constraints: minimum 20, maximum 100.
sourcepub fn set_max_records(self, input: Option<i32>) -> Self
pub fn set_max_records(self, input: Option<i32>) -> Self
The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in the marker
field of the response. You can retrieve the next set of response records by providing the returned marker
value in the marker
parameter and retrying the request.
Default: 100
Constraints: minimum 20, maximum 100.
sourcepub fn get_max_records(&self) -> &Option<i32>
pub fn get_max_records(&self) -> &Option<i32>
The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in the marker
field of the response. You can retrieve the next set of response records by providing the returned marker
value in the marker
parameter and retrying the request.
Default: 100
Constraints: minimum 20, maximum 100.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
An optional parameter that specifies the starting point for returning a set of response records. When the results of a DescribeClusterDbRevisions
request exceed the value specified in MaxRecords
, Amazon Redshift returns a value in the marker
field of the response. You can retrieve the next set of response records by providing the returned marker
value in the marker
parameter and retrying the request.
Constraints: You can specify either the ClusterIdentifier
parameter, or the marker
parameter, but not both.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
An optional parameter that specifies the starting point for returning a set of response records. When the results of a DescribeClusterDbRevisions
request exceed the value specified in MaxRecords
, Amazon Redshift returns a value in the marker
field of the response. You can retrieve the next set of response records by providing the returned marker
value in the marker
parameter and retrying the request.
Constraints: You can specify either the ClusterIdentifier
parameter, or the marker
parameter, but not both.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
An optional parameter that specifies the starting point for returning a set of response records. When the results of a DescribeClusterDbRevisions
request exceed the value specified in MaxRecords
, Amazon Redshift returns a value in the marker
field of the response. You can retrieve the next set of response records by providing the returned marker
value in the marker
parameter and retrying the request.
Constraints: You can specify either the ClusterIdentifier
parameter, or the marker
parameter, but not both.
Trait Implementations§
source§impl Clone for DescribeClusterDbRevisionsFluentBuilder
impl Clone for DescribeClusterDbRevisionsFluentBuilder
source§fn clone(&self) -> DescribeClusterDbRevisionsFluentBuilder
fn clone(&self) -> DescribeClusterDbRevisionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more