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

GetQueryResultsResponse

import type { GetQueryResultsResponse } from "https://aws-api.deno.dev/v0.3/services/cloudtrail.ts?docs=full";
interface GetQueryResultsResponse {
ErrorMessage?: string | null;
NextToken?: string | null;
QueryResultRows?: (({
[key: string]: string | null | undefined;
}
)
[]
)
[]
| null;
QueryStatistics?: QueryStatistics | null;
QueryStatus?: QueryStatus | null;
}

§Properties

§
ErrorMessage?: string | null
[src]

The error message returned if a query failed.

§
NextToken?: string | null
[src]

A token you can use to get the next page of query results.

§
QueryResultRows?: (({
[key: string]: string | null | undefined;
}
)
[]
)
[]
| null
[src]

Contains the individual event results of the query.

§
QueryStatistics?: QueryStatistics | null
[src]

Shows the count of query results.

§
QueryStatus?: QueryStatus | null
[src]

The status of the query. Values include QUEUED, RUNNING, FINISHED, FAILED, or CANCELLED.