interface PortalOptionsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSO.CfnApplicationPropsMixin.PortalOptionsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssso#CfnApplicationPropsMixin_PortalOptionsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sso.CfnApplicationPropsMixin.PortalOptionsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sso.CfnApplicationPropsMixin.PortalOptionsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sso » CfnApplicationPropsMixin » 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/cfn-property-mixins';
const portalOptionsConfigurationProperty: sso.CfnApplicationPropsMixin.PortalOptionsConfigurationProperty = {
signInOptions: {
applicationUrl: 'applicationUrl',
origin: 'origin',
},
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