interface MultiRegionPropertiesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_dsql.CfnCluster.MultiRegionPropertiesProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdsql#CfnCluster_MultiRegionPropertiesProperty | 
|  Java | software.amazon.awscdk.services.dsql.CfnCluster.MultiRegionPropertiesProperty | 
|  Python | aws_cdk.aws_dsql.CfnCluster.MultiRegionPropertiesProperty | 
|  TypeScript | aws-cdk-lib»aws_dsql»CfnCluster»MultiRegionPropertiesProperty | 
Defines the structure for multi-Region cluster configurations, containing the witness Region and peered cluster settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dsql as dsql } from 'aws-cdk-lib';
const multiRegionPropertiesProperty: dsql.CfnCluster.MultiRegionPropertiesProperty = {
  clusters: ['clusters'],
  witnessRegion: 'witnessRegion',
};
Properties
| Name | Type | Description | 
|---|---|---|
| clusters? | string[] | The set of peered clusters that form the multi-Region cluster configuration. | 
| witness | string | The Region that serves as the witness Region for a multi-Region cluster. | 
clusters?
Type:
string[]
(optional)
The set of peered clusters that form the multi-Region cluster configuration.
Each peered cluster represents a database instance in a different Region.
witnessRegion?
Type:
string
(optional)
The Region that serves as the witness Region for a multi-Region cluster.
The witness Region helps maintain cluster consistency and quorum.
