aws_sdk_m2/operation/create_application/
_create_application_output.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 CreateApplicationOutput {
6    /// <p>The Amazon Resource Name (ARN) of the application.</p>
7    pub application_arn: ::std::string::String,
8    /// <p>The unique application identifier.</p>
9    pub application_id: ::std::string::String,
10    /// <p>The version number of the application.</p>
11    pub application_version: i32,
12    _request_id: Option<String>,
13}
14impl CreateApplicationOutput {
15    /// <p>The Amazon Resource Name (ARN) of the application.</p>
16    pub fn application_arn(&self) -> &str {
17        use std::ops::Deref;
18        self.application_arn.deref()
19    }
20    /// <p>The unique application identifier.</p>
21    pub fn application_id(&self) -> &str {
22        use std::ops::Deref;
23        self.application_id.deref()
24    }
25    /// <p>The version number of the application.</p>
26    pub fn application_version(&self) -> i32 {
27        self.application_version
28    }
29}
30impl ::aws_types::request_id::RequestId for CreateApplicationOutput {
31    fn request_id(&self) -> Option<&str> {
32        self._request_id.as_deref()
33    }
34}
35impl CreateApplicationOutput {
36    /// Creates a new builder-style object to manufacture [`CreateApplicationOutput`](crate::operation::create_application::CreateApplicationOutput).
37    pub fn builder() -> crate::operation::create_application::builders::CreateApplicationOutputBuilder {
38        crate::operation::create_application::builders::CreateApplicationOutputBuilder::default()
39    }
40}
41
42/// A builder for [`CreateApplicationOutput`](crate::operation::create_application::CreateApplicationOutput).
43#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
44#[non_exhaustive]
45pub struct CreateApplicationOutputBuilder {
46    pub(crate) application_arn: ::std::option::Option<::std::string::String>,
47    pub(crate) application_id: ::std::option::Option<::std::string::String>,
48    pub(crate) application_version: ::std::option::Option<i32>,
49    _request_id: Option<String>,
50}
51impl CreateApplicationOutputBuilder {
52    /// <p>The Amazon Resource Name (ARN) of the application.</p>
53    /// This field is required.
54    pub fn application_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
55        self.application_arn = ::std::option::Option::Some(input.into());
56        self
57    }
58    /// <p>The Amazon Resource Name (ARN) of the application.</p>
59    pub fn set_application_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
60        self.application_arn = input;
61        self
62    }
63    /// <p>The Amazon Resource Name (ARN) of the application.</p>
64    pub fn get_application_arn(&self) -> &::std::option::Option<::std::string::String> {
65        &self.application_arn
66    }
67    /// <p>The unique application identifier.</p>
68    /// This field is required.
69    pub fn application_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
70        self.application_id = ::std::option::Option::Some(input.into());
71        self
72    }
73    /// <p>The unique application identifier.</p>
74    pub fn set_application_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
75        self.application_id = input;
76        self
77    }
78    /// <p>The unique application identifier.</p>
79    pub fn get_application_id(&self) -> &::std::option::Option<::std::string::String> {
80        &self.application_id
81    }
82    /// <p>The version number of the application.</p>
83    /// This field is required.
84    pub fn application_version(mut self, input: i32) -> Self {
85        self.application_version = ::std::option::Option::Some(input);
86        self
87    }
88    /// <p>The version number of the application.</p>
89    pub fn set_application_version(mut self, input: ::std::option::Option<i32>) -> Self {
90        self.application_version = input;
91        self
92    }
93    /// <p>The version number of the application.</p>
94    pub fn get_application_version(&self) -> &::std::option::Option<i32> {
95        &self.application_version
96    }
97    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
98        self._request_id = Some(request_id.into());
99        self
100    }
101
102    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
103        self._request_id = request_id;
104        self
105    }
106    /// Consumes the builder and constructs a [`CreateApplicationOutput`](crate::operation::create_application::CreateApplicationOutput).
107    /// This method will fail if any of the following fields are not set:
108    /// - [`application_arn`](crate::operation::create_application::builders::CreateApplicationOutputBuilder::application_arn)
109    /// - [`application_id`](crate::operation::create_application::builders::CreateApplicationOutputBuilder::application_id)
110    /// - [`application_version`](crate::operation::create_application::builders::CreateApplicationOutputBuilder::application_version)
111    pub fn build(
112        self,
113    ) -> ::std::result::Result<crate::operation::create_application::CreateApplicationOutput, ::aws_smithy_types::error::operation::BuildError> {
114        ::std::result::Result::Ok(crate::operation::create_application::CreateApplicationOutput {
115            application_arn: self.application_arn.ok_or_else(|| {
116                ::aws_smithy_types::error::operation::BuildError::missing_field(
117                    "application_arn",
118                    "application_arn was not specified but it is required when building CreateApplicationOutput",
119                )
120            })?,
121            application_id: self.application_id.ok_or_else(|| {
122                ::aws_smithy_types::error::operation::BuildError::missing_field(
123                    "application_id",
124                    "application_id was not specified but it is required when building CreateApplicationOutput",
125                )
126            })?,
127            application_version: self.application_version.ok_or_else(|| {
128                ::aws_smithy_types::error::operation::BuildError::missing_field(
129                    "application_version",
130                    "application_version was not specified but it is required when building CreateApplicationOutput",
131                )
132            })?,
133            _request_id: self._request_id,
134        })
135    }
136}