Module Values.ControlOperationSummarySource

A summary of information about the specified control operation.

Sourcetype nonrec t = {
  1. operationType : ControlOperationType.t option;
    (*

    The type of operation.

    *)
  2. startTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which a control operation began.

    *)
  3. endTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the control operation was completed.

    *)
  4. status : ControlOperationStatus.t option;
    (*

    The status of the specified control operation.

    *)
  5. statusMessage : String_.t option;
    (*

    A speficic message displayed as part of the control status.

    *)
  6. operationIdentifier : OperationIdentifier.t option;
    (*

    The unique identifier of a control operation.

    *)
  7. controlIdentifier : ControlIdentifier.t option;
    (*

    The controlIdentifier of a control.

    *)
  8. targetIdentifier : TargetIdentifier.t option;
    (*

    The unique identifier of the target of a control operation.

    *)
  9. enabledControlIdentifier : Arn.t option;
    (*

    The controlIdentifier of an enabled control.

    *)
}
Sourceval make : ?operationType:??? -> ?startTime:??? -> ?endTime:??? -> ?status:??? -> ?statusMessage:??? -> ?operationIdentifier:??? -> ?controlIdentifier:??? -> ?targetIdentifier:??? -> ?enabledControlIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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