Interface CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty

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

@Stability(Stable) public static interface CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty extends software.amazon.jsii.JsiiSerializable
A member of a Global datastore.

It contains the Replication Group Id, the Amazon region and the role of the replication group.

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.*;
 GlobalReplicationGroupMemberProperty globalReplicationGroupMemberProperty = GlobalReplicationGroupMemberProperty.builder()
         .replicationGroupId("replicationGroupId")
         .replicationGroupRegion("replicationGroupRegion")
         .role("role")
         .build();