Class: Aws::SageMaker::Types::TotalHits

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

Overview

Represents the total number of matching results and indicates how accurate that count is.

The ‘Value` field provides the count, which may be exact or estimated. The `Relation` field indicates whether it’s an exact figure or a lower bound. This helps understand the full scope of search results, especially when dealing with large result sets.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#relationString

Indicates the relationship between the returned ‘Value` and the actual total number of matching results. Possible values are:

  • ‘EqualTo`: The `Value` is the exact count of matching results.

  • ‘GreaterThanOrEqualTo`: The `Value` is a lower bound of the actual count of matching results.

Returns:

  • (String)


45171
45172
45173
45174
45175
45176
# File 'lib/aws-sdk-sagemaker/types.rb', line 45171

class TotalHits < Struct.new(
  :value,
  :relation)
  SENSITIVE = []
  include Aws::Structure
end

#valueInteger

The total number of matching results. This value may be exact or an estimate, depending on the ‘Relation` field.

Returns:

  • (Integer)


45171
45172
45173
45174
45175
45176
# File 'lib/aws-sdk-sagemaker/types.rb', line 45171

class TotalHits < Struct.new(
  :value,
  :relation)
  SENSITIVE = []
  include Aws::Structure
end