Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateThingGroupsForThingRequest

import type { UpdateThingGroupsForThingRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface UpdateThingGroupsForThingRequest {
overrideDynamicGroups?: boolean | null;
thingGroupsToAdd?: string[] | null;
thingGroupsToRemove?: string[] | null;
thingName?: string | null;
}

§Properties

§
overrideDynamicGroups?: boolean | null
[src]

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.

§
thingGroupsToAdd?: string[] | null
[src]

The groups to which the thing will be added.

§
thingGroupsToRemove?: string[] | null
[src]

The groups from which the thing will be removed.

§
thingName?: string | null
[src]

The thing whose group memberships will be updated.