[ aws . bedrock-agent-runtime ]
Queries a knowledge base and retrieves information from it.
See also: AWS API Documentation
retrieve uses document type values. Document types follow the JSON data model where valid values are: strings, numbers, booleans, null, arrays, and objects. For command input, options and nested parameters that are labeled with the type document must be provided as JSON. Shorthand syntax does not support document types.
retrieve is a paginated operation. Multiple API calls may be issued in order to retrieve the entire data set of results. You can disable pagination by providing the --no-paginate argument.
When using --output text and the --query argument on a paginated response, the --query argument must extract data from the results of the following query expressions: retrievalResults
retrieve
--knowledge-base-id <value>
--retrieval-query <value>
[--retrieval-configuration <value>]
[--guardrail-configuration <value>]
[--cli-input-json | --cli-input-yaml]
[--starting-token <value>]
[--max-items <value>]
[--generate-cli-skeleton <value>]
[--debug]
[--endpoint-url <value>]
[--no-verify-ssl]
[--no-paginate]
[--output <value>]
[--query <value>]
[--profile <value>]
[--region <value>]
[--version <value>]
[--color <value>]
[--no-sign-request]
[--ca-bundle <value>]
[--cli-read-timeout <value>]
[--cli-connect-timeout <value>]
[--cli-binary-format <value>]
[--no-cli-pager]
[--cli-auto-prompt]
[--no-cli-auto-prompt]
--knowledge-base-id (string) [required]
The unique identifier of the knowledge base to query.
Constraints:
- min:
0- max:
10- pattern:
[0-9a-zA-Z]+
--retrieval-query (structure) [required]
Contains the query to send the knowledge base.
text -> (string) [required]
The text of the query made to the knowledge base.
Constraints:
- min:
0- max:
1000
Shorthand Syntax:
text=string
JSON Syntax:
{
"text": "string"
}
--retrieval-configuration (structure)
Contains configurations for the knowledge base query and retrieval process. For more information, see Query configurations .
vectorSearchConfiguration -> (structure) [required]
Contains details about how the results from the vector search should be returned. For more information, see Query configurations .
numberOfResults -> (integer)
The number of source chunks to retrieve.
Constraints:
- min:
1- max:
100overrideSearchType -> (string)
By default, Amazon Bedrock decides a search strategy for you. If you’re using an Amazon OpenSearch Serverless vector store that contains a filterable text field, you can specify whether to query the knowledge base with a
HYBRIDsearch using both vector embeddings and raw text, orSEMANTICsearch using only vector embeddings. For other vector store configurations, onlySEMANTICsearch is available. For more information, see Test a knowledge base .Possible values:
HYBRIDSEMANTICfilter -> (tagged union structure)
Specifies the filters to use on the metadata in the knowledge base data sources before returning results. For more information, see Query configurations .
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:equals,notEquals,greaterThan,greaterThanOrEquals,lessThan,lessThanOrEquals,in,notIn,startsWith,listContains,stringContains,andAll,orAll.equals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value matches thevaluein this object.The following example would return data sources with an
animalattribute whose value iscat:"equals": { "key": "animal", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.notEquals -> (structure)
Knowledge base data sources are returned when:
- It contains a metadata attribute whose name matches the
keyand whose value doesn’t match thevaluein this object.- The key is not present in the document.
The following example would return data sources that don’t contain an
animalattribute whose value iscat."notEquals": { "key": "animal", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.greaterThan -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is greater than thevaluein this object.The following example would return data sources with an
yearattribute whose value is greater than1989:"greaterThan": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.greaterThanOrEquals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is greater than or equal to thevaluein this object.The following example would return data sources with an
yearattribute whose value is greater than or equal to1989:"greaterThanOrEquals": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.lessThan -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is less than thevaluein this object.The following example would return data sources with an
yearattribute whose value is less than to1989."lessThan": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.lessThanOrEquals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is less than or equal to thevaluein this object.The following example would return data sources with an
yearattribute whose value is less than or equal to1989."lessThanOrEquals": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.in -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is in the list specified in thevaluein this object.The following example would return data sources with an
animalattribute that is eithercatordog:"in": { "key": "animal", "value": ["cat", "dog"] }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.notIn -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value isn’t in the list specified in thevaluein this object.The following example would return data sources whose
animalattribute is neithercatnordog."notIn": { "key": "animal", "value": ["cat", "dog"] }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.startsWith -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value starts with thevaluein this object. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.The following example would return data sources with an
animalattribute starts withca(for example,catorcamel)."startsWith": { "key": "animal", "value": "ca" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.listContains -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is a list that contains thevalueas one of its members.The following example would return data sources with an
animalsattribute that is a list containing acatmember (for example["dog", "cat"])."listContains": { "key": "animals", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.stringContains -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is one of the following:
- A string that contains the
valueas a substring. The following example would return data sources with ananimalattribute that contains the substringat(for examplecat)."stringContains": { "key": "animal", "value": "at" }- A list with a member that contains the
valueas a substring. The following example would return data sources with ananimalsattribute that is a list containing a member that contains the substringat(for example["dog", "cat"])."stringContains": { "key": "animals", "value": "at" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.andAll -> (list)
Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.
Constraints:
- min:
2(tagged union structure)
Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see Query configurations . See the examples below to see how to use these filters.
This data type is used in the following API operations:
- Retrieve request – in the
filterfield- RetrieveAndGenerate request – in the
filterfieldNote
This is a Tagged Union structure. Only one of the following top level keys can be set:equals,notEquals,greaterThan,greaterThanOrEquals,lessThan,lessThanOrEquals,in,notIn,startsWith,listContains,stringContains,andAll,orAll.equals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value matches thevaluein this object.The following example would return data sources with an
animalattribute whose value iscat:"equals": { "key": "animal", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.notEquals -> (structure)
Knowledge base data sources are returned when:
- It contains a metadata attribute whose name matches the
keyand whose value doesn’t match thevaluein this object.- The key is not present in the document.
The following example would return data sources that don’t contain an
animalattribute whose value iscat."notEquals": { "key": "animal", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.greaterThan -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is greater than thevaluein this object.The following example would return data sources with an
yearattribute whose value is greater than1989:"greaterThan": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.greaterThanOrEquals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is greater than or equal to thevaluein this object.The following example would return data sources with an
yearattribute whose value is greater than or equal to1989:"greaterThanOrEquals": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.lessThan -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is less than thevaluein this object.The following example would return data sources with an
yearattribute whose value is less than to1989."lessThan": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.lessThanOrEquals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is less than or equal to thevaluein this object.The following example would return data sources with an
yearattribute whose value is less than or equal to1989."lessThanOrEquals": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.in -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is in the list specified in thevaluein this object.The following example would return data sources with an
animalattribute that is eithercatordog:"in": { "key": "animal", "value": ["cat", "dog"] }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.notIn -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value isn’t in the list specified in thevaluein this object.The following example would return data sources whose
animalattribute is neithercatnordog."notIn": { "key": "animal", "value": ["cat", "dog"] }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.startsWith -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value starts with thevaluein this object. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.The following example would return data sources with an
animalattribute starts withca(for example,catorcamel)."startsWith": { "key": "animal", "value": "ca" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.listContains -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is a list that contains thevalueas one of its members.The following example would return data sources with an
animalsattribute that is a list containing acatmember (for example["dog", "cat"])."listContains": { "key": "animals", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.stringContains -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is one of the following:
- A string that contains the
valueas a substring. The following example would return data sources with ananimalattribute that contains the substringat(for examplecat)."stringContains": { "key": "animal", "value": "at" }- A list with a member that contains the
valueas a substring. The following example would return data sources with ananimalsattribute that is a list containing a member that contains the substringat(for example["dog", "cat"])."stringContains": { "key": "animals", "value": "at" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.andAll -> (list)
Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.
Constraints:
- min:
2( … recursive … )
orAll -> (list)
Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.
Constraints:
- min:
2( … recursive … )
orAll -> (list)
Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.
Constraints:
- min:
2(tagged union structure)
Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see Query configurations . See the examples below to see how to use these filters.
This data type is used in the following API operations:
- Retrieve request – in the
filterfield- RetrieveAndGenerate request – in the
filterfieldNote
This is a Tagged Union structure. Only one of the following top level keys can be set:equals,notEquals,greaterThan,greaterThanOrEquals,lessThan,lessThanOrEquals,in,notIn,startsWith,listContains,stringContains,andAll,orAll.equals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value matches thevaluein this object.The following example would return data sources with an
animalattribute whose value iscat:"equals": { "key": "animal", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.notEquals -> (structure)
Knowledge base data sources are returned when:
- It contains a metadata attribute whose name matches the
keyand whose value doesn’t match thevaluein this object.- The key is not present in the document.
The following example would return data sources that don’t contain an
animalattribute whose value iscat."notEquals": { "key": "animal", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.greaterThan -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is greater than thevaluein this object.The following example would return data sources with an
yearattribute whose value is greater than1989:"greaterThan": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.greaterThanOrEquals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is greater than or equal to thevaluein this object.The following example would return data sources with an
yearattribute whose value is greater than or equal to1989:"greaterThanOrEquals": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.lessThan -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is less than thevaluein this object.The following example would return data sources with an
yearattribute whose value is less than to1989."lessThan": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.lessThanOrEquals -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is less than or equal to thevaluein this object.The following example would return data sources with an
yearattribute whose value is less than or equal to1989."lessThanOrEquals": { "key": "year", "value": 1989 }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.in -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is in the list specified in thevaluein this object.The following example would return data sources with an
animalattribute that is eithercatordog:"in": { "key": "animal", "value": ["cat", "dog"] }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.notIn -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value isn’t in the list specified in thevaluein this object.The following example would return data sources whose
animalattribute is neithercatnordog."notIn": { "key": "animal", "value": ["cat", "dog"] }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.startsWith -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value starts with thevaluein this object. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.The following example would return data sources with an
animalattribute starts withca(for example,catorcamel)."startsWith": { "key": "animal", "value": "ca" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.listContains -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is a list that contains thevalueas one of its members.The following example would return data sources with an
animalsattribute that is a list containing acatmember (for example["dog", "cat"])."listContains": { "key": "animals", "value": "cat" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.stringContains -> (structure)
Knowledge base data sources are returned if they contain a metadata attribute whose name matches the
keyand whose value is one of the following:
- A string that contains the
valueas a substring. The following example would return data sources with ananimalattribute that contains the substringat(for examplecat)."stringContains": { "key": "animal", "value": "at" }- A list with a member that contains the
valueas a substring. The following example would return data sources with ananimalsattribute that is a list containing a member that contains the substringat(for example["dog", "cat"])."stringContains": { "key": "animals", "value": "at" }key -> (string) [required]
The name that the metadata attribute must match.
Constraints:
- min:
1- max:
100value -> (document) [required]
The value to whcih to compare the value of the metadata attribute.andAll -> (list)
Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.
Constraints:
- min:
2( … recursive … )
orAll -> (list)
Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.
Constraints:
- min:
2( … recursive … )
rerankingConfiguration -> (structure)
Contains configurations for reranking the retrieved results. For more information, see Improve the relevance of query responses with a reranker model .
type -> (string) [required]
The type of reranker model.
Possible values:
BEDROCK_RERANKING_MODELbedrockRerankingConfiguration -> (structure)
Contains configurations for an Amazon Bedrock reranker model.
modelConfiguration -> (structure) [required]
Contains configurations for the reranker model.
modelArn -> (string) [required]
The ARN of the reranker model to use.
Constraints:
- min:
1- max:
2048- pattern:
(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/(.*))?additionalModelRequestFields -> (map)
A JSON object whose keys are request fields for the model and whose values are values for those fields.
key -> (string)
Constraints:
- min:
1- max:
100value -> (document)
numberOfRerankedResults -> (integer)
The number of results to return after reranking.
Constraints:
- min:
1- max:
100metadataConfiguration -> (structure)
Contains configurations for the metadata to use in reranking.
selectionMode -> (string) [required]
Specifies whether to consider all metadata when reranking, or only the metadata that you select. If you specify
SELECTIVE, include theselectiveModeConfigurationfield.Possible values:
SELECTIVEALLselectiveModeConfiguration -> (tagged union structure)
Contains configurations for the metadata fields to include or exclude when considering reranking.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:fieldsToInclude,fieldsToExclude.fieldsToInclude -> (list)
An array of objects, each of which specifies a metadata field to include in consideration when reranking. The remaining metadata fields are ignored.
Constraints:
- min:
1- max:
100(structure)
Contains information for a metadata field to include in or exclude from consideration when reranking.
fieldName -> (string) [required]
The name of a metadata field to include in or exclude from consideration when reranking.
Constraints:
- min:
1- max:
2000fieldsToExclude -> (list)
An array of objects, each of which specifies a metadata field to exclude from consideration when reranking.
Constraints:
- min:
1- max:
100(structure)
Contains information for a metadata field to include in or exclude from consideration when reranking.
fieldName -> (string) [required]
The name of a metadata field to include in or exclude from consideration when reranking.
Constraints:
- min:
1- max:
2000implicitFilterConfiguration -> (structure)
Settings for implicit filtering.
metadataAttributes -> (list) [required]
Metadata that can be used in a filter.
Constraints:
- min:
1- max:
25(structure)
Details about a metadata attribute.
key -> (string) [required]
The attribute’s key.
Constraints:
- min:
1- max:
256- pattern:
[\s\S]+type -> (string) [required]
The attribute’s type.
Possible values:
STRINGNUMBERBOOLEANSTRING_LISTdescription -> (string) [required]
The attribute’s description.
Constraints:
- min:
1- max:
1024- pattern:
[\s\S]+modelArn -> (string) [required]
The model that generates the filter.
Constraints:
- min:
1- max:
2048- pattern:
(arn:aws(-[^:]+)?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?
JSON Syntax:
{
"vectorSearchConfiguration": {
"numberOfResults": integer,
"overrideSearchType": "HYBRID"|"SEMANTIC",
"filter": {
"equals": {
"key": "string",
"value": {...}
},
"notEquals": {
"key": "string",
"value": {...}
},
"greaterThan": {
"key": "string",
"value": {...}
},
"greaterThanOrEquals": {
"key": "string",
"value": {...}
},
"lessThan": {
"key": "string",
"value": {...}
},
"lessThanOrEquals": {
"key": "string",
"value": {...}
},
"in": {
"key": "string",
"value": {...}
},
"notIn": {
"key": "string",
"value": {...}
},
"startsWith": {
"key": "string",
"value": {...}
},
"listContains": {
"key": "string",
"value": {...}
},
"stringContains": {
"key": "string",
"value": {...}
},
"andAll": [
{
"equals": {
"key": "string",
"value": {...}
},
"notEquals": {
"key": "string",
"value": {...}
},
"greaterThan": {
"key": "string",
"value": {...}
},
"greaterThanOrEquals": {
"key": "string",
"value": {...}
},
"lessThan": {
"key": "string",
"value": {...}
},
"lessThanOrEquals": {
"key": "string",
"value": {...}
},
"in": {
"key": "string",
"value": {...}
},
"notIn": {
"key": "string",
"value": {...}
},
"startsWith": {
"key": "string",
"value": {...}
},
"listContains": {
"key": "string",
"value": {...}
},
"stringContains": {
"key": "string",
"value": {...}
},
"andAll": [
{ ... recursive ... }
...
],
"orAll": [
{ ... recursive ... }
...
]
}
...
],
"orAll": [
{
"equals": {
"key": "string",
"value": {...}
},
"notEquals": {
"key": "string",
"value": {...}
},
"greaterThan": {
"key": "string",
"value": {...}
},
"greaterThanOrEquals": {
"key": "string",
"value": {...}
},
"lessThan": {
"key": "string",
"value": {...}
},
"lessThanOrEquals": {
"key": "string",
"value": {...}
},
"in": {
"key": "string",
"value": {...}
},
"notIn": {
"key": "string",
"value": {...}
},
"startsWith": {
"key": "string",
"value": {...}
},
"listContains": {
"key": "string",
"value": {...}
},
"stringContains": {
"key": "string",
"value": {...}
},
"andAll": [
{ ... recursive ... }
...
],
"orAll": [
{ ... recursive ... }
...
]
}
...
]
},
"rerankingConfiguration": {
"type": "BEDROCK_RERANKING_MODEL",
"bedrockRerankingConfiguration": {
"modelConfiguration": {
"modelArn": "string",
"additionalModelRequestFields": {"string": {...}
...}
},
"numberOfRerankedResults": integer,
"metadataConfiguration": {
"selectionMode": "SELECTIVE"|"ALL",
"selectiveModeConfiguration": {
"fieldsToInclude": [
{
"fieldName": "string"
}
...
],
"fieldsToExclude": [
{
"fieldName": "string"
}
...
]
}
}
}
},
"implicitFilterConfiguration": {
"metadataAttributes": [
{
"key": "string",
"type": "STRING"|"NUMBER"|"BOOLEAN"|"STRING_LIST",
"description": "string"
}
...
],
"modelArn": "string"
}
}
}
--guardrail-configuration (structure)
Guardrail settings.
guardrailId -> (string) [required]
The unique identifier for the guardrail.
Constraints:
- min:
0- max:
64- pattern:
[a-z0-9]+guardrailVersion -> (string) [required]
The version of the guardrail.
Constraints:
- min:
1- max:
5- pattern:
(([1-9][0-9]{0,7})|(DRAFT))
Shorthand Syntax:
guardrailId=string,guardrailVersion=string
JSON Syntax:
{
"guardrailId": "string",
"guardrailVersion": "string"
}
--cli-input-json | --cli-input-yaml (string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml.
--starting-token (string)
A token to specify where to start paginating. This is the
NextTokenfrom a previously truncated response.For usage examples, see Pagination in the AWS Command Line Interface User Guide .
--max-items (integer)
The total number of items to return in the command’s output. If the total number of items available is more than the value specified, a
NextTokenis provided in the command’s output. To resume pagination, provide theNextTokenvalue in thestarting-tokenargument of a subsequent command. Do not use theNextTokenresponse element directly outside of the AWS CLI.For usage examples, see Pagination in the AWS Command Line Interface User Guide .
--generate-cli-skeleton (string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input, prints a sample input JSON that can be used as an argument for --cli-input-json. Similarly, if provided yaml-input it will print a sample input YAML that can be used with --cli-input-yaml. If provided with the value output, it validates the command inputs and returns a sample output JSON for that command. The generated JSON skeleton is not stable between versions of the AWS CLI and there are no backwards compatibility guarantees in the JSON skeleton generated.
--debug (boolean)
Turn on debug logging.
--endpoint-url (string)
Override command’s default URL with the given URL.
--no-verify-ssl (boolean)
By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates. This option overrides the default behavior of verifying SSL certificates.
--no-paginate (boolean)
Disable automatic pagination. If automatic pagination is disabled, the AWS CLI will only make one call, for the first page of results.
--output (string)
The formatting style for command output.
--query (string)
A JMESPath query to use in filtering the response data.
--profile (string)
Use a specific profile from your credential file.
--region (string)
The region to use. Overrides config/env settings.
--version (string)
Display the version of this tool.
--color (string)
Turn on/off color output.
--no-sign-request (boolean)
Do not sign requests. Credentials will not be loaded if this argument is provided.
--ca-bundle (string)
The CA certificate bundle to use when verifying SSL certificates. Overrides config/env settings.
--cli-read-timeout (int)
The maximum socket read time in seconds. If the value is set to 0, the socket read will be blocking and not timeout. The default value is 60 seconds.
--cli-connect-timeout (int)
The maximum socket connect time in seconds. If the value is set to 0, the socket connect will be blocking and not timeout. The default value is 60 seconds.
--cli-binary-format (string)
The formatting style to be used for binary blobs. The default format is base64. The base64 format expects binary blobs to be provided as a base64 encoded string. The raw-in-base64-out format preserves compatibility with AWS CLI V1 behavior and binary values must be passed literally. When providing contents from a file that map to a binary blob fileb:// will always be treated as binary and use the file contents directly regardless of the cli-binary-format setting. When using file:// the file contents will need to properly formatted for the configured cli-binary-format.
--no-cli-pager (boolean)
Disable cli pager for output.
--cli-auto-prompt (boolean)
Automatically prompt for CLI input parameters.
--no-cli-auto-prompt (boolean)
Disable automatically prompt for CLI input parameters.
retrievalResults -> (list)
A list of results from querying the knowledge base.
(structure)
Details about a result from querying the knowledge base.
This data type is used in the following API operations:
- Retrieve response – in the
retrievalResultsfieldcontent -> (structure) [required]
Contains information about the content of the chunk.
type -> (string)
The type of content in the retrieval result.
Possible values:
TEXTIMAGEROWtext -> (string)
The cited text from the data source.byteContent -> (string)
A data URI with base64-encoded content from the data source. The URI is in the following format: returned in the following format:data:image/jpeg;base64,${base64-encoded string}.row -> (list)
Specifies information about the rows with the cells to return in retrieval.
(structure)
Contains information about a column with a cell to return in retrieval.
columnName -> (string)
The name of the column.columnValue -> (string)
The value in the column.type -> (string)
The data type of the value.
Possible values:
BLOBBOOLEANDOUBLENULLLONGSTRINGlocation -> (structure)
Contains information about the location of the data source.
type -> (string) [required]
The type of data source location.
Possible values:
S3WEBCONFLUENCESALESFORCESHAREPOINTCUSTOMKENDRASQLs3Location -> (structure)
The S3 data source location.
uri -> (string)
The S3 URI for the data source location.webLocation -> (structure)
The web URL/URLs data source location.
url -> (string)
The web URL/URLs for the data source location.confluenceLocation -> (structure)
The Confluence data source location.
url -> (string)
The Confluence host URL for the data source location.salesforceLocation -> (structure)
The Salesforce data source location.
url -> (string)
The Salesforce host URL for the data source location.sharePointLocation -> (structure)
The SharePoint data source location.
url -> (string)
The SharePoint site URL for the data source location.customDocumentLocation -> (structure)
Specifies the location of a document in a custom data source.
id -> (string)
The ID of the document.kendraDocumentLocation -> (structure)
The location of a document in Amazon Kendra.
uri -> (string)
The document’s uri.sqlLocation -> (structure)
Specifies information about the SQL query used to retrieve the result.
query -> (string)
The SQL query used to retrieve the result.score -> (double)
The level of relevance of the result to the query.metadata -> (map)
Contains metadata attributes and their values for the file in the data source. For more information, see Metadata and filtering .
Constraints:
- min:
1key -> (string)
Constraints:
- min:
1- max:
100value -> (document)
guardrailAction -> (string)
Specifies if there is a guardrail intervention in the response.
Possible values:
INTERVENEDNONE
nextToken -> (string)
If there are more results than can fit in the response, the response returns a
nextToken. Use this token in thenextTokenfield of another request to retrieve the next batch of results.Constraints:
- min:
1- max:
2048- pattern:
\S*