Module Values.VideoSourceSource

A video source. You can upload a smaller video as a base64-encoded string as long as the encoded file is less than 25MB. You can also transfer videos up to 1GB in size from an S3 bucket.

Sourcetype nonrec t = {
  1. bytes : VideoSourceBytesBlob.t option;
    (*

    Video content encoded in base64.

    *)
  2. s3Location : S3Location.t option;
    (*

    The location of a video object in an Amazon S3 bucket. To see which models support S3 uploads, see Supported models and features for Converse.

    *)
}
Sourceval make : ?bytes:??? -> ?s3Location:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of VideoSourceBytesBlob.t | `Structure of (string * [> `String of S3Uri.t ]) list ]) 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