Class: Aws::Lightsail::Types::TestAlarmRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::TestAlarmRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarm_name ⇒ String
The name of the alarm to test.
-
#state ⇒ String
The alarm state to test.
Instance Attribute Details
#alarm_name ⇒ String
The name of the alarm to test.
14425 14426 14427 14428 14429 14430 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 14425 class TestAlarmRequest < Struct.new( :alarm_name, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The alarm state to test.
An alarm has the following possible states that can be tested:
ALARM- The metric is outside of the defined threshold.INSUFFICIENT_DATA- The alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.OK- The metric is within the defined threshold.
14425 14426 14427 14428 14429 14430 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 14425 class TestAlarmRequest < Struct.new( :alarm_name, :state) SENSITIVE = [] include Aws::Structure end |