Module Values.DestinationSource

Object specifying the status of 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.

    *)
  5. configuration : DestinationConfiguration.t option;
    (*

    Configuration used to create this destination.

    *)
  6. detail : DestinationDetail.t option;
    (*

    Optional details regarding the status of the destination.

    *)
}
Sourceval make : ?id:??? -> ?state:??? -> ?startTime:??? -> ?endTime:??? -> ?configuration:??? -> ?detail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `String of DestinationConfigurationName.t | `Structure of (string * [> `List of [> `String of EncoderConfigurationArn.t | `Structure of (string * [> `Integer of ThumbnailIntervalSeconds.t | `List of [> `Enum of string ] list ]) list ] list | `String of ChannelArn.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Integer of CompositionRecordingTargetSegmentDurationSeconds.t ]) list ]) list ]) list ]) list | `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