aws-cdk-lib.aws_verifiedpermissions.CfnIdentitySource.IdentitySourceConfigurationProperty

interface IdentitySourceConfigurationProperty

LanguageType name
.NETAmazon.CDK.aws_verifiedpermissions.CfnIdentitySource.IdentitySourceConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsverifiedpermissions#CfnIdentitySource_IdentitySourceConfigurationProperty
Javaservices.verifiedpermissions.CfnIdentitySource.IdentitySourceConfigurationProperty
Pythonaws_cdk.aws_verifiedpermissions.CfnIdentitySource.IdentitySourceConfigurationProperty
TypeScript aws-cdk-lib » aws_verifiedpermissions » CfnIdentitySource » IdentitySourceConfigurationProperty

A structure that contains configuration information used when creating or updating a new identity source.

At this time, the only valid member of this structure is a Amazon Cognito user pool configuration.

You must specify a userPoolArn , and optionally, a ClientId .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_verifiedpermissions as verifiedpermissions } from 'aws-cdk-lib';
const identitySourceConfigurationProperty: verifiedpermissions.CfnIdentitySource.IdentitySourceConfigurationProperty = {
  cognitoUserPoolConfiguration: {
    userPoolArn: 'userPoolArn',

    // the properties below are optional
    clientIds: ['clientIds'],
  },
};

Properties

NameTypeDescription
cognitoUserPoolConfigurationIResolvable | CognitoUserPoolConfigurationPropertyA structure that contains configuration information used when creating or updating an identity source that represents a connection to an Amazon Cognito user pool used as an identity provider for Verified Permissions .

cognitoUserPoolConfiguration

Type: IResolvable | CognitoUserPoolConfigurationProperty

A structure that contains configuration information used when creating or updating an identity source that represents a connection to an Amazon Cognito user pool used as an identity provider for Verified Permissions .