Module Values.NodeGroupConfigurationSource

Node group (shard) configuration options. Each node group (shard) configuration has the following: Slots, PrimaryAvailabilityZone, ReplicaAvailabilityZones, ReplicaCount.

Sourcetype nonrec t = {
  1. nodeGroupId : AllowedNodeGroupId.t option;
    (*

    Either the ElastiCache supplied 4-digit id or a user supplied id for the node group these configuration values apply to.

    *)
  2. slots : String_.t option;
    (*

    A string that specifies the keyspace for a particular node group. Keyspaces range from 0 to 16,383. The string is in the format startkey-endkey. Example: "0-3999"

    *)
  3. replicaCount : IntegerOptional.t option;
    (*

    The number of read replica nodes in this node group (shard).

    *)
  4. primaryAvailabilityZone : String_.t option;
    (*

    The Availability Zone where the primary node of this node group (shard) is launched.

    *)
  5. replicaAvailabilityZones : AvailabilityZonesList.t option;
    (*

    A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified.

    *)
  6. primaryOutpostArn : String_.t option;
    (*

    The outpost ARN of the primary node.

    *)
  7. replicaOutpostArns : OutpostArnsList.t option;
    (*

    The outpost ARN of the node replicas.

    *)
}
Sourceval make : ?nodeGroupId:??? -> ?slots:??? -> ?replicaCount:??? -> ?primaryAvailabilityZone:??? -> ?replicaAvailabilityZones:??? -> ?primaryOutpostArn:??? -> ?replicaOutpostArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerOptional.t | `List of [> `String of String_.t ] list | `String of AllowedNodeGroupId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t