Module Panorama.Package

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html

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

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

and storage_location = {
  1. repo_prefix_location : string option;
  2. generated_prefix_location : string option;
  3. binary_prefix_location : string option;
  4. bucket : string option;
  5. manifest_prefix_location : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-panorama-package-storagelocation.html

type properties = {
  1. package_name : string;
  2. storage_location : storage_location option;
  3. tags : tag list option;
}

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

val make_properties : package_name:string -> ?storage_location:storage_location -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_storage_location : ?repo_prefix_location:string -> ?generated_prefix_location:string -> ?binary_prefix_location:string -> ?bucket:string -> ?manifest_prefix_location:string -> unit -> storage_location
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_storage_location : storage_location -> [> `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_time : int;
  3. storage_location__manifest_prefix_location : string;
  4. storage_location__generated_prefix_location : string;
  5. storage_location__binary_prefix_location : string;
  6. package_id : string;
  7. arn : string;
  8. storage_location__bucket : string;
  9. storage_location__repo_prefix_location : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string