Module Values.ConnectorOperationSummarySource

Summary of a connector operation.

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

    The Amazon Resource Name (ARN) of the connector operation.

    *)
  2. connectorOperationType : ConnectorOperationType.t option;
    (*

    The type of connector operation performed.

    *)
  3. connectorOperationState : ConnectorOperationState.t option;
    (*

    The state of the connector operation.

    *)
  4. creationTime : string option;
    (*

    The time when operation was created.

    *)
  5. endTime : string option;
    (*

    The time when operation ended.

    *)
}
Sourceval make : ?connectorOperationArn:??? -> ?connectorOperationType:??? -> ?connectorOperationState:??? -> ?creationTime:??? -> ?endTime:??? -> 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