interface OpenIdConnectGroupConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VerifiedPermissions.Mixins.CfnIdentitySourcePropsMixin.OpenIdConnectGroupConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsverifiedpermissions/mixins#CfnIdentitySourcePropsMixin_OpenIdConnectGroupConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.verifiedpermissions.mixins.CfnIdentitySourcePropsMixin.OpenIdConnectGroupConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_verifiedpermissions.mixins.CfnIdentitySourcePropsMixin.OpenIdConnectGroupConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_verifiedpermissions » mixins » CfnIdentitySourcePropsMixin » OpenIdConnectGroupConfigurationProperty |
The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to.
For example, this object can map the contents of a groups claim to MyCorp::UserGroup .
This data type is part of a OpenIdConnectConfiguration structure, which is a parameter of CreateIdentitySource .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as verifiedpermissions_mixins } from '@aws-cdk/mixins-preview/aws-verifiedpermissions';
const openIdConnectGroupConfigurationProperty: verifiedpermissions_mixins.CfnIdentitySourcePropsMixin.OpenIdConnectGroupConfigurationProperty = {
groupClaim: 'groupClaim',
groupEntityType: 'groupEntityType',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The token claim that you want Verified Permissions to interpret as group membership. |
| group | string | The policy store entity type that you want to map your users' group claim to. |
groupClaim?
Type:
string
(optional)
The token claim that you want Verified Permissions to interpret as group membership.
For example, groups .
groupEntityType?
Type:
string
(optional)
The policy store entity type that you want to map your users' group claim to.
For example, MyCorp::UserGroup . A group entity type is an entity that can have a user entity type as a member.

.NET
Go
Java
Python
TypeScript