Interface CfnGlobalReplicationGroup.RegionalConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGlobalReplicationGroup.RegionalConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnGlobalReplicationGroup
@Stability(Stable)
public static interface CfnGlobalReplicationGroup.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.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGlobalReplicationGroup.RegionalConfigurationPropertystatic final classAn implementation forCfnGlobalReplicationGroup.RegionalConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReplicationGroupId
The name of the secondary cluster.- See Also:
-
getReplicationGroupRegion
The Amazon region where the cluster is stored.- See Also:
-
getReshardingConfigurations
A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnGlobalReplicationGroup.ReshardingConfigurationProperty>- See Also:
-
builder
-