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

ListIncidentRecordsInput

import type { ListIncidentRecordsInput } from "https://aws-api.deno.dev/v0.3/services/ssmincidents.ts?docs=full";
interface ListIncidentRecordsInput {
filters?: Filter[] | null;
maxResults?: number | null;
nextToken?: string | null;
}

§Properties

§
filters?: Filter[] | null
[src]

Filters the list of incident records through which you are searching. You can filter on the following keys:

  • creationTime
    
  • impact
    
  • status
    
  • createdBy
    

Note the following when deciding how to use Filters:

  • If you don't specify a Filter, the response includes all incident records.
  • If you specify more than one filter in a single request, the response returns incident records that match all filters.
  • If you specify a filter with more than one value, the response returns incident records that match any of the values provided.
§
maxResults?: number | null
[src]

The maximum number of results per page.

§
nextToken?: string | null
[src]

The pagination token to continue to the next page of results.