Module MediaConnect.BridgeSource

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-bridgesource.html

type bridge_network_source = {
  1. network_name : string;
  2. multicast_ip : string;
  3. port : int;
  4. protocol : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridgesource-bridgenetworksource.html

and vpc_interface_attachment = {
  1. vpc_interface_name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridgesource-vpcinterfaceattachment.html

and bridge_flow_source = {
  1. flow_vpc_interface_attachment : vpc_interface_attachment option;
  2. flow_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridgesource-bridgeflowsource.html

type properties = {
  1. network_source : bridge_network_source option;
  2. bridge_arn : string;
  3. flow_source : bridge_flow_source option;
  4. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-bridgesource.html;

val make_properties : ?network_source:bridge_network_source -> bridge_arn:string -> ?flow_source:bridge_flow_source -> name:string -> unit -> properties
val make_bridge_network_source : network_name:string -> multicast_ip:string -> port:int -> protocol:string -> unit -> bridge_network_source
val make_vpc_interface_attachment : ?vpc_interface_name:string -> unit -> vpc_interface_attachment
val make_bridge_flow_source : ?flow_vpc_interface_attachment:vpc_interface_attachment -> flow_arn:string -> unit -> bridge_flow_source
val yojson_of_bridge_network_source : bridge_network_source -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_vpc_interface_attachment : vpc_interface_attachment -> Yojson.Safe.t
val yojson_of_bridge_flow_source : bridge_flow_source -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string