Class: Aws::IoTEvents::Types::GetDetectorModelAnalysisResultsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::GetDetectorModelAnalysisResultsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass GetDetectorModelAnalysisResultsRequest data as a hash:
{
analysis_id: "AnalysisId", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analysis_id ⇒ String
The ID of the analysis result that you want to retrieve.
-
#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
#analysis_id ⇒ String
The ID of the analysis result that you want to retrieve.
2418 2419 2420 2421 2422 2423 2424 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2418 class GetDetectorModelAnalysisResultsRequest < Struct.new( :analysis_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be returned per request.
2418 2419 2420 2421 2422 2423 2424 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2418 class GetDetectorModelAnalysisResultsRequest < Struct.new( :analysis_id, :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.
2418 2419 2420 2421 2422 2423 2424 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2418 class GetDetectorModelAnalysisResultsRequest < Struct.new( :analysis_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |