interface GlobalTableWitnessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnGlobalTablePropsMixin.GlobalTableWitnessProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnGlobalTablePropsMixin_GlobalTableWitnessProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnGlobalTablePropsMixin.GlobalTableWitnessProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnGlobalTablePropsMixin.GlobalTableWitnessProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnGlobalTablePropsMixin » GlobalTableWitnessProperty |
The witness Region for the MRSC global table.
A MRSC global table can be configured with either three replicas, or with two replicas and one witness.
The witness must be in a different Region than the replicas and within the same Region set:
- US Region set: US East (N. Virginia), US East (Ohio), US West (Oregon)
- EU Region set: Europe (Ireland), Europe (London), Europe (Paris), Europe (Frankfurt)
- AP Region set: Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Osaka)
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const globalTableWitnessProperty: dynamodb_mixins.CfnGlobalTablePropsMixin.GlobalTableWitnessProperty = {
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| region? | string | The name of the AWS Region that serves as a witness for the MRSC global table. |
region?
Type:
string
(optional)
The name of the AWS Region that serves as a witness for the MRSC global table.

.NET
Go
Java
Python
TypeScript