Class: Aws::SageMaker::Types::TotalHits
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TotalHits
- 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
-
#relation ⇒ String
Indicates the relationship between the returned
Valueand the actual total number of matching results. -
#value ⇒ Integer
The total number of matching results.
Instance Attribute Details
#relation ⇒ String
Indicates the relationship between the returned Value and the actual total number of matching results. Possible values are:
-
EqualTo: TheValueis the exact count of matching results. -
GreaterThanOrEqualTo: TheValueis a lower bound of the actual count of matching results.
49696 49697 49698 49699 49700 49701 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 49696 class TotalHits < Struct.new( :value, :relation) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Integer
The total number of matching results. This value may be exact or an estimate, depending on the Relation field.
49696 49697 49698 49699 49700 49701 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 49696 class TotalHits < Struct.new( :value, :relation) SENSITIVE = [] include Aws::Structure end |