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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReplicationGroupId
The replication group id of the Global datastore member.- See Also:
-
getReplicationGroupRegion
The Amazon region of the Global datastore member.- See Also:
-
getRole
Indicates the role of the replication group,PRIMARY
orSECONDARY
.- See Also:
-
builder
@Stability(Stable) static CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty.Builder builder()
-