Struct rusoto_iam::CreateSAMLProviderRequest[][src]

pub struct CreateSAMLProviderRequest {
    pub name: String,
    pub saml_metadata_document: String,
}

Fields

The name of the provider to create.

This parameter allows (per 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: _+=,.@-

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

Trait Implementations

impl Default for CreateSAMLProviderRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateSAMLProviderRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateSAMLProviderRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateSAMLProviderRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations