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

TriggerDetails

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

Details about what caused the incident to be created in Incident Manager.

interface TriggerDetails {
rawData?: string | null;
source: string;
timestamp: Date | number;
triggerArn?: string | null;
}

§Properties

§
rawData?: string | null
[src]

Raw data passed from either Amazon EventBridge, Amazon CloudWatch, or Incident Manager when an incident is created.

§
source: string
[src]

Identifies the service that sourced the event. All events sourced from within Amazon Web Services begin with "aws." Customer-generated events can have any value here, as long as it doesn't begin with "aws." We recommend the use of Java package-name style reverse domain-name strings.

§
timestamp: Date | number
[src]

The time that the incident was detected.

§
triggerArn?: string | null
[src]

The Amazon Resource Name (ARN) of the source that detected the incident.