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

ListThingsRequest

import type { ListThingsRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";

The input for the ListThings operation.

interface ListThingsRequest {
attributeName?: string | null;
attributeValue?: string | null;
maxResults?: number | null;
nextToken?: string | null;
thingTypeName?: string | null;
usePrefixAttributeValue?: boolean | null;
}

§Properties

§
attributeName?: string | null
[src]

The attribute name used to search for things.

§
attributeValue?: string | null
[src]

The attribute value used to search for things.

§
maxResults?: number | null
[src]

The maximum number of results to return in this operation.

§
nextToken?: string | null
[src]

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

§
thingTypeName?: string | null
[src]

The name of the thing type used to search for things.

§
usePrefixAttributeValue?: boolean | null
[src]

When true, the action returns the thing resources with attribute values that start with the attributeValue provided.

When false, or not present, the action returns only the thing resources with attribute values that match the entire attributeValue provided.