Class: Aws::Lightsail::Types::GetAlarmsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::GetAlarmsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarm_name ⇒ String
The name of the alarm.
-
#monitored_resource_name ⇒ String
The name of the Lightsail resource being monitored by the alarm.
-
#page_token ⇒ String
The token to advance to the next page of results from your request.
Instance Attribute Details
#alarm_name ⇒ String
The name of the alarm.
Specify an alarm name to return information about a specific alarm.
6433 6434 6435 6436 6437 6438 6439 |
# File 'lib/aws-sdk-lightsail/types.rb', line 6433 class GetAlarmsRequest < Struct.new( :alarm_name, :page_token, :monitored_resource_name) SENSITIVE = [] include Aws::Structure end |
#monitored_resource_name ⇒ String
The name of the Lightsail resource being monitored by the alarm.
Specify a monitored resource name to return information about all alarms for a specific resource.
6433 6434 6435 6436 6437 6438 6439 |
# File 'lib/aws-sdk-lightsail/types.rb', line 6433 class GetAlarmsRequest < Struct.new( :alarm_name, :page_token, :monitored_resource_name) SENSITIVE = [] include Aws::Structure end |
#page_token ⇒ String
The token to advance to the next page of results from your request.
To get a page token, perform an initial ‘GetAlarms` request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.
6433 6434 6435 6436 6437 6438 6439 |
# File 'lib/aws-sdk-lightsail/types.rb', line 6433 class GetAlarmsRequest < Struct.new( :alarm_name, :page_token, :monitored_resource_name) SENSITIVE = [] include Aws::Structure end |