#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct ExecuteBudgetActionOutput {
pub account_id: ::std::string::String,
pub budget_name: ::std::string::String,
pub action_id: ::std::string::String,
pub execution_type: crate::types::ExecutionType,
_request_id: Option<String>,
}
impl ExecuteBudgetActionOutput {
pub fn account_id(&self) -> &str {
use std::ops::Deref;
self.account_id.deref()
}
pub fn budget_name(&self) -> &str {
use std::ops::Deref;
self.budget_name.deref()
}
pub fn action_id(&self) -> &str {
use std::ops::Deref;
self.action_id.deref()
}
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 {
pub fn builder() -> crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder {
crate::operation::execute_budget_action::builders::ExecuteBudgetActionOutputBuilder::default()
}
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
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 {
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
}
pub fn set_account_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.account_id = input;
self
}
pub fn get_account_id(&self) -> &::std::option::Option<::std::string::String> {
&self.account_id
}
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
}
pub fn set_budget_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.budget_name = input;
self
}
pub fn get_budget_name(&self) -> &::std::option::Option<::std::string::String> {
&self.budget_name
}
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
}
pub fn set_action_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.action_id = input;
self
}
pub fn get_action_id(&self) -> &::std::option::Option<::std::string::String> {
&self.action_id
}
pub fn execution_type(mut self, input: crate::types::ExecutionType) -> Self {
self.execution_type = ::std::option::Option::Some(input);
self
}
pub fn set_execution_type(mut self, input: ::std::option::Option<crate::types::ExecutionType>) -> Self {
self.execution_type = input;
self
}
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
}
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,
})
}
}