SamlProviderProps
- class aws_cdk.aws_iam.SamlProviderProps(*, metadata_document, name=None)
Bases:
object
Properties for a SAML provider.
- Parameters:
metadata_document (
SamlMetadataDocument
) – 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.name (
Optional
[str
]) – The name of the provider to create. This parameter allows a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- Length must be between 1 and 128 characters. Default: - a CloudFormation generated name
- ExampleMetadata:
infused
Example:
provider = iam.SamlProvider(self, "Provider", metadata_document=iam.SamlMetadataDocument.from_file("/path/to/saml-metadata-document.xml") ) iam.Role(self, "Role", assumed_by=iam.SamlConsolePrincipal(provider) )
Attributes
- metadata_document
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.
- name
The name of the provider to create.
This parameter allows a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
Length must be between 1 and 128 characters.
- Default:
a CloudFormation generated name