#[non_exhaustive]pub struct ListClustersV2InputBuilder { /* private fields */ }Expand description
A builder for ListClustersV2Input.
Implementations§
source§impl ListClustersV2InputBuilder
impl ListClustersV2InputBuilder
sourcepub fn cluster_name_filter(self, input: impl Into<String>) -> Self
pub fn cluster_name_filter(self, input: impl Into<String>) -> Self
Specify a prefix of the names of the clusters that you want to list. The service lists all the clusters whose names start with this prefix.
sourcepub fn set_cluster_name_filter(self, input: Option<String>) -> Self
pub fn set_cluster_name_filter(self, input: Option<String>) -> Self
Specify a prefix of the names of the clusters that you want to list. The service lists all the clusters whose names start with this prefix.
sourcepub fn get_cluster_name_filter(&self) -> &Option<String>
pub fn get_cluster_name_filter(&self) -> &Option<String>
Specify a prefix of the names of the clusters that you want to list. The service lists all the clusters whose names start with this prefix.
sourcepub fn cluster_type_filter(self, input: impl Into<String>) -> Self
pub fn cluster_type_filter(self, input: impl Into<String>) -> Self
Specify either PROVISIONED or SERVERLESS.
sourcepub fn set_cluster_type_filter(self, input: Option<String>) -> Self
pub fn set_cluster_type_filter(self, input: Option<String>) -> Self
Specify either PROVISIONED or SERVERLESS.
sourcepub fn get_cluster_type_filter(&self) -> &Option<String>
pub fn get_cluster_type_filter(&self) -> &Option<String>
Specify either PROVISIONED or SERVERLESS.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
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 return in the response. If there are more results, the response includes a NextToken parameter.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.
sourcepub fn build(self) -> Result<ListClustersV2Input, BuildError>
pub fn build(self) -> Result<ListClustersV2Input, BuildError>
Consumes the builder and constructs a ListClustersV2Input.
source§impl ListClustersV2InputBuilder
impl ListClustersV2InputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListClustersV2Output, SdkError<ListClustersV2Error, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListClustersV2Output, SdkError<ListClustersV2Error, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListClustersV2InputBuilder
impl Clone for ListClustersV2InputBuilder
source§fn clone(&self) -> ListClustersV2InputBuilder
fn clone(&self) -> ListClustersV2InputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListClustersV2InputBuilder
impl Debug for ListClustersV2InputBuilder
source§impl Default for ListClustersV2InputBuilder
impl Default for ListClustersV2InputBuilder
source§fn default() -> ListClustersV2InputBuilder
fn default() -> ListClustersV2InputBuilder
source§impl PartialEq for ListClustersV2InputBuilder
impl PartialEq for ListClustersV2InputBuilder
source§fn eq(&self, other: &ListClustersV2InputBuilder) -> bool
fn eq(&self, other: &ListClustersV2InputBuilder) -> bool
self and other values to be equal, and is used
by ==.