interface RegionalConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.ElastiCache.CfnGlobalReplicationGroup.RegionalConfigurationProperty | 
  Java | software.amazon.awscdk.services.elasticache.CfnGlobalReplicationGroup.RegionalConfigurationProperty | 
  Python | aws_cdk.aws_elasticache.CfnGlobalReplicationGroup.RegionalConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-elasticache » CfnGlobalReplicationGroup » 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 * as elasticache from '@aws-cdk/aws-elasticache';
const regionalConfigurationProperty: elasticache.CfnGlobalReplicationGroup.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
 Java
 Python
 TypeScript