interface IdentityCenterPrincipalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AccountAccess.CfnEntitlementPropsMixin.IdentityCenterPrincipalProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaccountaccess#CfnEntitlementPropsMixin_IdentityCenterPrincipalProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.accountaccess.CfnEntitlementPropsMixin.IdentityCenterPrincipalProperty |
Python | aws_cdk.cfn_property_mixins.aws_accountaccess.CfnEntitlementPropsMixin.IdentityCenterPrincipalProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_accountaccess » CfnEntitlementPropsMixin » 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/cfn-property-mixins';
const identityCenterPrincipalProperty: accountaccess.CfnEntitlementPropsMixin.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