Class: Aws::MachineLearning::Types::DescribeEvaluationsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-machinelearning/types.rb

Overview

Represents the query results from a ‘DescribeEvaluations` operation. The content is essentially a list of `Evaluation`.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The ID of the next page in the paginated results that indicates at least one more page follows.

Returns:

  • (String)


1541
1542
1543
1544
1545
# File 'lib/aws-sdk-machinelearning/types.rb', line 1541

class DescribeEvaluationsOutput < Struct.new(
  :results,
  :next_token)
  include Aws::Structure
end

#resultsArray<Types::Evaluation>

A list of ‘Evaluation` that meet the search criteria.

Returns:



1541
1542
1543
1544
1545
# File 'lib/aws-sdk-machinelearning/types.rb', line 1541

class DescribeEvaluationsOutput < Struct.new(
  :results,
  :next_token)
  include Aws::Structure
end