Module Values.CreateSdiSourceRequestSource

A request to create a SdiSource.

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

    Applies only if the type is QUAD. Specify the mode for handling the quad-link signal: QUADRANT or INTERLEAVE.

    *)
  2. name : string option;
    (*

    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. requestId : string option;
    (*

    An ID that you assign to a create request. This ID ensures idempotency when creating resources.

    *)
  4. tags : Tags.t option;
    (*

    A collection of key-value pairs.

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

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