interface GlobalTableWitnessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB.CfnGlobalTablePropsMixin.GlobalTableWitnessProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdynamodb#CfnGlobalTablePropsMixin_GlobalTableWitnessProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dynamodb.CfnGlobalTablePropsMixin.GlobalTableWitnessProperty |
Python | aws_cdk.cfn_property_mixins.aws_dynamodb.CfnGlobalTablePropsMixin.GlobalTableWitnessProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dynamodb » 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 { aws_dynamodb as dynamodb } from '@aws-cdk/cfn-property-mixins';
const globalTableWitnessProperty: dynamodb.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