interface CfnApplicationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSO.CfnApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssso#CfnApplicationProps |
Java | software.amazon.awscdk.services.sso.CfnApplicationProps |
Python | aws_cdk.aws_sso.CfnApplicationProps |
TypeScript | aws-cdk-lib » aws_sso » CfnApplicationProps |
Properties for defining a CfnApplication.
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 { aws_sso as sso } from 'aws-cdk-lib';
const cfnApplicationProps: sso.CfnApplicationProps = {
applicationProviderArn: 'applicationProviderArn',
instanceArn: 'instanceArn',
name: 'name',
// the properties below are optional
description: 'description',
portalOptions: {
signInOptions: {
origin: 'origin',
// the properties below are optional
applicationUrl: 'applicationUrl',
},
visibility: 'visibility',
},
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ARN of the application provider for this 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. |
| description? | string | The description 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
The ARN of the application provider for this application.
instanceArn
Type:
string
The ARN of the instance of IAM Identity Center that is configured with this application.
name
Type:
string
The name of the application.
description?
Type:
string
(optional)
The description 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