Module Values.BridgeFlowSourceSource

The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.

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

    The ARN of the cloud flow used as a source of this bridge.

    *)
  2. flowVpcInterfaceAttachment : VpcInterfaceAttachment.t option;
    (*

    The name of the VPC interface attachment to use for this source.

    *)
  3. name : String_.t option;
    (*

    The name of the flow source.

    *)
  4. outputArn : String_.t option;
    (*

    The Amazon Resource Number (ARN) of the output.

    *)
}
Sourceval make : ?flowArn:??? -> ?flowVpcInterfaceAttachment:??? -> ?name:??? -> ?outputArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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