interface CfnIdentitySourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VerifiedPermissions.Mixins.CfnIdentitySourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsverifiedpermissions/mixins#CfnIdentitySourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.verifiedpermissions.mixins.CfnIdentitySourceMixinProps |
Python | aws_cdk.mixins_preview.aws_verifiedpermissions.mixins.CfnIdentitySourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_verifiedpermissions » mixins » CfnIdentitySourceMixinProps |
Properties for CfnIdentitySourcePropsMixin.
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 cfnIdentitySourceMixinProps: verifiedpermissions_mixins.CfnIdentitySourceMixinProps = {
configuration: {
cognitoUserPoolConfiguration: {
clientIds: ['clientIds'],
groupConfiguration: {
groupEntityType: 'groupEntityType',
},
userPoolArn: 'userPoolArn',
},
openIdConnectConfiguration: {
entityIdPrefix: 'entityIdPrefix',
groupConfiguration: {
groupClaim: 'groupClaim',
groupEntityType: 'groupEntityType',
},
issuer: 'issuer',
tokenSelection: {
accessTokenOnly: {
audiences: ['audiences'],
principalIdClaim: 'principalIdClaim',
},
identityTokenOnly: {
clientIds: ['clientIds'],
principalIdClaim: 'principalIdClaim',
},
},
},
},
policyStoreId: 'policyStoreId',
principalEntityType: 'principalEntityType',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration? | IResolvable | Identity | Contains configuration information used when creating a new identity source. |
| policy | string | Specifies the ID of the policy store in which you want to store this identity source. |
| principal | string | Specifies the namespace and data type of the principals generated for identities authenticated by the new identity source. |
configuration?
Type:
IResolvable | Identity
(optional)
Contains configuration information used when creating a new identity source.
policyStoreId?
Type:
string
(optional)
Specifies the ID of the policy store in which you want to store this identity source.
Only policies and requests made using this policy store can reference identities from the identity provider configured in the new identity source.
principalEntityType?
Type:
string
(optional)
Specifies the namespace and data type of the principals generated for identities authenticated by the new identity source.

.NET
Go
Java
Python
TypeScript