Module Values_1.AddThingToThingGroupRequestSource

Adds a thing to a thing group. Requires permission to access the AddThingToThingGroup action.

Sourcetype nonrec t = {
  1. thingGroupName : Values_0.ThingGroupName.t option;
    (*

    The name of the group to which you are adding a thing.

    *)
  2. thingGroupArn : Values_0.ThingGroupArn.t option;
    (*

    The ARN of the group to which you are adding a thing.

    *)
  3. thingName : Values_0.ThingName.t option;
    (*

    The name of the thing to add to a group.

    *)
  4. thingArn : Values_0.ThingArn.t option;
    (*

    The ARN of the thing to add to a group.

    *)
  5. overrideDynamicGroups : Values_0.OverrideDynamicGroups.t option;
    (*

    Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.

    *)
}
Sourceval make : ?thingGroupName:??? -> ?thingGroupArn:??? -> ?thingName:??? -> ?thingArn:??? -> ?overrideDynamicGroups:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.OverrideDynamicGroups.t | `String of Values_0.ThingGroupName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t