Struct aws_sdk_ssoadmin::operation::put_application_authentication_method::PutApplicationAuthenticationMethodInput
source · #[non_exhaustive]pub struct PutApplicationAuthenticationMethodInput {
pub application_arn: Option<String>,
pub authentication_method_type: Option<AuthenticationMethodType>,
pub authentication_method: Option<AuthenticationMethod>,
}
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.application_arn: Option<String>
Specifies the ARN of the application with the authentication method to add or update.
authentication_method_type: Option<AuthenticationMethodType>
Specifies the type of the authentication method that you want to add or update.
authentication_method: Option<AuthenticationMethod>
Specifies a structure that describes the authentication method to add or update. The structure type you provide is determined by the AuthenticationMethodType
parameter.
Implementations§
source§impl PutApplicationAuthenticationMethodInput
impl PutApplicationAuthenticationMethodInput
sourcepub fn application_arn(&self) -> Option<&str>
pub fn application_arn(&self) -> Option<&str>
Specifies the ARN of the application with the authentication method to add or update.
sourcepub fn authentication_method_type(&self) -> Option<&AuthenticationMethodType>
pub fn authentication_method_type(&self) -> Option<&AuthenticationMethodType>
Specifies the type of the authentication method that you want to add or update.
sourcepub fn authentication_method(&self) -> Option<&AuthenticationMethod>
pub fn authentication_method(&self) -> Option<&AuthenticationMethod>
Specifies a structure that describes the authentication method to add or update. The structure type you provide is determined by the AuthenticationMethodType
parameter.
source§impl PutApplicationAuthenticationMethodInput
impl PutApplicationAuthenticationMethodInput
sourcepub fn builder() -> PutApplicationAuthenticationMethodInputBuilder
pub fn builder() -> PutApplicationAuthenticationMethodInputBuilder
Creates a new builder-style object to manufacture PutApplicationAuthenticationMethodInput
.
Trait Implementations§
source§impl Clone for PutApplicationAuthenticationMethodInput
impl Clone for PutApplicationAuthenticationMethodInput
source§fn clone(&self) -> PutApplicationAuthenticationMethodInput
fn clone(&self) -> PutApplicationAuthenticationMethodInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for PutApplicationAuthenticationMethodInput
impl PartialEq for PutApplicationAuthenticationMethodInput
source§fn eq(&self, other: &PutApplicationAuthenticationMethodInput) -> bool
fn eq(&self, other: &PutApplicationAuthenticationMethodInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutApplicationAuthenticationMethodInput
Auto Trait Implementations§
impl Freeze for PutApplicationAuthenticationMethodInput
impl RefUnwindSafe for PutApplicationAuthenticationMethodInput
impl Send for PutApplicationAuthenticationMethodInput
impl Sync for PutApplicationAuthenticationMethodInput
impl Unpin for PutApplicationAuthenticationMethodInput
impl UnwindSafe for PutApplicationAuthenticationMethodInput
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