Module MediaPackage.Channel

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-channel.html

type ingest_endpoint = {
  1. username : string;
  2. id : string;
  3. url : string;
  4. password : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-channel-ingestendpoint.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and log_configuration = {
  1. log_group_name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-channel-logconfiguration.html

and hls_ingest = {
  1. ingest_endpoints : ingest_endpoint list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-channel-hlsingest.html

type properties = {
  1. description : string option;
  2. ingress_access_logs : log_configuration option;
  3. hls_ingest : hls_ingest option;
  4. id : string;
  5. egress_access_logs : log_configuration option;
  6. tags : tag list option;
}

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

val make_properties : ?description:string -> ?ingress_access_logs:log_configuration -> ?hls_ingest:hls_ingest -> id:string -> ?egress_access_logs:log_configuration -> ?tags:tag list -> unit -> properties
val make_ingest_endpoint : username:string -> id:string -> url:string -> password:string -> unit -> ingest_endpoint
val make_tag : value:string -> key:string -> unit -> tag
val make_log_configuration : ?log_group_name:string -> unit -> log_configuration
val make_hls_ingest : ?ingest_endpoints:ingest_endpoint list -> unit -> hls_ingest
val yojson_of_ingest_endpoint : ingest_endpoint -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_log_configuration : log_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_hls_ingest : hls_ingest -> [> `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. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string