interface Alarms {
    http4xxAlarm?: false | Http4xxAlarmProps;
    http5xxAlarm: false | Http5xxAlarmProps;
    noMonitoring?: false;
    snsTopicName: string;
    unhealthyInstancesAlarm: boolean;
}

Properties

http4xxAlarm?: false | Http4xxAlarmProps

Enable the 4xx alarm with settings.

http5xxAlarm: false | Http5xxAlarmProps

Enable the 5xx alarm with settings.

noMonitoring?: false

Internal flag - users of this library should ignore this setting.

snsTopicName: string

Name of the target (SNS Topic) for alarm notifications.

unhealthyInstancesAlarm: boolean

Enable the unhealthy instances alarm.