Interface CfnEnvironment.FederationParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEnvironment.FederationParametersProperty.Jsii$Proxy
Enclosing class:
CfnEnvironment

@Stability(Stable) public static interface CfnEnvironment.FederationParametersProperty extends software.amazon.jsii.JsiiSerializable
Configuration information when authentication mode is FEDERATED.

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.*;
 FederationParametersProperty federationParametersProperty = FederationParametersProperty.builder()
         .applicationCallBackUrl("applicationCallBackUrl")
         .attributeMap(List.of(AttributeMapItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .federationProviderName("federationProviderName")
         .federationUrn("federationUrn")
         .samlMetadataDocument("samlMetadataDocument")
         .samlMetadataUrl("samlMetadataUrl")
         .build();
 
  • Method Details

    • getApplicationCallBackUrl

      @Stability(Stable) @Nullable default String getApplicationCallBackUrl()
      The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).
    • getAttributeMap

      @Stability(Stable) @Nullable default Object getAttributeMap()
      SAML attribute name and value.

      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.

    • getFederationProviderName

      @Stability(Stable) @Nullable default String getFederationProviderName()
      Name of the identity provider (IdP).
    • getFederationUrn

      @Stability(Stable) @Nullable default String getFederationUrn()
      The Uniform Resource Name (URN).

      Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.

    • getSamlMetadataDocument

      @Stability(Stable) @Nullable default String getSamlMetadataDocument()
      SAML 2.0 Metadata document from identity provider (IdP).
    • getSamlMetadataUrl

      @Stability(Stable) @Nullable default String getSamlMetadataUrl()
      Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).
    • builder

      @Stability(Stable) static CfnEnvironment.FederationParametersProperty.Builder builder()
      Returns:
      a CfnEnvironment.FederationParametersProperty.Builder of CfnEnvironment.FederationParametersProperty