interface CfnUserPoolReplicaProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPoolReplicaProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPoolReplicaProps |
Java | software.amazon.awscdk.services.cognito.CfnUserPoolReplicaProps |
Python | aws_cdk.aws_cognito.CfnUserPoolReplicaProps |
TypeScript | aws-cdk-lib » aws_cognito » CfnUserPoolReplicaProps |
Properties for defining a CfnUserPoolReplica.
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 cfnUserPoolReplicaProps: cognito.CfnUserPoolReplicaProps = {
regionName: 'regionName',
userPoolId: 'userPoolId',
// the properties below are optional
userPoolTagsAtCreate: {
userPoolTagsAtCreateKey: 'userPoolTagsAtCreate',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| region | string | |
| user | string | |
| user | { [string]: string } |
regionName
Type:
string
userPoolId
Type:
string
userPoolTagsAtCreate?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript