Module Values.ClusterOperationV2SummarySource

Returns information about a cluster operation.

Sourcetype nonrec t = {
  1. clusterArn : string option;
    (*

    ARN of the cluster.

    *)
  2. clusterType : ClusterType.t option;
    (*

    Type of the backend cluster.

    *)
  3. startTime : string option;
    (*

    The time at which operation was started.

    *)
  4. endTime : string option;
    (*

    The time at which the operation finished.

    *)
  5. operationArn : string option;
    (*

    ARN of the cluster operation.

    *)
  6. operationState : string option;
    (*

    State of the cluster operation.

    *)
  7. operationType : string option;
    (*

    Type of the cluster operation.

    *)
}
Sourceval make : ?clusterArn:??? -> ?clusterType:??? -> ?startTime:??? -> ?endTime:??? -> ?operationArn:??? -> ?operationState:??? -> ?operationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Timestamp of string ]) 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