Module Values.ProcessedUpdateActionSource

Update action that has been processed for the corresponding apply/stop request

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

    The ID of the replication group

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

    The ID of the cache cluster

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

    The unique ID of the service update

    *)
  4. updateActionStatus : UpdateActionStatus.t option;
    (*

    The status of the update action on the Valkey or Redis OSS cluster

    *)
}
Sourceval make : ?replicationGroupId:??? -> ?cacheClusterId:??? -> ?serviceUpdateName:??? -> ?updateActionStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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