Class: Aws::IoTEvents::Types::ListDetectorModelVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::ListDetectorModelVersionsRequest
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass ListDetectorModelVersionsRequest data as a hash:
{
detector_model_name: "DetectorModelName", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#detector_model_name ⇒ String
The name of the detector model whose versions are returned.
-
#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
#detector_model_name ⇒ String
The name of the detector model whose versions are returned.
4215 4216 4217 4218 4219 4220 4221 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 4215 class ListDetectorModelVersionsRequest < Struct.new( :detector_model_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be returned per request.
4215 4216 4217 4218 4219 4220 4221 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 4215 class ListDetectorModelVersionsRequest < Struct.new( :detector_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.
4215 4216 4217 4218 4219 4220 4221 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 4215 class ListDetectorModelVersionsRequest < Struct.new( :detector_model_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |