Module Values.SdiSourceSummarySource

Used in CreateSdiSourceResponse, DeleteSdiSourceResponse, DescribeSdiSourceResponse, ListSdiSourcesResponse, UpdateSdiSourceResponse

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The ARN of this SdiSource. It is automatically assigned when the SdiSource is created.

    *)
  2. id : string option;
    (*

    The ID of the SdiSource. Unique in the AWS account.The ID is the resource-id portion of the ARN.

    *)
  3. inputs : string list option;
    (*

    The list of inputs that are currently using this SDI source. This list will be empty if the SdiSource has just been deleted.

    *)
  4. mode : SdiSourceMode.t option;
    (*

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

    *)
  5. name : string option;
    (*

    The name of the SdiSource.

    *)
  6. state : SdiSourceState.t option;
    (*

    Specifies whether the SDI source is attached to an SDI input (IN_USE) or not (IDLE).

    *)
  7. type_ : SdiSourceType.t option;
}
Sourceval make : ?arn:??? -> ?id:??? -> ?inputs:??? -> ?mode:??? -> ?name:??? -> ?state:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `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