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

ListQueriesRequest

import type { ListQueriesRequest } from "https://aws-api.deno.dev/v0.3/services/cloudtrail.ts?docs=full";
interface ListQueriesRequest {
EndTime?: Date | number | null;
EventDataStore: string;
MaxResults?: number | null;
NextToken?: string | null;
QueryStatus?: QueryStatus | null;
StartTime?: Date | number | null;
}

§Properties

§
EndTime?: Date | number | null
[src]

Use with StartTime to bound a ListQueries request, and limit its results to only those queries run within a specified time period.

§
EventDataStore: string
[src]

The ARN (or the ID suffix of the ARN) of an event data store on which queries were run.

§
MaxResults?: number | null
[src]

The maximum number of queries to show on a page.

§
NextToken?: string | null
[src]

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

§
QueryStatus?: QueryStatus | null
[src]

The status of queries that you want to return in results. Valid values for QueryStatus include QUEUED, RUNNING, FINISHED, FAILED, or CANCELLED.

§
StartTime?: Date | number | null
[src]

Use with EndTime to bound a ListQueries request, and limit its results to only those queries run within a specified time period.