interface ReshardingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnGlobalReplicationGroupPropsMixin.ReshardingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnGlobalReplicationGroupPropsMixin_ReshardingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnGlobalReplicationGroupPropsMixin.ReshardingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnGlobalReplicationGroupPropsMixin.ReshardingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnGlobalReplicationGroupPropsMixin » 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 { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const reshardingConfigurationProperty: elasticache_mixins.CfnGlobalReplicationGroupPropsMixin.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