Interface CfnApplication.SignInOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.SignInOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.SignInOptionsProperty
extends software.amazon.jsii.JsiiSerializable
A structure that describes the sign-in options for an application portal.
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.sso.*;
SignInOptionsProperty signInOptionsProperty = SignInOptionsProperty.builder()
.origin("origin")
// the properties below are optional
.applicationUrl("applicationUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.SignInOptionsPropertystatic final classAn implementation forCfnApplication.SignInOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrigin
This determines how IAM Identity Center navigates the user to the target application.It can be one of the following values:
APPLICATION: IAM Identity Center redirects the customer to the configuredApplicationUrl.IDENTITY_CENTER: IAM Identity Center uses SAML identity-provider initiated authentication to sign the customer directly into a SAML-based application.
- See Also:
-
getApplicationUrl
The URL that accepts authentication requests for an application.This is a required parameter if the
Originparameter isAPPLICATION.- See Also:
-
builder
-