interface CfnApplicationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AccountAccess.CfnApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaccountaccess#CfnApplicationProps |
Java | software.amazon.awscdk.services.accountaccess.CfnApplicationProps |
Python | aws_cdk.aws_accountaccess.CfnApplicationProps |
TypeScript | aws-cdk-lib » aws_accountaccess » CfnApplicationProps |
Properties for defining a CfnApplication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_accountaccess as accountaccess } from 'aws-cdk-lib';
const cfnApplicationProps: accountaccess.CfnApplicationProps = {
identitySource: {
identityCenter: {
instanceArn: 'instanceArn',
// the properties below are optional
applicationArn: 'applicationArn',
},
},
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | IResolvable | Identity | |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
identitySource
Type:
IResolvable | Identity
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript