Module IoT.ThingGroup

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thinggroup.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-thinggroup-attributepayload.html

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

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

and thing_group_properties = {
  1. attribute_payload : attribute_payload option;
  2. thing_group_description : string option;
}

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

type properties = {
  1. parent_group_name : string option;
  2. thing_group_name : string option;
  3. thing_group_properties : thing_group_properties option;
  4. query_string : string option;
  5. tags : tag list option;
}

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

val make_properties : ?parent_group_name:string -> ?thing_group_name:string -> ?thing_group_properties:thing_group_properties -> ?query_string:string -> ?tags:tag list -> unit -> properties
val make_attribute_payload : ?attributes_:string Stdlib__Map.Make(Stdlib.String).t -> unit -> attribute_payload
val make_tag : value:string -> key:string -> unit -> tag
val make_thing_group_properties : ?attribute_payload:attribute_payload -> ?thing_group_description:string -> unit -> thing_group_properties
val yojson_of_attribute_payload : attribute_payload -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_thing_group_properties : thing_group_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