Interface CfnGlobalReplicationGroup.ReshardingConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGlobalReplicationGroup.ReshardingConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnGlobalReplicationGroup

@Stability(Stable) public static interface CfnGlobalReplicationGroup.ReshardingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.elasticache.*;
 ReshardingConfigurationProperty reshardingConfigurationProperty = ReshardingConfigurationProperty.builder()
         .nodeGroupId("nodeGroupId")
         .preferredAvailabilityZones(List.of("preferredAvailabilityZones"))
         .build();
 

See Also: