Module Values.UpdateSdiSourceRequestSource

A request to update the SdiSource.

Sourcetype nonrec t = {
  1. mode : SdiSourceMode.t option;
    (*

    Include this parameter only if you want to change the name of the SdiSource. Specify a name that is unique in the AWS account. We recommend you assign a name that describes the source, for example curling-cameraA. Names are case-sensitive.

    *)
  2. name : string option;
    (*

    Include this parameter only if you want to change the name of the SdiSource. Specify a name that is unique in the AWS account. We recommend you assign a name that describes the source, for example curling-cameraA. Names are case-sensitive.

    *)
  3. sdiSourceId : string;
    (*

    The ID of the SdiSource

    *)
  4. type_ : SdiSourceType.t option;
    (*

    Include this parameter only if you want to change the mode. Specify the type of the SDI source: SINGLE: The source is a single-link source. QUAD: The source is one part of a quad-link source.

    *)
}
Sourceval context_ : string
Sourceval make : ?mode:??? -> ?name:??? -> ?type_:??? -> sdiSourceId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string ]) 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