Module Values.InputDeviceMediaConnectConfigurableSettingsSource

Parameters required to attach a MediaConnect flow to the device.

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

    The ARN of the MediaConnect flow to attach this device to.

    *)
  2. roleArn : string option;
    (*

    The ARN for the role that MediaLive assumes to access the attached flow and secret. For more information about how to create this role, see the MediaLive user guide.

    *)
  3. secretArn : string option;
    (*

    The ARN for the secret that holds the encryption key to encrypt the content output by the device.

    *)
  4. sourceName : string option;
    (*

    The name of the MediaConnect Flow source to stream to.

    *)
}
Sourceval make : ?flowArn:??? -> ?roleArn:??? -> ?secretArn:??? -> ?sourceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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