interface MultiRegionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DSQL.CfnClusterPropsMixin.MultiRegionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdsql#CfnClusterPropsMixin_MultiRegionPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dsql.CfnClusterPropsMixin.MultiRegionPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_dsql.CfnClusterPropsMixin.MultiRegionPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dsql » CfnClusterPropsMixin » 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/cfn-property-mixins';
const multiRegionPropertiesProperty: dsql.CfnClusterPropsMixin.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.

.NET
Go
Java
Python
TypeScript