interface IdentityCenterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AccountAccess.CfnApplication.IdentityCenterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaccountaccess#CfnApplication_IdentityCenterProperty |
Java | software.amazon.awscdk.services.accountaccess.CfnApplication.IdentityCenterProperty |
Python | aws_cdk.aws_accountaccess.CfnApplication.IdentityCenterProperty |
TypeScript | aws-cdk-lib » aws_accountaccess » CfnApplication » IdentityCenterProperty |
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 identityCenterProperty: accountaccess.CfnApplication.IdentityCenterProperty = {
instanceArn: 'instanceArn',
// the properties below are optional
applicationArn: 'applicationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The ARN of the Identity Center instance. |
| application | string | The ARN of the associated Identity Center application. |
instanceArn
Type:
string
The ARN of the Identity Center instance.
applicationArn?
Type:
string
(optional)
The ARN of the associated Identity Center application.

.NET
Go
Java
Python
TypeScript