Module MediaPackage.Asset

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

type egress_endpoint = {
  1. packaging_configuration_id : string;
  2. url : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-asset-egressendpoint.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. source_arn : string;
  2. resource_id : string option;
  3. id : string;
  4. packaging_group_id : string;
  5. egress_endpoints : egress_endpoint list option;
  6. tags : tag list option;
  7. source_role_arn : string;
}

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

val make_properties : source_arn:string -> ?resource_id:string -> id:string -> packaging_group_id:string -> ?egress_endpoints:egress_endpoint list -> ?tags:tag list -> source_role_arn:string -> unit -> properties
val make_egress_endpoint : packaging_configuration_id:string -> url:string -> unit -> egress_endpoint
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_egress_endpoint : egress_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. created_at : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string