Module Values.CompositionSummarySource

Summary information about a Composition.

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

    ARN of the Composition resource.

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

    ARN of the attached stage.

    *)
  3. destinations : DestinationSummaryList.t option;
    (*

    Array of Destination objects.

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

    State of the Composition resource.

    *)
  5. 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.

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

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

    *)
  7. 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:??? -> ?destinations:??? -> ?state:??? -> ?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 | `Timestamp of Time.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of CompositionArn.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