Class: Aws::LookoutEquipment::Types::ListInferenceExecutionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::ListInferenceExecutionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lookoutequipment/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#inference_execution_summaries ⇒ Array<Types::InferenceExecutionSummary>
Provides an array of information about the individual inference executions returned from the ‘ListInferenceExecutions` operation, including model used, inference scheduler, data configuration, and so on.
-
#next_token ⇒ String
An opaque pagination token indicating where to continue the listing of inference executions.
Instance Attribute Details
#inference_execution_summaries ⇒ Array<Types::InferenceExecutionSummary>
Provides an array of information about the individual inference executions returned from the ‘ListInferenceExecutions` operation, including model used, inference scheduler, data configuration, and so on.
<note markdown=“1”> If you don’t supply the ‘InferenceSchedulerName` request parameter, or if you supply the name of an inference scheduler that doesn’t exist, ‘ListInferenceExecutions` returns an empty array in `InferenceExecutionSummaries`.
</note>
3009 3010 3011 3012 3013 3014 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 3009 class ListInferenceExecutionsResponse < Struct.new( :next_token, :inference_execution_summaries) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An opaque pagination token indicating where to continue the listing of inference executions.
3009 3010 3011 3012 3013 3014 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 3009 class ListInferenceExecutionsResponse < Struct.new( :next_token, :inference_execution_summaries) SENSITIVE = [] include Aws::Structure end |