Module IoT.ThingType

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingtype.html

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

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

and thing_type_properties = {
  1. thing_type_description : string option;
  2. searchable_attributes : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-thingtypeproperties.html

type properties = {
  1. deprecate_thing_type : bool option;
  2. thing_type_name : string option;
  3. thing_type_properties : thing_type_properties option;
  4. tags : tag list option;
}

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

val make_properties : ?deprecate_thing_type:bool -> ?thing_type_name:string -> ?thing_type_properties:thing_type_properties -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_thing_type_properties : ?thing_type_description:string -> ?searchable_attributes:string list -> unit -> thing_type_properties
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_thing_type_properties : thing_type_properties -> [> `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. id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string