#[non_exhaustive]pub struct AuthenticationProfileSummary {
pub id: Option<String>,
pub arn: Option<String>,
pub name: Option<String>,
pub is_default: bool,
pub last_modified_time: Option<DateTime>,
pub last_modified_region: Option<String>,
}
Expand description
This API is in preview release for Amazon Connect and is subject to change. To request access to this API, contact Amazon Web Services Support.
A summary of a given authentication profile.
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.id: Option<String>
The unique identifier of the authentication profile.
arn: Option<String>
The Amazon Resource Name (ARN) of the authentication profile summary.
name: Option<String>
The name of the authentication profile summary.
is_default: bool
Shows whether the authentication profile is the default authentication profile for the Amazon Connect instance. The default authentication profile applies to all agents in an Amazon Connect instance, unless overridden by another authentication profile.
last_modified_time: Option<DateTime>
The timestamp when the authentication profile summary was last modified.
last_modified_region: Option<String>
The Amazon Web Services Region when the authentication profile summary was last modified.
Implementations§
source§impl AuthenticationProfileSummary
impl AuthenticationProfileSummary
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the authentication profile summary.
sourcepub fn is_default(&self) -> bool
pub fn is_default(&self) -> bool
Shows whether the authentication profile is the default authentication profile for the Amazon Connect instance. The default authentication profile applies to all agents in an Amazon Connect instance, unless overridden by another authentication profile.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The timestamp when the authentication profile summary was last modified.
sourcepub fn last_modified_region(&self) -> Option<&str>
pub fn last_modified_region(&self) -> Option<&str>
The Amazon Web Services Region when the authentication profile summary was last modified.
source§impl AuthenticationProfileSummary
impl AuthenticationProfileSummary
sourcepub fn builder() -> AuthenticationProfileSummaryBuilder
pub fn builder() -> AuthenticationProfileSummaryBuilder
Creates a new builder-style object to manufacture AuthenticationProfileSummary
.
Trait Implementations§
source§impl Clone for AuthenticationProfileSummary
impl Clone for AuthenticationProfileSummary
source§fn clone(&self) -> AuthenticationProfileSummary
fn clone(&self) -> AuthenticationProfileSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AuthenticationProfileSummary
impl Debug for AuthenticationProfileSummary
source§impl PartialEq for AuthenticationProfileSummary
impl PartialEq for AuthenticationProfileSummary
source§fn eq(&self, other: &AuthenticationProfileSummary) -> bool
fn eq(&self, other: &AuthenticationProfileSummary) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuthenticationProfileSummary
Auto Trait Implementations§
impl Freeze for AuthenticationProfileSummary
impl RefUnwindSafe for AuthenticationProfileSummary
impl Send for AuthenticationProfileSummary
impl Sync for AuthenticationProfileSummary
impl Unpin for AuthenticationProfileSummary
impl UnwindSafe for AuthenticationProfileSummary
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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