Struct aws_sdk_b2bi::operation::get_profile::GetProfileOutput
source · #[non_exhaustive]pub struct GetProfileOutput {
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 a specific Amazon Web Services resource, such as a capability, partnership, profile, or transformer.
name: StringReturns the name of the profile, used to identify it.
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>Returns 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 transformer.
modified_at: Option<DateTime>Returns a timestamp for last time the profile was modified.
Implementations§
source§impl GetProfileOutput
impl GetProfileOutput
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 a specific Amazon Web Services resource, such as a capability, partnership, profile, or transformer.
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>
Returns 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 transformer.
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 GetProfileOutput
impl GetProfileOutput
sourcepub fn builder() -> GetProfileOutputBuilder
pub fn builder() -> GetProfileOutputBuilder
Creates a new builder-style object to manufacture GetProfileOutput.
Trait Implementations§
source§impl Clone for GetProfileOutput
impl Clone for GetProfileOutput
source§fn clone(&self) -> GetProfileOutput
fn clone(&self) -> GetProfileOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetProfileOutput
impl Debug for GetProfileOutput
source§impl PartialEq for GetProfileOutput
impl PartialEq for GetProfileOutput
source§fn eq(&self, other: &GetProfileOutput) -> bool
fn eq(&self, other: &GetProfileOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetProfileOutput
impl RequestId for GetProfileOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetProfileOutput
Auto Trait Implementations§
impl Freeze for GetProfileOutput
impl RefUnwindSafe for GetProfileOutput
impl Send for GetProfileOutput
impl Sync for GetProfileOutput
impl Unpin for GetProfileOutput
impl UnwindSafe for GetProfileOutput
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