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

QueryObjectsOutput

import type { QueryObjectsOutput } from "https://aws-api.deno.dev/v0.4/services/datapipeline.ts?docs=full";

Contains the output of QueryObjects.

interface QueryObjectsOutput {
hasMoreResults?: boolean | null;
ids?: string[] | null;
marker?: string | null;
}

§Properties

§
hasMoreResults?: boolean | null
[src]

Indicates whether there are more results that can be obtained by a subsequent call.

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

The identifiers that match the query selectors.

§
marker?: string | null
[src]

The starting point for the next page of results. To view the next page of results, call QueryObjects again with this marker value. If the value is null, there are no more results.