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

Engagement

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

Incident Manager reaching out to a contact or escalation plan to engage contact during an incident.

interface Engagement {
ContactArn: string;
EngagementArn: string;
IncidentId?: string | null;
Sender: string;
StartTime?: Date | number | null;
StopTime?: Date | number | null;
}

§Properties

§
ContactArn: string
[src]

The ARN of the escalation plan or contact that Incident Manager is engaging.

§
EngagementArn: string
[src]

The Amazon Resource Name (ARN) of the engagement.

§
IncidentId?: string | null
[src]

The ARN of the incident that's engaging the contact.

§
Sender: string
[src]

The user that started the engagement.

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

The time that the engagement began.

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

The time that the engagement ended.