Module Values.UpdateImageGenerationConfigurationInputSource

Updates the StreamInfo and ImageProcessingConfiguration fields.

Sourcetype nonrec t = {
  1. streamName : StreamName.t option;
    (*

    The name of the stream from which to update the image generation configuration. You must specify either the StreamName or the StreamARN.

    *)
  2. streamARN : ResourceARN.t option;
    (*

    The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the image generation configuration. You must specify either the StreamName or the StreamARN.

    *)
  3. imageGenerationConfiguration : ImageGenerationConfiguration.t option;
    (*

    The structure that contains the information required for the KVS images delivery. If the structure is null, the configuration will be deleted from the stream.

    *)
}
Sourceval make : ?streamName:??? -> ?streamARN:??? -> ?imageGenerationConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StreamName.t | `Structure of (string * [> `Enum of string | `Integer of SamplingInterval.t | `Map of ([> `Enum of string ] * [> `String of FormatConfigValue.t ]) list | `Structure of (string * [> `String of DestinationUri.t ]) list ]) 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