Struct aws_sdk_ssoadmin::types::AuthenticationMethodItem
source · #[non_exhaustive]pub struct AuthenticationMethodItem {
pub authentication_method_type: Option<AuthenticationMethodType>,
pub authentication_method: Option<AuthenticationMethod>,
}
Expand description
A structure that describes an authentication method and its type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.authentication_method_type: Option<AuthenticationMethodType>
The type of authentication that is used by this method.
authentication_method: Option<AuthenticationMethod>
A structure that describes an authentication method. The contents of this structure is determined by the AuthenticationMethodType
.
Implementations§
source§impl AuthenticationMethodItem
impl AuthenticationMethodItem
sourcepub fn authentication_method_type(&self) -> Option<&AuthenticationMethodType>
pub fn authentication_method_type(&self) -> Option<&AuthenticationMethodType>
The type of authentication that is used by this method.
sourcepub fn authentication_method(&self) -> Option<&AuthenticationMethod>
pub fn authentication_method(&self) -> Option<&AuthenticationMethod>
A structure that describes an authentication method. The contents of this structure is determined by the AuthenticationMethodType
.
source§impl AuthenticationMethodItem
impl AuthenticationMethodItem
sourcepub fn builder() -> AuthenticationMethodItemBuilder
pub fn builder() -> AuthenticationMethodItemBuilder
Creates a new builder-style object to manufacture AuthenticationMethodItem
.
Trait Implementations§
source§impl Clone for AuthenticationMethodItem
impl Clone for AuthenticationMethodItem
source§fn clone(&self) -> AuthenticationMethodItem
fn clone(&self) -> AuthenticationMethodItem
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AuthenticationMethodItem
impl Debug for AuthenticationMethodItem
source§impl PartialEq for AuthenticationMethodItem
impl PartialEq for AuthenticationMethodItem
source§fn eq(&self, other: &AuthenticationMethodItem) -> bool
fn eq(&self, other: &AuthenticationMethodItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuthenticationMethodItem
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationMethodItem
impl Send for AuthenticationMethodItem
impl Sync for AuthenticationMethodItem
impl Unpin for AuthenticationMethodItem
impl UnwindSafe for AuthenticationMethodItem
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.