Class: Aws::BedrockAgentRuntime::Types::RerankQuery

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

Overview

Contains information about a query to submit to the reranker model.

Constant Summary collapse

SENSITIVE =
[:text_query]

Instance Attribute Summary collapse

Instance Attribute Details

#text_queryTypes::RerankTextDocument

Contains information about a text query.



8143
8144
8145
8146
8147
8148
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 8143

class RerankQuery < Struct.new(
  :text_query,
  :type)
  SENSITIVE = [:text_query]
  include Aws::Structure
end

#typeString

The type of the query.

Returns:

  • (String)


8143
8144
8145
8146
8147
8148
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 8143

class RerankQuery < Struct.new(
  :text_query,
  :type)
  SENSITIVE = [:text_query]
  include Aws::Structure
end