Class: Aws::SageMaker::Types::TotalHits
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TotalHits
- 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
-
#relation ⇒ String
Indicates the relationship between the returned
Value
and 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
: TheValue
is the exact count of matching results.GreaterThanOrEqualTo
: TheValue
is a lower bound of the actual count of matching results.
47942 47943 47944 47945 47946 47947 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 47942 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.
47942 47943 47944 47945 47946 47947 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 47942 class TotalHits < Struct.new( :value, :relation) SENSITIVE = [] include Aws::Structure end |