Interface CfnGlobalReplicationGroupPropsMixin.RegionalConfigurationProperty

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

@Stability(Stable) public static interface CfnGlobalReplicationGroupPropsMixin.RegionalConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A list of the replication groups.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.elasticache.*;
 RegionalConfigurationProperty regionalConfigurationProperty = RegionalConfigurationProperty.builder()
         .replicationGroupId("replicationGroupId")
         .replicationGroupRegion("replicationGroupRegion")
         .reshardingConfigurations(List.of(ReshardingConfigurationProperty.builder()
                 .nodeGroupId("nodeGroupId")
                 .preferredAvailabilityZones(List.of("preferredAvailabilityZones"))
                 .build()))
         .build();
 

See Also: