interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html
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 cfnApplicationMixinProps: sso_mixins.CfnApplicationMixinProps = {
applicationProviderArn: 'applicationProviderArn',
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
portalOptions: {
signInOptions: {
applicationUrl: 'applicationUrl',
origin: 'origin',
},
visibility: 'visibility',
},
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ARN of the application provider for this application. |
| description? | string | The description of the application. |
| instance | string | The ARN of the instance of IAM Identity Center that is configured with this application. |
| name? | string | The name of the application. |
| portal | IResolvable | Portal | A structure that describes the options for the access portal associated with this application. |
| status? | string | The current status of the application in this instance of IAM Identity Center. |
| tags? | Cfn[] | Specifies tags to be attached to the application. |
applicationProviderArn?
Type:
string
(optional)
The ARN of the application provider for this application.
description?
Type:
string
(optional)
The description of the application.
instanceArn?
Type:
string
(optional)
The ARN of the instance of IAM Identity Center that is configured with this application.
name?
Type:
string
(optional)
The name of the application.
portalOptions?
Type:
IResolvable | Portal
(optional)
A structure that describes the options for the access portal associated with this application.
status?
Type:
string
(optional)
The current status of the application in this instance of IAM Identity Center.
tags?
Type:
Cfn[]
(optional)
Specifies tags to be attached to the application.

.NET
Go
Java
Python
TypeScript