aws_sdk_redshift/operation/pause_cluster/
_pause_cluster_input.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3/// <p>Describes a pause cluster operation. For example, a scheduled action to run the <code>PauseCluster</code> API operation.</p>
4#[non_exhaustive]
5#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
6pub struct PauseClusterInput {
7    /// <p>The identifier of the cluster to be paused.</p>
8    pub cluster_identifier: ::std::option::Option<::std::string::String>,
9}
10impl PauseClusterInput {
11    /// <p>The identifier of the cluster to be paused.</p>
12    pub fn cluster_identifier(&self) -> ::std::option::Option<&str> {
13        self.cluster_identifier.as_deref()
14    }
15}
16impl PauseClusterInput {
17    /// Creates a new builder-style object to manufacture [`PauseClusterInput`](crate::operation::pause_cluster::PauseClusterInput).
18    pub fn builder() -> crate::operation::pause_cluster::builders::PauseClusterInputBuilder {
19        crate::operation::pause_cluster::builders::PauseClusterInputBuilder::default()
20    }
21}
22
23/// A builder for [`PauseClusterInput`](crate::operation::pause_cluster::PauseClusterInput).
24#[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    /// <p>The identifier of the cluster to be paused.</p>
31    /// This field is required.
32    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    /// <p>The identifier of the cluster to be paused.</p>
37    pub fn set_cluster_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
38        self.cluster_identifier = input;
39        self
40    }
41    /// <p>The identifier of the cluster to be paused.</p>
42    pub fn get_cluster_identifier(&self) -> &::std::option::Option<::std::string::String> {
43        &self.cluster_identifier
44    }
45    /// Consumes the builder and constructs a [`PauseClusterInput`](crate::operation::pause_cluster::PauseClusterInput).
46    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}