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 ==
.