@Stability(value=Stable)
public static interface CfnEnvironment.FederationParametersProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.finspace.*;
Object attributeMap;
FederationParametersProperty federationParametersProperty = FederationParametersProperty.builder()
.applicationCallBackUrl("applicationCallBackUrl")
.attributeMap(attributeMap)
.federationProviderName("federationProviderName")
.federationUrn("federationUrn")
.samlMetadataDocument("samlMetadataDocument")
.samlMetadataUrl("samlMetadataUrl")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEnvironment.FederationParametersProperty.Builder
A builder for
CfnEnvironment.FederationParametersProperty |
static class |
CfnEnvironment.FederationParametersProperty.Jsii$Proxy
An implementation for
CfnEnvironment.FederationParametersProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEnvironment.FederationParametersProperty.Builder |
builder() |
default String |
getApplicationCallBackUrl()
The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).
|
default Object |
getAttributeMap()
SAML attribute name and value.
|
default String |
getFederationProviderName()
Name of the identity provider (IdP).
|
default String |
getFederationUrn()
The Uniform Resource Name (URN).
|
default String |
getSamlMetadataDocument()
SAML 2.0 Metadata document from identity provider (IdP).
|
default String |
getSamlMetadataUrl()
Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).
|
@Stability(value=Stable) @Nullable default String getApplicationCallBackUrl()
@Stability(value=Stable) @Nullable default Object getAttributeMap()
The name must always be Email and the value should be set to the attribute definition in which user email is set. For example, name would be Email and value http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress . Please check your SAML 2.0 compliant identity provider (IdP) documentation for details.
@Stability(value=Stable) @Nullable default String getFederationProviderName()
@Stability(value=Stable) @Nullable default String getFederationUrn()
Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.
@Stability(value=Stable) @Nullable default String getSamlMetadataDocument()
@Stability(value=Stable) @Nullable default String getSamlMetadataUrl()
@Stability(value=Stable) static CfnEnvironment.FederationParametersProperty.Builder builder()
Copyright © 2022. All rights reserved.