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

AlarmConfiguration

import type { AlarmConfiguration } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Information about alarms associated with the deployment group.

interface AlarmConfiguration {
alarms?: Alarm[] | null;
enabled?: boolean | null;
ignorePollAlarmFailure?: boolean | null;
}

§Properties

§
alarms?: Alarm[] | null
[src]

A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group.

§
enabled?: boolean | null
[src]

Indicates whether the alarm configuration is enabled.

§
ignorePollAlarmFailure?: boolean | null
[src]

Indicates whether a deployment should continue if information about the current state of alarms cannot be retrieved from Amazon CloudWatch. The default value is false.

  • true: The deployment proceeds even if alarm status information can't be retrieved from Amazon CloudWatch.
  • false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch.