aws_sdk_redshift/operation/modify_integration/
_modify_integration_input.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(missing_docs)] // documentation missing in model
3#[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct ModifyIntegrationInput {
6    /// <p>The unique identifier of the integration to modify.</p>
7    pub integration_arn: ::std::option::Option<::std::string::String>,
8    /// <p>A new description for the integration.</p>
9    pub description: ::std::option::Option<::std::string::String>,
10    /// <p>A new name for the integration.</p>
11    pub integration_name: ::std::option::Option<::std::string::String>,
12}
13impl ModifyIntegrationInput {
14    /// <p>The unique identifier of the integration to modify.</p>
15    pub fn integration_arn(&self) -> ::std::option::Option<&str> {
16        self.integration_arn.as_deref()
17    }
18    /// <p>A new description for the integration.</p>
19    pub fn description(&self) -> ::std::option::Option<&str> {
20        self.description.as_deref()
21    }
22    /// <p>A new name for the integration.</p>
23    pub fn integration_name(&self) -> ::std::option::Option<&str> {
24        self.integration_name.as_deref()
25    }
26}
27impl ModifyIntegrationInput {
28    /// Creates a new builder-style object to manufacture [`ModifyIntegrationInput`](crate::operation::modify_integration::ModifyIntegrationInput).
29    pub fn builder() -> crate::operation::modify_integration::builders::ModifyIntegrationInputBuilder {
30        crate::operation::modify_integration::builders::ModifyIntegrationInputBuilder::default()
31    }
32}
33
34/// A builder for [`ModifyIntegrationInput`](crate::operation::modify_integration::ModifyIntegrationInput).
35#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
36#[non_exhaustive]
37pub struct ModifyIntegrationInputBuilder {
38    pub(crate) integration_arn: ::std::option::Option<::std::string::String>,
39    pub(crate) description: ::std::option::Option<::std::string::String>,
40    pub(crate) integration_name: ::std::option::Option<::std::string::String>,
41}
42impl ModifyIntegrationInputBuilder {
43    /// <p>The unique identifier of the integration to modify.</p>
44    /// This field is required.
45    pub fn integration_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
46        self.integration_arn = ::std::option::Option::Some(input.into());
47        self
48    }
49    /// <p>The unique identifier of the integration to modify.</p>
50    pub fn set_integration_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
51        self.integration_arn = input;
52        self
53    }
54    /// <p>The unique identifier of the integration to modify.</p>
55    pub fn get_integration_arn(&self) -> &::std::option::Option<::std::string::String> {
56        &self.integration_arn
57    }
58    /// <p>A new description for the integration.</p>
59    pub fn description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
60        self.description = ::std::option::Option::Some(input.into());
61        self
62    }
63    /// <p>A new description for the integration.</p>
64    pub fn set_description(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
65        self.description = input;
66        self
67    }
68    /// <p>A new description for the integration.</p>
69    pub fn get_description(&self) -> &::std::option::Option<::std::string::String> {
70        &self.description
71    }
72    /// <p>A new name for the integration.</p>
73    pub fn integration_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
74        self.integration_name = ::std::option::Option::Some(input.into());
75        self
76    }
77    /// <p>A new name for the integration.</p>
78    pub fn set_integration_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
79        self.integration_name = input;
80        self
81    }
82    /// <p>A new name for the integration.</p>
83    pub fn get_integration_name(&self) -> &::std::option::Option<::std::string::String> {
84        &self.integration_name
85    }
86    /// Consumes the builder and constructs a [`ModifyIntegrationInput`](crate::operation::modify_integration::ModifyIntegrationInput).
87    pub fn build(
88        self,
89    ) -> ::std::result::Result<crate::operation::modify_integration::ModifyIntegrationInput, ::aws_smithy_types::error::operation::BuildError> {
90        ::std::result::Result::Ok(crate::operation::modify_integration::ModifyIntegrationInput {
91            integration_arn: self.integration_arn,
92            description: self.description,
93            integration_name: self.integration_name,
94        })
95    }
96}