interface SignInOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnApplicationPropsMixin.SignInOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnApplicationPropsMixin_SignInOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnApplicationPropsMixin.SignInOptionsProperty |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnApplicationPropsMixin.SignInOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » CfnApplicationPropsMixin » SignInOptionsProperty |
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 { mixins as sso_mixins } from '@aws-cdk/mixins-preview/aws-sso';
const signInOptionsProperty: sso_mixins.CfnApplicationPropsMixin.SignInOptionsProperty = {
applicationUrl: 'applicationUrl',
origin: 'origin',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The URL that accepts authentication requests for an application. |
| origin? | string | This determines how IAM Identity Center navigates the user to the target application. |
applicationUrl?
Type:
string
(optional)
The URL that accepts authentication requests for an application.
This is a required parameter if the Origin parameter is APPLICATION .
origin?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript