#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct UpdateInfrastructureConfigurationOutput {
pub request_id: ::std::option::Option<::std::string::String>,
pub client_token: ::std::option::Option<::std::string::String>,
pub infrastructure_configuration_arn: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl UpdateInfrastructureConfigurationOutput {
pub fn request_id(&self) -> ::std::option::Option<&str> {
self.request_id.as_deref()
}
pub fn client_token(&self) -> ::std::option::Option<&str> {
self.client_token.as_deref()
}
pub fn infrastructure_configuration_arn(&self) -> ::std::option::Option<&str> {
self.infrastructure_configuration_arn.as_deref()
}
}
impl ::aws_types::request_id::RequestId for UpdateInfrastructureConfigurationOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl UpdateInfrastructureConfigurationOutput {
pub fn builder() -> crate::operation::update_infrastructure_configuration::builders::UpdateInfrastructureConfigurationOutputBuilder {
crate::operation::update_infrastructure_configuration::builders::UpdateInfrastructureConfigurationOutputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct UpdateInfrastructureConfigurationOutputBuilder {
pub(crate) request_id: ::std::option::Option<::std::string::String>,
pub(crate) client_token: ::std::option::Option<::std::string::String>,
pub(crate) infrastructure_configuration_arn: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl UpdateInfrastructureConfigurationOutputBuilder {
pub fn request_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.request_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_request_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.request_id = input;
self
}
pub fn get_request_id(&self) -> &::std::option::Option<::std::string::String> {
&self.request_id
}
pub fn client_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.client_token = ::std::option::Option::Some(input.into());
self
}
pub fn set_client_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.client_token = input;
self
}
pub fn get_client_token(&self) -> &::std::option::Option<::std::string::String> {
&self.client_token
}
pub fn infrastructure_configuration_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.infrastructure_configuration_arn = ::std::option::Option::Some(input.into());
self
}
pub fn set_infrastructure_configuration_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.infrastructure_configuration_arn = input;
self
}
pub fn get_infrastructure_configuration_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.infrastructure_configuration_arn
}
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) -> crate::operation::update_infrastructure_configuration::UpdateInfrastructureConfigurationOutput {
crate::operation::update_infrastructure_configuration::UpdateInfrastructureConfigurationOutput {
request_id: self.request_id,
client_token: self.client_token,
infrastructure_configuration_arn: self.infrastructure_configuration_arn,
_request_id: self._request_id,
}
}
}