Complete the code to specify the SNS topic ARN for the alarm action.
AlarmActions: ["[1]"]
The alarm action requires the ARN of an SNS topic to send notifications.
Complete the code to specify the Auto Scaling group name for the alarm action.
AutoScalingGroupName: "[1]"
The Auto Scaling alarm action requires the name of the Auto Scaling group to scale.
Fix the error in the alarm action configuration to correctly trigger scaling.
ScalingPolicyARN: "[1]"
The ScalingPolicyARN must point to an Auto Scaling policy ARN to trigger scaling actions.
Fill both blanks to configure an alarm that sends notification and triggers scaling.
AlarmActions: ["[1]", "[2]"]
The alarm can have multiple actions: one SNS notification and one Auto Scaling policy.
Fill all three blanks to define an alarm with threshold, SNS notification, and scaling policy.
Threshold: [1], AlarmActions: ["[2]", "[3]"]
The threshold sets the alarm limit, and the actions include SNS notification and scaling policy ARNs.