Module Values.ThumbnailDetailsSource

The details of the thumbnail, including thumbnail base64 string, timecode and the time when thumbnail was generated.

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

    The ARN of the flow that DescribeFlowSourceThumbnail was performed on.

    *)
  2. thumbnail : String_.t option;
    (*

    Thumbnail Base64 string.

    *)
  3. thumbnailMessages : MessageDetail.t list option;
    (*

    Status code and messages about the flow source thumbnail.

    *)
  4. timecode : String_.t option;
    (*

    Timecode of thumbnail.

    *)
  5. timestamp : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp of when thumbnail was generated.

    *)
}
Sourceval make : ?flowArn:??? -> ?thumbnail:??? -> ?thumbnailMessages:??? -> ?timecode:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of SyntheticTimestamp_date_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