Module AppStream.AppBlock

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

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

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

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

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

and script_details = {
  1. timeout_in_seconds : int;
  2. script_s3_location : s3_location;
  3. executable_path : string;
  4. executable_parameters : string option;
}

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

type properties = {
  1. setup_script_details : script_details option;
  2. description : string option;
  3. post_setup_script_details : script_details option;
  4. display_name : string option;
  5. source_s3_location : s3_location;
  6. tags : tag list option;
  7. packaging_type : string option;
  8. name : string;
}

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

val make_properties : ?setup_script_details:script_details -> ?description:string -> ?post_setup_script_details:script_details -> ?display_name:string -> source_s3_location:s3_location -> ?tags:tag list -> ?packaging_type:string -> name:string -> unit -> properties
val make_s3_location : s3_bucket:string -> ?s3_key:string -> unit -> s3_location
val make_tag : value:string -> key:string -> unit -> tag
val make_script_details : timeout_in_seconds:int -> script_s3_location:s3_location -> executable_path:string -> ?executable_parameters:string -> unit -> script_details
val yojson_of_s3_location : s3_location -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_script_details : script_details -> [> `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