Module Values.NodeGroupMemberUpdateStatusSource

The status of the service update on the node group member

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

    The cache cluster ID

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

    The node ID of the cache cluster

    *)
  3. nodeUpdateStatus : NodeUpdateStatus.t option;
    (*

    The update status of the node

    *)
  4. nodeDeletionDate : TStamp.t option;
    (*

    The deletion date of the node

    *)
  5. nodeUpdateStartDate : TStamp.t option;
    (*

    The start date of the update for a node

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

    The end date of the update for a node

    *)
  7. nodeUpdateInitiatedBy : NodeUpdateInitiatedBy.t option;
    (*

    Reflects whether the update was initiated by the customer or automatically applied

    *)
  8. nodeUpdateInitiatedDate : TStamp.t option;
    (*

    The date when the update is triggered

    *)
  9. nodeUpdateStatusModifiedDate : TStamp.t option;
    (*

    The date when the NodeUpdateStatus was last modified

    *)
}
Sourceval make : ?cacheClusterId:??? -> ?cacheNodeId:??? -> ?nodeUpdateStatus:??? -> ?nodeDeletionDate:??? -> ?nodeUpdateStartDate:??? -> ?nodeUpdateEndDate:??? -> ?nodeUpdateInitiatedBy:??? -> ?nodeUpdateInitiatedDate:??? -> ?nodeUpdateStatusModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `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