Module Values.CompositionSource

Object specifying a Composition resource.

Sourcetype nonrec t = {
  1. arn : CompositionArn.t option;
    (*

    ARN of the Composition resource.

    *)
  2. stageArn : StageArn.t option;
    (*

    ARN of the stage used as input

    *)
  3. state : CompositionState.t option;
    (*

    State of the Composition.

    *)
  4. layout : LayoutConfiguration.t option;
    (*

    Layout object to configure composition parameters.

    *)
  5. destinations : DestinationList.t option;
    (*

    Array of Destination objects. A Composition can contain either one destination (channel or s3) or two (one channel and one s3).

    *)
  6. tags : Tags.t option;
    (*

    Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.

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

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

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

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

    *)
}
Sourceval make : ?arn:??? -> ?stageArn:??? -> ?state:??? -> ?layout:??? -> ?destinations:??? -> ?tags:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `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 ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of CompositionArn.t | `Structure of (string * [> `Structure of (string * [> `Boolean of OmitStoppedVideo.t | `Enum of string | `Integer of GridGap.t | `String of AttributeKey.t ]) 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