Module Values.DestinationSummarySource

Summary information about a Destination.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    Unique identifier for this destination, assigned by IVS.

    *)
  2. state : DestinationState.t option;
    (*

    State of the Composition Destination.

    *)
  3. startTime : Time.t option;
    (*

    UTC time of the destination start. This is an ISO 8601 timestamp; note that this is returned as a string.

    *)
  4. endTime : Time.t option;
    (*

    UTC time of the destination end. This is an ISO 8601 timestamp; note that this is returned as a string.

    *)
}
Sourceval make : ?id:??? -> ?state:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of 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