Module Values.NodeSnapshotSource

Represents an individual cache node in a snapshot of a cluster.

Sourcetype nonrec t = {
  1. cacheClusterId : String_.t option;
    (*

    A unique identifier for the source cluster.

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

    A unique identifier for the source node group (shard).

    *)
  3. cacheNodeId : String_.t option;
    (*

    The cache node identifier for the node in the source cluster.

    *)
  4. nodeGroupConfiguration : NodeGroupConfiguration.t option;
    (*

    The configuration for the source node group (shard).

    *)
  5. cacheSize : String_.t option;
    (*

    The size of the cache on the source cache node.

    *)
  6. cacheNodeCreateTime : TStamp.t option;
    (*

    The date and time when the cache node was created in the source cluster.

    *)
  7. snapshotCreateTime : TStamp.t option;
    (*

    The date and time when the source node's metadata and cache data set was obtained for the snapshot.

    *)
}
Sourceval make : ?cacheClusterId:??? -> ?nodeGroupId:??? -> ?cacheNodeId:??? -> ?nodeGroupConfiguration:??? -> ?cacheSize:??? -> ?cacheNodeCreateTime:??? -> ?snapshotCreateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Integer of IntegerOptional.t | `List of [> `String of String_.t ] list | `String of AllowedNodeGroupId.t ]) list | `Timestamp of TStamp.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