aws_sdk_redshift/operation/pause_cluster/
_pause_cluster_input.rs1#[non_exhaustive]
5#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
6pub struct PauseClusterInput {
7 pub cluster_identifier: ::std::option::Option<::std::string::String>,
9}
10impl PauseClusterInput {
11 pub fn cluster_identifier(&self) -> ::std::option::Option<&str> {
13 self.cluster_identifier.as_deref()
14 }
15}
16impl PauseClusterInput {
17 pub fn builder() -> crate::operation::pause_cluster::builders::PauseClusterInputBuilder {
19 crate::operation::pause_cluster::builders::PauseClusterInputBuilder::default()
20 }
21}
22
23#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
25#[non_exhaustive]
26pub struct PauseClusterInputBuilder {
27 pub(crate) cluster_identifier: ::std::option::Option<::std::string::String>,
28}
29impl PauseClusterInputBuilder {
30 pub fn cluster_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
33 self.cluster_identifier = ::std::option::Option::Some(input.into());
34 self
35 }
36 pub fn set_cluster_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
38 self.cluster_identifier = input;
39 self
40 }
41 pub fn get_cluster_identifier(&self) -> &::std::option::Option<::std::string::String> {
43 &self.cluster_identifier
44 }
45 pub fn build(
47 self,
48 ) -> ::std::result::Result<crate::operation::pause_cluster::PauseClusterInput, ::aws_smithy_types::error::operation::BuildError> {
49 ::std::result::Result::Ok(crate::operation::pause_cluster::PauseClusterInput {
50 cluster_identifier: self.cluster_identifier,
51 })
52 }
53}