aws_sdk_wellarchitected/operation/create_profile/
_create_profile_output.rs#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct CreateProfileOutput {
pub profile_arn: ::std::option::Option<::std::string::String>,
pub profile_version: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl CreateProfileOutput {
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 ::aws_types::request_id::RequestId for CreateProfileOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl CreateProfileOutput {
pub fn builder() -> crate::operation::create_profile::builders::CreateProfileOutputBuilder {
crate::operation::create_profile::builders::CreateProfileOutputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct CreateProfileOutputBuilder {
pub(crate) profile_arn: ::std::option::Option<::std::string::String>,
pub(crate) profile_version: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl CreateProfileOutputBuilder {
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(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::create_profile::CreateProfileOutput {
crate::operation::create_profile::CreateProfileOutput {
profile_arn: self.profile_arn,
profile_version: self.profile_version,
_request_id: self._request_id,
}
}
}