Module MediaConnect.Bridge

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

type egress_gateway_bridge = {
  1. max_bitrate : int;
}

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

and source_priority = {
  1. primary_source : string option;
}

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

and ingress_gateway_bridge = {
  1. max_outputs : int;
  2. max_bitrate : int;
}

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

and bridge_network_output = {
  1. network_name : string;
  2. port : int;
  3. ip_address : string;
  4. protocol : string;
  5. ttl : int;
  6. name : string;
}

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

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

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

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

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

and failover_config = {
  1. state : string option;
  2. source_priority : source_priority option;
  3. failover_mode : string;
}

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

and bridge_output = {
  1. network_output : bridge_network_output option;
}

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

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

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

and bridge_source = {
  1. network_source : bridge_network_source option;
  2. flow_source : bridge_flow_source option;
}

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

type properties = {
  1. source_failover_config : failover_config option;
  2. ingress_gateway_bridge : ingress_gateway_bridge option;
  3. egress_gateway_bridge : egress_gateway_bridge option;
  4. outputs : bridge_output list option;
  5. placement_arn : string;
  6. sources : bridge_source list;
  7. name : string;
}

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

val make_properties : ?source_failover_config:failover_config -> ?ingress_gateway_bridge:ingress_gateway_bridge -> ?egress_gateway_bridge:egress_gateway_bridge -> ?outputs:bridge_output list -> placement_arn:string -> sources:bridge_source list -> name:string -> unit -> properties
val make_egress_gateway_bridge : max_bitrate:int -> unit -> egress_gateway_bridge
val make_source_priority : ?primary_source:string -> unit -> source_priority
val make_ingress_gateway_bridge : max_outputs:int -> max_bitrate:int -> unit -> ingress_gateway_bridge
val make_bridge_network_output : network_name:string -> port:int -> ip_address:string -> protocol:string -> ttl:int -> name:string -> unit -> bridge_network_output
val make_bridge_network_source : network_name:string -> multicast_ip:string -> port:int -> protocol:string -> name:string -> unit -> bridge_network_source
val make_vpc_interface_attachment : ?vpc_interface_name:string -> unit -> vpc_interface_attachment
val make_failover_config : ?state:string -> ?source_priority:source_priority -> failover_mode:string -> unit -> failover_config
val make_bridge_output : ?network_output:bridge_network_output -> unit -> bridge_output
val make_bridge_flow_source : ?flow_vpc_interface_attachment:vpc_interface_attachment -> flow_arn:string -> name:string -> unit -> bridge_flow_source
val make_bridge_source : ?network_source:bridge_network_source -> ?flow_source:bridge_flow_source -> unit -> bridge_source
val yojson_of_egress_gateway_bridge : egress_gateway_bridge -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_source_priority : source_priority -> Yojson.Safe.t
val yojson_of_ingress_gateway_bridge : ingress_gateway_bridge -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_bridge_network_output : bridge_network_output -> Yojson.Safe.t
val yojson_of_bridge_network_source : bridge_network_source -> Yojson.Safe.t
val yojson_of_vpc_interface_attachment : vpc_interface_attachment -> Yojson.Safe.t
val yojson_of_failover_config : failover_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_bridge_output : bridge_output -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_bridge_flow_source : bridge_flow_source -> Yojson.Safe.t
val yojson_of_bridge_source : bridge_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;
  2. bridge_arn : string;
  3. bridge_state : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string