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

AddThingToThingGroupRequest

import type { AddThingToThingGroupRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface AddThingToThingGroupRequest {
overrideDynamicGroups?: boolean | null;
thingArn?: string | null;
thingGroupArn?: string | null;
thingGroupName?: 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.

§
thingArn?: string | null
[src]

The ARN of the thing to add to a group.

§
thingGroupArn?: string | null
[src]

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

§
thingGroupName?: string | null
[src]

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

§
thingName?: string | null
[src]

The name of the thing to add to a group.