Class: Aws::IoTEvents::Types::GetDetectorModelAnalysisResultsRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#analysis_idString

The ID of the analysis result that you want to retrieve.

Returns:

  • (String)


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_resultsInteger

The maximum number of results to be returned per request.

Returns:

  • (Integer)


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_tokenString

The token that you can use to return the next set of results.

Returns:

  • (String)


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