Interface FederationParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FederationParameters.Builder,FederationParameters>,SdkBuilder<FederationParameters.Builder,FederationParameters>,SdkPojo
- Enclosing class:
- FederationParameters
public static interface FederationParameters.Builder extends SdkPojo, CopyableBuilder<FederationParameters.Builder,FederationParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FederationParameters.BuilderapplicationCallBackURL(String applicationCallBackURL)The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).FederationParameters.BuilderattributeMap(Map<String,String> attributeMap)SAML attribute name and value.FederationParameters.BuilderfederationProviderName(String federationProviderName)Name of the identity provider (IdP).FederationParameters.BuilderfederationURN(String federationURN)The Uniform Resource Name (URN).FederationParameters.BuildersamlMetadataDocument(String samlMetadataDocument)SAML 2.0 Metadata document from identity provider (IdP).FederationParameters.BuildersamlMetadataURL(String samlMetadataURL)Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
samlMetadataDocument
FederationParameters.Builder samlMetadataDocument(String samlMetadataDocument)
SAML 2.0 Metadata document from identity provider (IdP).
- Parameters:
samlMetadataDocument- SAML 2.0 Metadata document from identity provider (IdP).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
samlMetadataURL
FederationParameters.Builder samlMetadataURL(String samlMetadataURL)
Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).
- Parameters:
samlMetadataURL- Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationCallBackURL
FederationParameters.Builder applicationCallBackURL(String applicationCallBackURL)
The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).
- Parameters:
applicationCallBackURL- The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
federationURN
FederationParameters.Builder federationURN(String federationURN)
The Uniform Resource Name (URN). Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.
- Parameters:
federationURN- The Uniform Resource Name (URN). Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
federationProviderName
FederationParameters.Builder federationProviderName(String federationProviderName)
Name of the identity provider (IdP).
- Parameters:
federationProviderName- Name of the identity provider (IdP).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeMap
FederationParameters.Builder attributeMap(Map<String,String> attributeMap)
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.- Parameters:
attributeMap- SAML attribute name and value. The name must always beEmailand 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:
- Returns a reference to this object so that method calls can be chained together.
-
-