Class: Aws::IoTEventsData::Types::ListAlarmsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEventsData::Types::ListAlarmsRequest
- Defined in:
- gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb
Overview
Note:
When making an API call, you may pass ListAlarmsRequest data as a hash:
{
alarm_model_name: "AlarmModelName", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarm_model_name ⇒ String
The name of the alarm model.
-
#max_results ⇒ Integer
The maximum number of results to be returned per request.
-
#next_token ⇒ String
The token that you can use to return the next set of results.
Instance Attribute Details
#alarm_model_name ⇒ String
The name of the alarm model.
1139 1140 1141 1142 1143 1144 1145 |
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 1139 class ListAlarmsRequest < Struct.new( :alarm_model_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be returned per request.
1139 1140 1141 1142 1143 1144 1145 |
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 1139 class ListAlarmsRequest < Struct.new( :alarm_model_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that you can use to return the next set of results.
1139 1140 1141 1142 1143 1144 1145 |
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 1139 class ListAlarmsRequest < Struct.new( :alarm_model_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |