Module Values.RouterSettingsSource

This is the collection of settings that are used during the creation of a MediaConnect router input.

Sourcetype nonrec t = {
  1. destinations : RouterDestinationSettings.t list option;
    (*

    Destinations for the input from MediaConnect Router. Provide one for a single-pipeline input and two for a standard input.

    *)
  2. encryptionType : RouterEncryptionType.t option;
  3. secretArn : string option;
    (*

    ARN of the secret used to encrypt this input.

    *)
}
Sourceval make : ?destinations:??? -> ?encryptionType:??? -> ?secretArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] 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