Struct aws_sdk_b2bi::operation::update_profile::UpdateProfileOutput
source · #[non_exhaustive]pub struct UpdateProfileOutput {
pub profile_id: String,
pub profile_arn: String,
pub name: String,
pub email: Option<String>,
pub phone: String,
pub business_name: String,
pub logging: Option<Logging>,
pub log_group_name: Option<String>,
pub created_at: DateTime,
pub modified_at: Option<DateTime>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.profile_id: StringReturns the unique, system-generated identifier for the profile.
profile_arn: StringReturns an Amazon Resource Name (ARN) for the profile.
name: StringReturns the name of the profile.
email: Option<String>Returns the email address associated with this customer profile.
phone: StringReturns the phone number associated with the profile.
business_name: StringReturns the name for the business associated with this profile.
logging: Option<Logging>Specifies whether or not logging is enabled for this profile.
log_group_name: Option<String>Returns the name of the logging group.
created_at: DateTimeReturns a timestamp for creation date and time of the profile.
modified_at: Option<DateTime>Returns a timestamp for last time the profile was modified.
Implementations§
source§impl UpdateProfileOutput
impl UpdateProfileOutput
sourcepub fn profile_id(&self) -> &str
pub fn profile_id(&self) -> &str
Returns the unique, system-generated identifier for the profile.
sourcepub fn profile_arn(&self) -> &str
pub fn profile_arn(&self) -> &str
Returns an Amazon Resource Name (ARN) for the profile.
sourcepub fn email(&self) -> Option<&str>
pub fn email(&self) -> Option<&str>
Returns the email address associated with this customer profile.
sourcepub fn business_name(&self) -> &str
pub fn business_name(&self) -> &str
Returns the name for the business associated with this profile.
sourcepub fn logging(&self) -> Option<&Logging>
pub fn logging(&self) -> Option<&Logging>
Specifies whether or not logging is enabled for this profile.
sourcepub fn log_group_name(&self) -> Option<&str>
pub fn log_group_name(&self) -> Option<&str>
Returns the name of the logging group.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
Returns a timestamp for creation date and time of the profile.
sourcepub fn modified_at(&self) -> Option<&DateTime>
pub fn modified_at(&self) -> Option<&DateTime>
Returns a timestamp for last time the profile was modified.
source§impl UpdateProfileOutput
impl UpdateProfileOutput
sourcepub fn builder() -> UpdateProfileOutputBuilder
pub fn builder() -> UpdateProfileOutputBuilder
Creates a new builder-style object to manufacture UpdateProfileOutput.
Trait Implementations§
source§impl Clone for UpdateProfileOutput
impl Clone for UpdateProfileOutput
source§fn clone(&self) -> UpdateProfileOutput
fn clone(&self) -> UpdateProfileOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateProfileOutput
impl Debug for UpdateProfileOutput
source§impl PartialEq for UpdateProfileOutput
impl PartialEq for UpdateProfileOutput
source§fn eq(&self, other: &UpdateProfileOutput) -> bool
fn eq(&self, other: &UpdateProfileOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateProfileOutput
impl RequestId for UpdateProfileOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for UpdateProfileOutput
Auto Trait Implementations§
impl Freeze for UpdateProfileOutput
impl RefUnwindSafe for UpdateProfileOutput
impl Send for UpdateProfileOutput
impl Sync for UpdateProfileOutput
impl Unpin for UpdateProfileOutput
impl UnwindSafe for UpdateProfileOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more