interface PortalOptionsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSO.CfnApplication.PortalOptionsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssso#CfnApplication_PortalOptionsConfigurationProperty |
Java | software.amazon.awscdk.services.sso.CfnApplication.PortalOptionsConfigurationProperty |
Python | aws_cdk.aws_sso.CfnApplication.PortalOptionsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_sso » CfnApplication » PortalOptionsConfigurationProperty |
A structure that describes the options for the portal associated with an application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sso as sso } from 'aws-cdk-lib';
const portalOptionsConfigurationProperty: sso.CfnApplication.PortalOptionsConfigurationProperty = {
signInOptions: {
origin: 'origin',
// the properties below are optional
applicationUrl: 'applicationUrl',
},
visibility: 'visibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| sign | IResolvable | Sign | A structure that describes the sign-in options for the access portal. |
| visibility? | string | Indicates whether this application is visible in the access portal. |
signInOptions?
Type:
IResolvable | Sign
(optional)
A structure that describes the sign-in options for the access portal.
visibility?
Type:
string
(optional)
Indicates whether this application is visible in the access portal.

.NET
Go
Java
Python
TypeScript