Module Values.ClusterOperationInfoSource

Returns information about a cluster operation.

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

    The ID of the API request that triggered this operation.

    *)
  2. clusterArn : string option;
    (*

    ARN of the cluster.

    *)
  3. creationTime : string option;
    (*

    The time that the operation was created.

    *)
  4. endTime : string option;
    (*

    The time at which the operation finished.

    *)
  5. errorInfo : ErrorInfo.t option;
    (*

    Describes the error if the operation fails.

    *)
  6. operationArn : string option;
    (*

    ARN of the cluster operation.

    *)
  7. operationState : string option;
    (*

    State of the cluster operation.

    *)
  8. operationSteps : ClusterOperationStep.t list option;
    (*

    Steps completed during the operation.

    *)
  9. operationType : string option;
    (*

    Type of the cluster operation.

    *)
  10. sourceClusterInfo : MutableClusterInfo.t option;
    (*

    Information about cluster attributes before a cluster is updated.

    *)
  11. targetClusterInfo : MutableClusterInfo.t option;
    (*

    Information about cluster attributes after a cluster is updated.

    *)
  12. vpcConnectionInfo : VpcConnectionInfo.t option;
    (*

    Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.

    *)
}
Sourceval make : ?clientRequestId:??? -> ?clusterArn:??? -> ?creationTime:??? -> ?endTime:??? -> ?errorInfo:??? -> ?operationArn:??? -> ?operationState:??? -> ?operationSteps:??? -> ?operationType:??? -> ?sourceClusterInfo:??? -> ?targetClusterInfo:??? -> ?vpcConnectionInfo:??? -> unit -> t
Sourceval to_value : t -> [> `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 | `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