Module AppStream.Application

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-application.html

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

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

and s3_location = {
  1. s3_bucket : string;
  2. s3_key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-application-s3location.html

type properties = {
  1. working_directory : string option;
  2. platforms : string list;
  3. app_block_arn : string;
  4. description : string option;
  5. instance_families : string list;
  6. attributes_to_delete : string list option;
  7. display_name : string option;
  8. launch_path : string;
  9. launch_parameters : string option;
  10. tags : tag list option;
  11. name : string;
  12. icon_s3_location : s3_location;
}

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

val make_properties : ?working_directory:string -> platforms:string list -> app_block_arn:string -> ?description:string -> instance_families:string list -> ?attributes_to_delete:string list -> ?display_name:string -> launch_path:string -> ?launch_parameters:string -> ?tags:tag list -> name:string -> icon_s3_location:s3_location -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_s3_location : s3_bucket:string -> s3_key:string -> unit -> s3_location
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_s3_location : s3_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 : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string