Module IoT.Thing

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

type attribute_payload = {
  1. attributes_ : string Stdlib__Map.Make(Stdlib.String).t option;
}

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

type properties = {
  1. attribute_payload : attribute_payload option;
  2. thing_name : string option;
}

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

val make_properties : ?attribute_payload:attribute_payload -> ?thing_name:string -> unit -> properties
val make_attribute_payload : ?attributes_:string Stdlib__Map.Make(Stdlib.String).t -> unit -> attribute_payload
val yojson_of_attribute_payload : attribute_payload -> [> `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