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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironment.FederationParametersPropertystatic final classAn implementation forCfnEnvironment.FederationParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).default ObjectSAML attribute name and value.default StringName of the identity provider (IdP).default StringThe Uniform Resource Name (URN).default StringSAML 2.0 Metadata document from identity provider (IdP).default StringProvide the metadata URL from your SAML 2.0 compliant identity provider (IdP).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationCallBackUrl
The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).- See Also:
-
getAttributeMap
SAML attribute name and value.The name must always be
Emailand the value should be set to the attribute definition in which user email is set. For example, name would beEmailand valuehttp://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress. Please check your SAML 2.0 compliant identity provider (IdP) documentation for details.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEnvironment.AttributeMapItemsProperty>- See Also:
-
getFederationProviderName
Name of the identity provider (IdP).- See Also:
-
getFederationUrn
The Uniform Resource Name (URN).Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.
- See Also:
-
getSamlMetadataDocument
SAML 2.0 Metadata document from identity provider (IdP).- See Also:
-
getSamlMetadataUrl
Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).- See Also:
-
builder
-