Module MediaPackageV2.Channel

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

type ingest_endpoint = {
  1. id : string option;
  2. url : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-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

type properties = {
  1. channel_name : string;
  2. description : string option;
  3. channel_group_name : string;
  4. tags : tag list option;
}

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

val make_properties : channel_name:string -> ?description:string -> channel_group_name:string -> ?tags:tag list -> unit -> properties
val make_ingest_endpoint : ?id:string -> ?url:string -> unit -> ingest_endpoint
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_ingest_endpoint : ingest_endpoint -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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. modified_at : string;
  3. created_at : string;
  4. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string