We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
IncidentTrigger
1 parent 2aedf94 commit 3ef604bCopy full SHA for 3ef604b
packages/cli/src/constructs/incident.ts
@@ -3,9 +3,14 @@ import { StatusPageService } from './status-page-service'
3
type IncidentSeverity = 'MINOR' | 'MEDIUM' | 'MAJOR' | 'CRITICAL'
4
5
export interface IncidentTrigger {
6
+ /** The status page service that this incident will be associated with. */
7
service: StatusPageService
8
+ /** The severity level of the incident. */
9
severity: IncidentSeverity
10
+ /** The name of the incident. */
11
name: string
12
+ /** A detailed description of the incident. */
13
description: string
14
+ /** Whether to notify subscribers when the incident is triggered. */
15
notifySubscribers: boolean
16
}
0 commit comments