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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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)


45729
45730
45731
45732
45733
45734
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 45729

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)


45729
45730
45731
45732
45733
45734
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 45729

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