interface KeyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPool.KeyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPool_KeyConfigurationProperty |
Java | software.amazon.awscdk.services.cognito.CfnUserPool.KeyConfigurationProperty |
Python | aws_cdk.aws_cognito.CfnUserPool.KeyConfigurationProperty |
TypeScript | aws-cdk-lib » aws_cognito » CfnUserPool » KeyConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const keyConfigurationProperty: cognito.CfnUserPool.KeyConfigurationProperty = {
keyType: 'keyType',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | |
| kms | string |
keyType?
Type:
string
(optional)
kmsKeyArn?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript