Module IoT1Click.Project

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html

type device_template = {
  1. device_type : string option;
  2. callback_overrides : Yojson.Safe.t option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-devicetemplate.html

and placement_template = {
  1. device_templates : Yojson.Safe.t option;
  2. default_attributes : Yojson.Safe.t option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html

type properties = {
  1. description : string option;
  2. placement_template : placement_template;
  3. project_name : string option;
}

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

val make_properties : ?description:string -> placement_template:placement_template -> ?project_name:string -> unit -> properties
val make_device_template : ?device_type:string -> ?callback_overrides:Yojson.Safe.t -> unit -> device_template
val make_placement_template : ?device_templates:Yojson.Safe.t -> ?default_attributes:Yojson.Safe.t -> unit -> placement_template
val yojson_of_device_template : device_template -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_placement_template : placement_template -> [> `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. project_name : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string