Class: Aws::SSM::Types::AlarmConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::AlarmConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
The details for the CloudWatch alarm you want to apply to an automation or command.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarms ⇒ Array<Types::Alarm>
The name of the CloudWatch alarm specified in the configuration.
-
#ignore_poll_alarm_failure ⇒ Boolean
When this value is true, your automation or command continues to run in cases where we can’t retrieve alarm status information from CloudWatch.
Instance Attribute Details
#alarms ⇒ Array<Types::Alarm>
The name of the CloudWatch alarm specified in the configuration.
195 196 197 198 199 200 |
# File 'lib/aws-sdk-ssm/types.rb', line 195 class AlarmConfiguration < Struct.new( :ignore_poll_alarm_failure, :alarms) SENSITIVE = [] include Aws::Structure end |
#ignore_poll_alarm_failure ⇒ Boolean
When this value is true, your automation or command continues to run in cases where we can’t retrieve alarm status information from CloudWatch. In cases where we successfully retrieve an alarm status of OK or INSUFFICIENT_DATA, the automation or command continues to run, regardless of this value. Default is false.
195 196 197 198 199 200 |
# File 'lib/aws-sdk-ssm/types.rb', line 195 class AlarmConfiguration < Struct.new( :ignore_poll_alarm_failure, :alarms) SENSITIVE = [] include Aws::Structure end |