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

ListTimelineEventsInput

import type { ListTimelineEventsInput } from "https://aws-api.deno.dev/v0.4/services/ssmincidents.ts?docs=full";
interface ListTimelineEventsInput {
filters?: Filter[] | null;
incidentRecordArn: string;
maxResults?: number | null;
nextToken?: string | null;
sortBy?: TimelineEventSort | null;
sortOrder?: SortOrder | null;
}

§Properties

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

Filters the timeline events based on the provided conditional values. You can filter timeline events using the following keys:

  • eventTime
    
  • eventType
    

Note the following when deciding how to use Filters:

  • If you don't specify a Filter, the response includes all timeline events.
  • If you specify more than one filter in a single request, the response returns timeline events that match all filters.
  • If you specify a filter with more than one value, the response returns timeline events that match any of the values provided.
§
incidentRecordArn: string
[src]

The Amazon Resource Name (ARN) of the incident that includes the timeline event.

§
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.

§
sortBy?: TimelineEventSort | null
[src]

Sort by the specified key value pair.

§
sortOrder?: SortOrder | null
[src]

Sorts the order of timeline events by the value specified in the sortBy field.