#[non_exhaustive]pub struct UpdateSamlProviderInput {
pub saml_metadata_document: Option<String>,
pub saml_provider_arn: Option<String>,
}
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.saml_metadata_document: Option<String>
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.
saml_provider_arn: Option<String>
The Amazon Resource Name (ARN) of the SAML provider to update.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
Implementations§
source§impl UpdateSamlProviderInput
impl UpdateSamlProviderInput
sourcepub fn saml_metadata_document(&self) -> Option<&str>
pub fn saml_metadata_document(&self) -> Option<&str>
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.
sourcepub fn saml_provider_arn(&self) -> Option<&str>
pub fn saml_provider_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the SAML provider to update.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
source§impl UpdateSamlProviderInput
impl UpdateSamlProviderInput
sourcepub fn builder() -> UpdateSamlProviderInputBuilder
pub fn builder() -> UpdateSamlProviderInputBuilder
Creates a new builder-style object to manufacture UpdateSamlProviderInput
.
Trait Implementations§
source§impl Clone for UpdateSamlProviderInput
impl Clone for UpdateSamlProviderInput
source§fn clone(&self) -> UpdateSamlProviderInput
fn clone(&self) -> UpdateSamlProviderInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateSamlProviderInput
impl Debug for UpdateSamlProviderInput
source§impl PartialEq for UpdateSamlProviderInput
impl PartialEq for UpdateSamlProviderInput
source§fn eq(&self, other: &UpdateSamlProviderInput) -> bool
fn eq(&self, other: &UpdateSamlProviderInput) -> bool
self
and other
values to be equal, and is used
by ==
.