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
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.
49865 49866 49867 49868 49869 49870 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 49865 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.
49865 49866 49867 49868 49869 49870 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 49865 class TotalHits < Struct.new( :value, :relation) SENSITIVE = [] include Aws::Structure end |