interface ReshardingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty |
Java | software.amazon.awscdk.services.elasticache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty |
Python | aws_cdk.aws_elasticache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty |
TypeScript | @aws-cdk/aws-elasticache » CfnGlobalReplicationGroup » ReshardingConfigurationProperty |
A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.
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 reshardingConfigurationProperty: elasticache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty = {
nodeGroupId: 'nodeGroupId',
preferredAvailabilityZones: ['preferredAvailabilityZones'],
};
Properties
| Name | Type | Description |
|---|---|---|
| node | string | Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to. |
| preferred | string[] | A list of preferred availability zones for the nodes in this cluster. |
nodeGroupId?
Type:
string
(optional)
Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to.
preferredAvailabilityZones?
Type:
string[]
(optional)
A list of preferred availability zones for the nodes in this cluster.

.NET
Java
Python
TypeScript