1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>This input determines how the ListClusters action filters the list of clusters that it returns.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct ListClustersInput {
/// <p>The creation date and time beginning value filter for listing clusters.</p>
pub created_after: ::std::option::Option<::aws_smithy_types::DateTime>,
/// <p>The creation date and time end value filter for listing clusters.</p>
pub created_before: ::std::option::Option<::aws_smithy_types::DateTime>,
/// <p>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.</p>
pub cluster_states: ::std::option::Option<::std::vec::Vec<crate::types::ClusterState>>,
/// <p>The pagination token that indicates the next set of results to retrieve.</p>
pub marker: ::std::option::Option<::std::string::String>,
}
impl ListClustersInput {
/// <p>The creation date and time beginning value filter for listing clusters.</p>
pub fn created_after(&self) -> ::std::option::Option<&::aws_smithy_types::DateTime> {
self.created_after.as_ref()
}
/// <p>The creation date and time end value filter for listing clusters.</p>
pub fn created_before(&self) -> ::std::option::Option<&::aws_smithy_types::DateTime> {
self.created_before.as_ref()
}
/// <p>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.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.cluster_states.is_none()`.
pub fn cluster_states(&self) -> &[crate::types::ClusterState] {
self.cluster_states.as_deref().unwrap_or_default()
}
/// <p>The pagination token that indicates the next set of results to retrieve.</p>
pub fn marker(&self) -> ::std::option::Option<&str> {
self.marker.as_deref()
}
}
impl ListClustersInput {
/// Creates a new builder-style object to manufacture [`ListClustersInput`](crate::operation::list_clusters::ListClustersInput).
pub fn builder() -> crate::operation::list_clusters::builders::ListClustersInputBuilder {
crate::operation::list_clusters::builders::ListClustersInputBuilder::default()
}
}
/// A builder for [`ListClustersInput`](crate::operation::list_clusters::ListClustersInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct ListClustersInputBuilder {
pub(crate) created_after: ::std::option::Option<::aws_smithy_types::DateTime>,
pub(crate) created_before: ::std::option::Option<::aws_smithy_types::DateTime>,
pub(crate) cluster_states: ::std::option::Option<::std::vec::Vec<crate::types::ClusterState>>,
pub(crate) marker: ::std::option::Option<::std::string::String>,
}
impl ListClustersInputBuilder {
/// <p>The creation date and time beginning value filter for listing clusters.</p>
pub fn created_after(mut self, input: ::aws_smithy_types::DateTime) -> Self {
self.created_after = ::std::option::Option::Some(input);
self
}
/// <p>The creation date and time beginning value filter for listing clusters.</p>
pub fn set_created_after(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
self.created_after = input;
self
}
/// <p>The creation date and time beginning value filter for listing clusters.</p>
pub fn get_created_after(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
&self.created_after
}
/// <p>The creation date and time end value filter for listing clusters.</p>
pub fn created_before(mut self, input: ::aws_smithy_types::DateTime) -> Self {
self.created_before = ::std::option::Option::Some(input);
self
}
/// <p>The creation date and time end value filter for listing clusters.</p>
pub fn set_created_before(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
self.created_before = input;
self
}
/// <p>The creation date and time end value filter for listing clusters.</p>
pub fn get_created_before(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
&self.created_before
}
/// Appends an item to `cluster_states`.
///
/// To override the contents of this collection use [`set_cluster_states`](Self::set_cluster_states).
///
/// <p>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.</p>
pub fn cluster_states(mut self, input: crate::types::ClusterState) -> Self {
let mut v = self.cluster_states.unwrap_or_default();
v.push(input);
self.cluster_states = ::std::option::Option::Some(v);
self
}
/// <p>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.</p>
pub fn set_cluster_states(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ClusterState>>) -> Self {
self.cluster_states = input;
self
}
/// <p>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.</p>
pub fn get_cluster_states(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ClusterState>> {
&self.cluster_states
}
/// <p>The pagination token that indicates the next set of results to retrieve.</p>
pub fn marker(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.marker = ::std::option::Option::Some(input.into());
self
}
/// <p>The pagination token that indicates the next set of results to retrieve.</p>
pub fn set_marker(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.marker = input;
self
}
/// <p>The pagination token that indicates the next set of results to retrieve.</p>
pub fn get_marker(&self) -> &::std::option::Option<::std::string::String> {
&self.marker
}
/// Consumes the builder and constructs a [`ListClustersInput`](crate::operation::list_clusters::ListClustersInput).
pub fn build(
self,
) -> ::std::result::Result<crate::operation::list_clusters::ListClustersInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::list_clusters::ListClustersInput {
created_after: self.created_after,
created_before: self.created_before,
cluster_states: self.cluster_states,
marker: self.marker,
})
}
}