Class: Aws::BedrockAgentCore::Types::RetrieveMemoryRecordsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::RetrieveMemoryRecordsInput
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in a single call.
-
#memory_id ⇒ String
The identifier of the AgentCore Memory resource from which to retrieve memory records.
-
#namespace ⇒ String
The namespace prefix to filter memory records by.
-
#next_token ⇒ String
The token for the next set of results.
-
#search_criteria ⇒ Types::SearchCriteria
The search criteria to use for finding relevant memory records.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in a single call. The default value is 20.
4032 4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 4032 class RetrieveMemoryRecordsInput < Struct.new( :memory_id, :namespace, :search_criteria, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#memory_id ⇒ String
The identifier of the AgentCore Memory resource from which to retrieve memory records.
4032 4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 4032 class RetrieveMemoryRecordsInput < Struct.new( :memory_id, :namespace, :search_criteria, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace prefix to filter memory records by. Searches for memory records in namespaces that start with the provided prefix.
4032 4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 4032 class RetrieveMemoryRecordsInput < Struct.new( :memory_id, :namespace, :search_criteria, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
4032 4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 4032 class RetrieveMemoryRecordsInput < Struct.new( :memory_id, :namespace, :search_criteria, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#search_criteria ⇒ Types::SearchCriteria
The search criteria to use for finding relevant memory records. This includes the search query, memory strategy ID, and other search parameters.
4032 4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 4032 class RetrieveMemoryRecordsInput < Struct.new( :memory_id, :namespace, :search_criteria, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |