@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.788Z") @Stability(value=Stable) public interface SamlProviderProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
SamlProviderProps.Builder
A builder for
SamlProviderProps |
static class |
SamlProviderProps.Jsii$Proxy
An implementation for
SamlProviderProps |
| Modifier and Type | Method and Description |
|---|---|
static SamlProviderProps.Builder |
builder() |
SamlMetadataDocument |
getMetadataDocument()
An XML document generated by an identity provider (IdP) that supports SAML 2.0.
|
default String |
getName()
The name of the provider to create.
|
@Stability(value=Stable) @NotNull SamlMetadataDocument getMetadataDocument()
@Stability(value=Stable) @Nullable default String getName()
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
@Stability(value=Stable) static SamlProviderProps.Builder builder()
SamlProviderProps.Builder of SamlProviderPropsCopyright © 2022. All rights reserved.