1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct ExecuteBudgetActionOutput {
/// <p>The account ID of the user. It's a 12-digit number.</p>
pub account_id: ::std::string::String,
/// <p>A string that represents the budget name. The ":" and "\" characters, and the "/action/" substring, aren't allowed.</p>
/// <p>Budget names are validated for content. Names that contain phone numbers, URLs, or email addresses combined with certain terms may be rejected.</p>
pub budget_name: ::std::string::String,
/// <p>A system-generated universally unique identifier (UUID) for the action.</p>
pub action_id: ::std::string::String,
/// <p>The type of execution.</p>
pub execution_type: crate::types::ExecutionType,
_request_id: Option<String>,
}
impl ExecuteBudgetActionOutput {
/// <p>The account ID of the user. It's a 12-digit number.</p>
pub fn account_id(&self) -> &str {
use std::ops::Deref;
self.account_id.deref()
}
/// <p>A string that represents the budget name. The ":" and "\" characters, and the "/action/" substring, aren't allowed.</p>
/// <p>Budget names are validated for content. Names that contain phone numbers, URLs, or email addresses combined with certain terms may be rejected.</p>
pub fn budget_name(&self) -> &str {
use std::ops::Deref;
self.budget_name.deref()
}
/// <p>A system-generated universally unique identifier (UUID) for the action.</p>
pub fn action_id(&self) -> &str {
use std::ops::Deref;
self.action_id.deref()
}
/// <p>The type of execution.</p>
pub fn execution_type(&self) -> &crate::types::ExecutionType {
&self.execution_type
}
}
impl ::aws_types::request_id::RequestId for ExecuteBudgetActionOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl ExecuteBudgetActionOutput {
/// Creates a new builder-style object to manufacture [`ExecuteBudgetActionOutput`](crate::operation::execute_budget_action::ExecuteBudgetActionOutput).
pub fn builder() -> crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder {
crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder::default()
}
}
/// A builder for [`ExecuteBudgetActionOutput`](crate::operation::execute_budget_action::ExecuteBudgetActionOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct ExecuteBudgetActionOutputBuilder {
pub(crate) account_id: ::std::option::Option<::std::string::String>,
pub(crate) budget_name: ::std::option::Option<::std::string::String>,
pub(crate) action_id: ::std::option::Option<::std::string::String>,
pub(crate) execution_type: ::std::option::Option<crate::types::ExecutionType>,
_request_id: Option<String>,
}
impl ExecuteBudgetActionOutputBuilder {
/// <p>The account ID of the user. It's a 12-digit number.</p>
/// This field is required.
pub fn account_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.account_id = ::std::option::Option::Some(input.into());
self
}
/// <p>The account ID of the user. It's a 12-digit number.</p>
pub fn set_account_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.account_id = input;
self
}
/// <p>The account ID of the user. It's a 12-digit number.</p>
pub fn get_account_id(&self) -> &::std::option::Option<::std::string::String> {
&self.account_id
}
/// <p>A string that represents the budget name. The ":" and "\" characters, and the "/action/" substring, aren't allowed.</p>
/// <p>Budget names are validated for content. Names that contain phone numbers, URLs, or email addresses combined with certain terms may be rejected.</p>
/// This field is required.
pub fn budget_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.budget_name = ::std::option::Option::Some(input.into());
self
}
/// <p>A string that represents the budget name. The ":" and "\" characters, and the "/action/" substring, aren't allowed.</p>
/// <p>Budget names are validated for content. Names that contain phone numbers, URLs, or email addresses combined with certain terms may be rejected.</p>
pub fn set_budget_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.budget_name = input;
self
}
/// <p>A string that represents the budget name. The ":" and "\" characters, and the "/action/" substring, aren't allowed.</p>
/// <p>Budget names are validated for content. Names that contain phone numbers, URLs, or email addresses combined with certain terms may be rejected.</p>
pub fn get_budget_name(&self) -> &::std::option::Option<::std::string::String> {
&self.budget_name
}
/// <p>A system-generated universally unique identifier (UUID) for the action.</p>
/// This field is required.
pub fn action_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.action_id = ::std::option::Option::Some(input.into());
self
}
/// <p>A system-generated universally unique identifier (UUID) for the action.</p>
pub fn set_action_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.action_id = input;
self
}
/// <p>A system-generated universally unique identifier (UUID) for the action.</p>
pub fn get_action_id(&self) -> &::std::option::Option<::std::string::String> {
&self.action_id
}
/// <p>The type of execution.</p>
/// This field is required.
pub fn execution_type(mut self, input: crate::types::ExecutionType) -> Self {
self.execution_type = ::std::option::Option::Some(input);
self
}
/// <p>The type of execution.</p>
pub fn set_execution_type(mut self, input: ::std::option::Option<crate::types::ExecutionType>) -> Self {
self.execution_type = input;
self
}
/// <p>The type of execution.</p>
pub fn get_execution_type(&self) -> &::std::option::Option<crate::types::ExecutionType> {
&self.execution_type
}
pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
self._request_id = Some(request_id.into());
self
}
pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
self._request_id = request_id;
self
}
/// Consumes the builder and constructs a [`ExecuteBudgetActionOutput`](crate::operation::execute_budget_action::ExecuteBudgetActionOutput).
/// This method will fail if any of the following fields are not set:
/// - [`account_id`](crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder::account_id)
/// - [`budget_name`](crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder::budget_name)
/// - [`action_id`](crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder::action_id)
/// - [`execution_type`](crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder::execution_type)
pub fn build(
self,
) -> ::std::result::Result<crate::operation::execute_budget_action::ExecuteBudgetActionOutput, ::aws_smithy_types::error::operation::BuildError>
{
::std::result::Result::Ok(crate::operation::execute_budget_action::ExecuteBudgetActionOutput {
account_id: self.account_id.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"account_id",
"account_id was not specified but it is required when building ExecuteBudgetActionOutput",
)
})?,
budget_name: self.budget_name.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"budget_name",
"budget_name was not specified but it is required when building ExecuteBudgetActionOutput",
)
})?,
action_id: self.action_id.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"action_id",
"action_id was not specified but it is required when building ExecuteBudgetActionOutput",
)
})?,
execution_type: self.execution_type.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"execution_type",
"execution_type was not specified but it is required when building ExecuteBudgetActionOutput",
)
})?,
_request_id: self._request_id,
})
}
}