aws_sdk_amplifybackend/operation/delete_backend/
_delete_backend_output.rs1#[allow(missing_docs)] #[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct DeleteBackendOutput {
6 pub app_id: ::std::option::Option<::std::string::String>,
8 pub backend_environment_name: ::std::option::Option<::std::string::String>,
10 pub error: ::std::option::Option<::std::string::String>,
12 pub job_id: ::std::option::Option<::std::string::String>,
14 pub operation: ::std::option::Option<::std::string::String>,
16 pub status: ::std::option::Option<::std::string::String>,
18 _request_id: Option<String>,
19}
20impl DeleteBackendOutput {
21 pub fn app_id(&self) -> ::std::option::Option<&str> {
23 self.app_id.as_deref()
24 }
25 pub fn backend_environment_name(&self) -> ::std::option::Option<&str> {
27 self.backend_environment_name.as_deref()
28 }
29 pub fn error(&self) -> ::std::option::Option<&str> {
31 self.error.as_deref()
32 }
33 pub fn job_id(&self) -> ::std::option::Option<&str> {
35 self.job_id.as_deref()
36 }
37 pub fn operation(&self) -> ::std::option::Option<&str> {
39 self.operation.as_deref()
40 }
41 pub fn status(&self) -> ::std::option::Option<&str> {
43 self.status.as_deref()
44 }
45}
46impl ::aws_types::request_id::RequestId for DeleteBackendOutput {
47 fn request_id(&self) -> Option<&str> {
48 self._request_id.as_deref()
49 }
50}
51impl DeleteBackendOutput {
52 pub fn builder() -> crate::operation::delete_backend::builders::DeleteBackendOutputBuilder {
54 crate::operation::delete_backend::builders::DeleteBackendOutputBuilder::default()
55 }
56}
57
58#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
60#[non_exhaustive]
61pub struct DeleteBackendOutputBuilder {
62 pub(crate) app_id: ::std::option::Option<::std::string::String>,
63 pub(crate) backend_environment_name: ::std::option::Option<::std::string::String>,
64 pub(crate) error: ::std::option::Option<::std::string::String>,
65 pub(crate) job_id: ::std::option::Option<::std::string::String>,
66 pub(crate) operation: ::std::option::Option<::std::string::String>,
67 pub(crate) status: ::std::option::Option<::std::string::String>,
68 _request_id: Option<String>,
69}
70impl DeleteBackendOutputBuilder {
71 pub fn app_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
73 self.app_id = ::std::option::Option::Some(input.into());
74 self
75 }
76 pub fn set_app_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
78 self.app_id = input;
79 self
80 }
81 pub fn get_app_id(&self) -> &::std::option::Option<::std::string::String> {
83 &self.app_id
84 }
85 pub fn backend_environment_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
87 self.backend_environment_name = ::std::option::Option::Some(input.into());
88 self
89 }
90 pub fn set_backend_environment_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
92 self.backend_environment_name = input;
93 self
94 }
95 pub fn get_backend_environment_name(&self) -> &::std::option::Option<::std::string::String> {
97 &self.backend_environment_name
98 }
99 pub fn error(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
101 self.error = ::std::option::Option::Some(input.into());
102 self
103 }
104 pub fn set_error(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
106 self.error = input;
107 self
108 }
109 pub fn get_error(&self) -> &::std::option::Option<::std::string::String> {
111 &self.error
112 }
113 pub fn job_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
115 self.job_id = ::std::option::Option::Some(input.into());
116 self
117 }
118 pub fn set_job_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
120 self.job_id = input;
121 self
122 }
123 pub fn get_job_id(&self) -> &::std::option::Option<::std::string::String> {
125 &self.job_id
126 }
127 pub fn operation(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
129 self.operation = ::std::option::Option::Some(input.into());
130 self
131 }
132 pub fn set_operation(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
134 self.operation = input;
135 self
136 }
137 pub fn get_operation(&self) -> &::std::option::Option<::std::string::String> {
139 &self.operation
140 }
141 pub fn status(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
143 self.status = ::std::option::Option::Some(input.into());
144 self
145 }
146 pub fn set_status(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
148 self.status = input;
149 self
150 }
151 pub fn get_status(&self) -> &::std::option::Option<::std::string::String> {
153 &self.status
154 }
155 pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
156 self._request_id = Some(request_id.into());
157 self
158 }
159
160 pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
161 self._request_id = request_id;
162 self
163 }
164 pub fn build(self) -> crate::operation::delete_backend::DeleteBackendOutput {
166 crate::operation::delete_backend::DeleteBackendOutput {
167 app_id: self.app_id,
168 backend_environment_name: self.backend_environment_name,
169 error: self.error,
170 job_id: self.job_id,
171 operation: self.operation,
172 status: self.status,
173 _request_id: self._request_id,
174 }
175 }
176}