interface RegionalConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.ElastiCache.CfnGlobalReplicationGroup.RegionalConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnGlobalReplicationGroup_RegionalConfigurationProperty | 
  Java | software.amazon.awscdk.services.elasticache.CfnGlobalReplicationGroup.RegionalConfigurationProperty | 
  Python | aws_cdk.aws_elasticache.CfnGlobalReplicationGroup.RegionalConfigurationProperty | 
  TypeScript  | aws-cdk-lib » 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 { aws_elasticache as elasticache } from 'aws-cdk-lib';
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
 Go
 Java
 Python
 TypeScript