aws_sdk_redshift/operation/reboot_cluster/
_reboot_cluster_input.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3/// <p></p>
4#[non_exhaustive]
5#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
6pub struct RebootClusterInput {
7    /// <p>The cluster identifier.</p>
8    pub cluster_identifier: ::std::option::Option<::std::string::String>,
9}
10impl RebootClusterInput {
11    /// <p>The cluster identifier.</p>
12    pub fn cluster_identifier(&self) -> ::std::option::Option<&str> {
13        self.cluster_identifier.as_deref()
14    }
15}
16impl RebootClusterInput {
17    /// Creates a new builder-style object to manufacture [`RebootClusterInput`](crate::operation::reboot_cluster::RebootClusterInput).
18    pub fn builder() -> crate::operation::reboot_cluster::builders::RebootClusterInputBuilder {
19        crate::operation::reboot_cluster::builders::RebootClusterInputBuilder::default()
20    }
21}
22
23/// A builder for [`RebootClusterInput`](crate::operation::reboot_cluster::RebootClusterInput).
24#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
25#[non_exhaustive]
26pub struct RebootClusterInputBuilder {
27    pub(crate) cluster_identifier: ::std::option::Option<::std::string::String>,
28}
29impl RebootClusterInputBuilder {
30    /// <p>The cluster identifier.</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 cluster identifier.</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 cluster identifier.</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 [`RebootClusterInput`](crate::operation::reboot_cluster::RebootClusterInput).
46    pub fn build(
47        self,
48    ) -> ::std::result::Result<crate::operation::reboot_cluster::RebootClusterInput, ::aws_smithy_types::error::operation::BuildError> {
49        ::std::result::Result::Ok(crate::operation::reboot_cluster::RebootClusterInput {
50            cluster_identifier: self.cluster_identifier,
51        })
52    }
53}