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