interface ReshardingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnGlobalReplicationGroup_ReshardingConfigurationProperty |
Java | software.amazon.awscdk.services.elasticache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty |
Python | aws_cdk.aws_elasticache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty |
TypeScript | aws-cdk-lib » 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 { aws_elasticache as elasticache } from 'aws-cdk-lib';
const reshardingConfigurationProperty: elasticache.CfnGlobalReplicationGroup.ReshardingConfigurationProperty = {
nodeGroupId: 'nodeGroupId',
preferredAvailabilityZones: ['preferredAvailabilityZones'],
};
Properties
| Name | Type | Description |
|---|---|---|
| node | string | Either the ElastiCache 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 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
Go
Java
Python
TypeScript