interface UserPoolReplicaReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cognito.UserPoolReplicaReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscognito#UserPoolReplicaReference |
Java | software.amazon.awscdk.interfaces.cognito.UserPoolReplicaReference |
Python | aws_cdk.interfaces.aws_cognito.UserPoolReplicaReference |
TypeScript | aws-cdk-lib » interfaces » aws_cognito » UserPoolReplicaReference |
A reference to a UserPoolReplica resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as interfaces_cognito } from 'aws-cdk-lib/interfaces';
const userPoolReplicaReference: interfaces_cognito.UserPoolReplicaReference = {
regionName: 'regionName',
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| region | string | The RegionName of the UserPoolReplica resource. |
| user | string | The UserPoolId of the UserPoolReplica resource. |
regionName
Type:
string
The RegionName of the UserPoolReplica resource.
userPoolId
Type:
string
The UserPoolId of the UserPoolReplica resource.

.NET
Go
Java
Python
TypeScript