Module Values_0.RemoveThingFromThingGroupRequestSource

Remove the specified thing from the specified group. You must specify either a thingGroupArn or a thingGroupName to identify the thing group and either a thingArn or a thingName to identify the thing to remove from the thing group. Requires permission to access the RemoveThingFromThingGroup action.

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

    The group name.

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

    The group ARN.

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

    The name of the thing to remove from the group.

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

    The ARN of the thing to remove from the group.

    *)
}
Sourceval make : ?thingGroupName:??? -> ?thingGroupArn:??? -> ?thingName:??? -> ?thingArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of 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