#[non_exhaustive]pub struct CreateSamlProviderInput {
pub saml_metadata_document: Option<String>,
pub name: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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.
For more information, see About SAML 2.0-based federation in the IAM User Guide
name: Option<String>
The name of the provider to create.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
A list of tags that you want to attach to the new IAM SAML provider. Each tag consists of a key name and an associated value. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
If any one of the tags is invalid or if you exceed the allowed maximum number of tags, then the entire request fails and the resource is not created.
Implementations§
source§impl CreateSamlProviderInput
impl CreateSamlProviderInput
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.
For more information, see About SAML 2.0-based federation in the IAM User Guide
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the provider to create.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
A list of tags that you want to attach to the new IAM SAML provider. Each tag consists of a key name and an associated value. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
If any one of the tags is invalid or if you exceed the allowed maximum number of tags, then the entire request fails and the resource is not created.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateSamlProviderInput
impl CreateSamlProviderInput
sourcepub fn builder() -> CreateSamlProviderInputBuilder
pub fn builder() -> CreateSamlProviderInputBuilder
Creates a new builder-style object to manufacture CreateSamlProviderInput
.
Trait Implementations§
source§impl Clone for CreateSamlProviderInput
impl Clone for CreateSamlProviderInput
source§fn clone(&self) -> CreateSamlProviderInput
fn clone(&self) -> CreateSamlProviderInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateSamlProviderInput
impl Debug for CreateSamlProviderInput
source§impl PartialEq for CreateSamlProviderInput
impl PartialEq for CreateSamlProviderInput
source§fn eq(&self, other: &CreateSamlProviderInput) -> bool
fn eq(&self, other: &CreateSamlProviderInput) -> bool
self
and other
values to be equal, and is used
by ==
.