interface IdentityCenterPrincipalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AccountAccess.CfnEntitlement.IdentityCenterPrincipalProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaccountaccess#CfnEntitlement_IdentityCenterPrincipalProperty |
Java | software.amazon.awscdk.services.accountaccess.CfnEntitlement.IdentityCenterPrincipalProperty |
Python | aws_cdk.aws_accountaccess.CfnEntitlement.IdentityCenterPrincipalProperty |
TypeScript | aws-cdk-lib » aws_accountaccess » CfnEntitlement » IdentityCenterPrincipalProperty |
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 identityCenterPrincipalProperty: accountaccess.CfnEntitlement.IdentityCenterPrincipalProperty = {
groupId: 'groupId',
userId: 'userId',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The ID of the group. |
| user | string | The ID of the user. |
groupId?
Type:
string
(optional)
The ID of the group.
userId?
Type:
string
(optional)
The ID of the user.

.NET
Go
Java
Python
TypeScript