Class: Aws::MachineLearning::Types::DescribeEvaluationsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::DescribeEvaluationsOutput
- Defined in:
- gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb
Overview
Represents the query results from a DescribeEvaluations
operation.
The content is essentially a list of Evaluation
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The ID of the next page in the paginated results that indicates at least one more page follows.
-
#results ⇒ Array<Types::Evaluation>
A list of
Evaluation
that meet the search criteria.
Instance Attribute Details
#next_token ⇒ String
The ID of the next page in the paginated results that indicates at least one more page follows.
1385 1386 1387 1388 1389 1390 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 1385 class DescribeEvaluationsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end |
#results ⇒ Array<Types::Evaluation>
A list of Evaluation
that meet the search criteria.
1385 1386 1387 1388 1389 1390 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 1385 class DescribeEvaluationsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end |