interface RegionalConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnGlobalReplicationGroupPropsMixin.RegionalConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnGlobalReplicationGroupPropsMixin_RegionalConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnGlobalReplicationGroupPropsMixin.RegionalConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnGlobalReplicationGroupPropsMixin.RegionalConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnGlobalReplicationGroupPropsMixin » RegionalConfigurationProperty |
A list of the replication groups.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const regionalConfigurationProperty: elasticache_mixins.CfnGlobalReplicationGroupPropsMixin.RegionalConfigurationProperty = {
replicationGroupId: 'replicationGroupId',
replicationGroupRegion: 'replicationGroupRegion',
reshardingConfigurations: [{
nodeGroupId: 'nodeGroupId',
preferredAvailabilityZones: ['preferredAvailabilityZones'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| replication | string | The name of the secondary cluster. |
| replication | string | The Amazon region where the cluster is stored. |
| resharding | IResolvable | (IResolvable | Resharding)[] | A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster. |
replicationGroupId?
Type:
string
(optional)
The name of the secondary cluster.
replicationGroupRegion?
Type:
string
(optional)
The Amazon region where the cluster is stored.
reshardingConfigurations?
Type:
IResolvable | (IResolvable | Resharding)[]
(optional)
A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.

.NET
Go
Java
Python
TypeScript