Class SamlProviderProps
Properties for a SAML provider.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SamlProviderProps : Object, ISamlProviderProps
Syntax (vb)
Public Class SamlProviderProps
Inherits Object
Implements ISamlProviderProps
Remarks
ExampleMetadata: infused
Examples
var provider = new SamlProvider(this, "Provider", new SamlProviderProps {
MetadataDocument = SamlMetadataDocument.FromFile("/path/to/saml-metadata-document.xml")
});
new Role(this, "Role", new RoleProps {
AssumedBy = new SamlConsolePrincipal(provider)
});
Synopsis
Constructors
SamlProviderProps() |
Properties
MetadataDocument | 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. |
Constructors
SamlProviderProps()
public SamlProviderProps()
Properties
MetadataDocument
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.
public SamlMetadataDocument MetadataDocument { get; set; }
Property Value
Name
The name of the provider to create.
public string Name { get; set; }
Property Value
System.String
Remarks
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