Module Values.ClusterOperationV2Source

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. errorInfo : ErrorInfo.t option;
    (*

    If cluster operation failed from an error, it describes the error.

    *)
  6. operationArn : string option;
    (*

    ARN of the cluster operation.

    *)
  7. operationState : string option;
    (*

    State of the cluster operation.

    *)
  8. operationType : string option;
    (*

    Type of the cluster operation.

    *)
  9. provisioned : ClusterOperationV2Provisioned.t option;
    (*

    Properties of a provisioned cluster.

    *)
  10. serverless : ClusterOperationV2Serverless.t option;
    (*

    Properties of a serverless cluster.

    *)
}
Sourceval make : ?clusterArn:??? -> ?clusterType:??? -> ?startTime:??? -> ?endTime:??? -> ?errorInfo:??? -> ?operationArn:??? -> ?operationState:??? -> ?operationType:??? -> ?provisioned:??? -> ?serverless:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `String of string | `Structure of (string * [> `String of string ]) list ]) list ] list | `String of string | `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `Structure of (string * [> `Integer of int | `String of string | `Structure of (string * [> `Boolean of bool | `Integer of int ]) list ]) list ] list | `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `Double of float ] list | `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Boolean of bool | `String of string | `Structure of (string * [> `Boolean of bool | `Structure of (string * [> `Boolean of bool ]) list ]) list ]) list ]) list ]) list | `Timestamp of string ]) list ]) list | `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