Module MediaConnect.FlowSource

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

type encryption = {
  1. secret_arn : string option;
  2. key_type : string option;
  3. resource_id : string option;
  4. device_id : string option;
  5. region : string option;
  6. constant_initialization_vector : string option;
  7. algorithm : string option;
  8. role_arn : string;
  9. url : string option;
}

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

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

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

and gateway_bridge_source = {
  1. bridge_arn : string;
  2. vpc_interface_attachment : vpc_interface_attachment option;
}

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

type properties = {
  1. stream_id : string option;
  2. description : string;
  3. sender_ip_address : string option;
  4. ingest_port : int option;
  5. sender_control_port : int option;
  6. decryption : encryption option;
  7. gateway_bridge_source : gateway_bridge_source option;
  8. source_listener_address : string option;
  9. source_listener_port : int option;
  10. name : string;
  11. whitelist_cidr : string option;
  12. entitlement_arn : string option;
  13. min_latency : int option;
  14. vpc_interface_name : string option;
  15. max_bitrate : int option;
  16. protocol : string option;
  17. flow_arn : string option;
  18. max_latency : int option;
}

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

val make_properties : ?stream_id:string -> description:string -> ?sender_ip_address:string -> ?ingest_port:int -> ?sender_control_port:int -> ?decryption:encryption -> ?gateway_bridge_source:gateway_bridge_source -> ?source_listener_address:string -> ?source_listener_port:int -> name:string -> ?whitelist_cidr:string -> ?entitlement_arn:string -> ?min_latency:int -> ?vpc_interface_name:string -> ?max_bitrate:int -> ?protocol:string -> ?flow_arn:string -> ?max_latency:int -> unit -> properties
val make_encryption : ?secret_arn:string -> ?key_type:string -> ?resource_id:string -> ?device_id:string -> ?region:string -> ?constant_initialization_vector:string -> ?algorithm:string -> role_arn:string -> ?url:string -> unit -> encryption
val make_vpc_interface_attachment : ?vpc_interface_name:string -> unit -> vpc_interface_attachment
val make_gateway_bridge_source : bridge_arn:string -> ?vpc_interface_attachment:vpc_interface_attachment -> unit -> gateway_bridge_source
val yojson_of_encryption : encryption -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_vpc_interface_attachment : vpc_interface_attachment -> Yojson.Safe.t
val yojson_of_gateway_bridge_source : gateway_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. ingest_ip : string;
  3. source_arn : string;
  4. source_ingest_port : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string