aws_sdk_wellarchitected/operation/get_profile/
_get_profile_input.rs#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetProfileInput {
pub profile_arn: ::std::option::Option<::std::string::String>,
pub profile_version: ::std::option::Option<::std::string::String>,
}
impl GetProfileInput {
pub fn profile_arn(&self) -> ::std::option::Option<&str> {
self.profile_arn.as_deref()
}
pub fn profile_version(&self) -> ::std::option::Option<&str> {
self.profile_version.as_deref()
}
}
impl GetProfileInput {
pub fn builder() -> crate::operation::get_profile::builders::GetProfileInputBuilder {
crate::operation::get_profile::builders::GetProfileInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetProfileInputBuilder {
pub(crate) profile_arn: ::std::option::Option<::std::string::String>,
pub(crate) profile_version: ::std::option::Option<::std::string::String>,
}
impl GetProfileInputBuilder {
pub fn profile_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.profile_arn = ::std::option::Option::Some(input.into());
self
}
pub fn set_profile_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.profile_arn = input;
self
}
pub fn get_profile_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.profile_arn
}
pub fn profile_version(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.profile_version = ::std::option::Option::Some(input.into());
self
}
pub fn set_profile_version(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.profile_version = input;
self
}
pub fn get_profile_version(&self) -> &::std::option::Option<::std::string::String> {
&self.profile_version
}
pub fn build(self) -> ::std::result::Result<crate::operation::get_profile::GetProfileInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::get_profile::GetProfileInput {
profile_arn: self.profile_arn,
profile_version: self.profile_version,
})
}
}