Interface SamlProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SamlProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.373Z")
@Stability(Stable)
public interface SamlProviderProps
extends software.amazon.jsii.JsiiSerializable
Properties for a SAML provider.
Example:
SamlProvider provider = SamlProvider.Builder.create(this, "Provider")
.metadataDocument(SamlMetadataDocument.fromFile("/path/to/saml-metadata-document.xml"))
.build();
Role.Builder.create(this, "Role")
.assumedBy(new SamlConsolePrincipal(provider))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSamlProviderPropsstatic final classAn implementation forSamlProviderProps -
Method Summary
Modifier and TypeMethodDescriptionstatic SamlProviderProps.Builderbuilder()An XML document generated by an identity provider (IdP) that supports SAML 2.0.default StringgetName()The name of the provider to create.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMetadataDocument
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. -
getName
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
-
builder
- Returns:
- a
SamlProviderProps.BuilderofSamlProviderProps
-