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

SetAlarmStateInput

import type { SetAlarmStateInput } from "https://aws-api.deno.dev/v0.4/services/cloudwatch.ts?docs=full";
interface SetAlarmStateInput {
AlarmName: string;
StateReason: string;
StateReasonData?: string | null;
StateValue: StateValue;
}

§Properties

§
AlarmName: string
[src]

The name of the alarm.

§
StateReason: string
[src]

The reason that this alarm is set to this specific state, in text format.

§
StateReasonData?: string | null
[src]

The reason that this alarm is set to this specific state, in JSON format.

For SNS or EC2 alarm actions, this is just informational. But for EC2 Auto Scaling or application Auto Scaling alarm actions, the Auto Scaling policy uses the information in this field to take the correct action.

§
StateValue: StateValue
[src]

The value of the state.