Values.GlobalReplicationGroupSourceConsists of a primary cluster that accepts writes and an associated secondary cluster that resides in a different Amazon region. The secondary cluster accepts only reads. The primary cluster automatically replicates updates to the secondary cluster. The GlobalReplicationGroupIdSuffix represents the name of the Global datastore, which is what you use to associate a secondary cluster.
type nonrec t = {globalReplicationGroupId : String_.t option;The name of the Global datastore
*)globalReplicationGroupDescription : String_.t option;The optional description of the Global datastore
*)status : String_.t option;The status of the Global datastore
*)cacheNodeType : String_.t option;The cache node type of the Global datastore
*)engine : String_.t option;The ElastiCache engine. For Valkey or Redis OSS only.
*)engineVersion : String_.t option;The ElastiCache engine version.
*)members : GlobalReplicationGroupMemberList.t option;The replication groups that comprise the Global datastore.
*)clusterEnabled : BooleanOptional.t option;A flag that indicates whether the Global datastore is cluster enabled.
*)globalNodeGroups : GlobalNodeGroupList.t option;Indicates the slot configuration and global identifier for each slice group.
*)authTokenEnabled : BooleanOptional.t option;A flag that enables using an AuthToken (password) when issuing Valkey or Redis OSS commands. Default: false
*)transitEncryptionEnabled : BooleanOptional.t option;A flag that enables in-transit encryption when set to true. Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.
*)atRestEncryptionEnabled : BooleanOptional.t option;A flag that enables encryption at rest when set to true. You cannot modify the value of AtRestEncryptionEnabled after the replication group is created. To enable encryption at rest on a replication group you must set AtRestEncryptionEnabled to true when you create the replication group. Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.
*)aRN : String_.t option;The ARN (Amazon Resource Name) of the global replication group.
*)}val make :
?globalReplicationGroupId:??? ->
?globalReplicationGroupDescription:??? ->
?status:??? ->
?cacheNodeType:??? ->
?engine:??? ->
?engineVersion:??? ->
?members:??? ->
?clusterEnabled:??? ->
?globalNodeGroups:??? ->
?authTokenEnabled:??? ->
?transitEncryptionEnabled:??? ->
?atRestEncryptionEnabled:??? ->
?aRN:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `List of
[> `Structure of
(string * [> `Enum of string | `String of String_.t ]) list ]
list
| `String of String_.t ])
list ]