#[non_exhaustive]pub struct ListClustersInputBuilder { /* private fields */ }Expand description
A builder for ListClustersInput.
Implementations§
source§impl ListClustersInputBuilder
impl ListClustersInputBuilder
sourcepub fn created_after(self, input: DateTime) -> Self
pub fn created_after(self, input: DateTime) -> Self
The creation date and time beginning value filter for listing clusters.
sourcepub fn set_created_after(self, input: Option<DateTime>) -> Self
pub fn set_created_after(self, input: Option<DateTime>) -> Self
The creation date and time beginning value filter for listing clusters.
sourcepub fn get_created_after(&self) -> &Option<DateTime>
pub fn get_created_after(&self) -> &Option<DateTime>
The creation date and time beginning value filter for listing clusters.
sourcepub fn created_before(self, input: DateTime) -> Self
pub fn created_before(self, input: DateTime) -> Self
The creation date and time end value filter for listing clusters.
sourcepub fn set_created_before(self, input: Option<DateTime>) -> Self
pub fn set_created_before(self, input: Option<DateTime>) -> Self
The creation date and time end value filter for listing clusters.
sourcepub fn get_created_before(&self) -> &Option<DateTime>
pub fn get_created_before(&self) -> &Option<DateTime>
The creation date and time end value filter for listing clusters.
sourcepub fn cluster_states(self, input: ClusterState) -> Self
pub fn cluster_states(self, input: ClusterState) -> Self
Appends an item to cluster_states.
To override the contents of this collection use set_cluster_states.
The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may be not be returned as expected in the list of clusters.
sourcepub fn set_cluster_states(self, input: Option<Vec<ClusterState>>) -> Self
pub fn set_cluster_states(self, input: Option<Vec<ClusterState>>) -> Self
The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may be not be returned as expected in the list of clusters.
sourcepub fn get_cluster_states(&self) -> &Option<Vec<ClusterState>>
pub fn get_cluster_states(&self) -> &Option<Vec<ClusterState>>
The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may be not be returned as expected in the list of clusters.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The pagination token that indicates the next set of results to retrieve.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The pagination token that indicates the next set of results to retrieve.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The pagination token that indicates the next set of results to retrieve.
sourcepub fn build(self) -> Result<ListClustersInput, BuildError>
pub fn build(self) -> Result<ListClustersInput, BuildError>
Consumes the builder and constructs a ListClustersInput.
source§impl ListClustersInputBuilder
impl ListClustersInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListClustersOutput, SdkError<ListClustersError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListClustersOutput, SdkError<ListClustersError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListClustersInputBuilder
impl Clone for ListClustersInputBuilder
source§fn clone(&self) -> ListClustersInputBuilder
fn clone(&self) -> ListClustersInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListClustersInputBuilder
impl Debug for ListClustersInputBuilder
source§impl Default for ListClustersInputBuilder
impl Default for ListClustersInputBuilder
source§fn default() -> ListClustersInputBuilder
fn default() -> ListClustersInputBuilder
source§impl PartialEq for ListClustersInputBuilder
impl PartialEq for ListClustersInputBuilder
source§fn eq(&self, other: &ListClustersInputBuilder) -> bool
fn eq(&self, other: &ListClustersInputBuilder) -> bool
self and other values to be equal, and is used
by ==.