|
2500 | 2500 | },
|
2501 | 2501 | "modelArn":{
|
2502 | 2502 | "shape":"BedrockModelArn",
|
2503 |
| - "documentation":"<p>The Amazon Resource Name (ARN) of the foundation model used for context enrichment.</p>" |
| 2503 | + "documentation":"<p>The Amazon Resource Name (ARN) of the model used to create vector embeddings for the knowledge base.</p>" |
2504 | 2504 | }
|
2505 | 2505 | },
|
2506 | 2506 | "documentation":"<p>Context enrichment configuration is used to provide additional context to the RAG application using Amazon Bedrock foundation models.</p>"
|
|
6647 | 6647 | "REDIS_ENTERPRISE_CLOUD",
|
6648 | 6648 | "RDS",
|
6649 | 6649 | "MONGO_DB_ATLAS",
|
6650 |
| - "NEPTUNE_ANALYTICS" |
| 6650 | + "NEPTUNE_ANALYTICS", |
| 6651 | + "OPENSEARCH_MANAGED_CLUSTER" |
6651 | 6652 | ]
|
6652 | 6653 | },
|
6653 | 6654 | "KnowledgeBaseSummaries":{
|
|
7778 | 7779 | "type":"string",
|
7779 | 7780 | "pattern":"^[0-9]{1,5}$"
|
7780 | 7781 | },
|
| 7782 | + "OpenSearchManagedClusterConfiguration":{ |
| 7783 | + "type":"structure", |
| 7784 | + "required":[ |
| 7785 | + "domainArn", |
| 7786 | + "domainEndpoint", |
| 7787 | + "fieldMapping", |
| 7788 | + "vectorIndexName" |
| 7789 | + ], |
| 7790 | + "members":{ |
| 7791 | + "domainArn":{ |
| 7792 | + "shape":"OpenSearchManagedClusterDomainArn", |
| 7793 | + "documentation":"<p>The Amazon Resource Name (ARN) of the OpenSearch domain.</p>" |
| 7794 | + }, |
| 7795 | + "domainEndpoint":{ |
| 7796 | + "shape":"OpenSearchManagedClusterDomainEndpoint", |
| 7797 | + "documentation":"<p>The endpoint URL the OpenSearch domain.</p>" |
| 7798 | + }, |
| 7799 | + "fieldMapping":{ |
| 7800 | + "shape":"OpenSearchManagedClusterFieldMapping", |
| 7801 | + "documentation":"<p>Contains the names of the fields to which to map information about the vector store.</p>" |
| 7802 | + }, |
| 7803 | + "vectorIndexName":{ |
| 7804 | + "shape":"OpenSearchManagedClusterIndexName", |
| 7805 | + "documentation":"<p>The name of the vector store.</p>" |
| 7806 | + } |
| 7807 | + }, |
| 7808 | + "documentation":"<p>Contains details about the Managed Cluster configuration of the knowledge base in Amazon OpenSearch Service. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html\">Create a vector index in OpenSearch Managed Cluster</a>.</p>" |
| 7809 | + }, |
| 7810 | + "OpenSearchManagedClusterDomainArn":{ |
| 7811 | + "type":"string", |
| 7812 | + "max":2048, |
| 7813 | + "min":0, |
| 7814 | + "pattern":"^arn:aws(|-cn|-us-gov|-iso):es:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:domain/[a-z][a-z0-9-]{3,28}$" |
| 7815 | + }, |
| 7816 | + "OpenSearchManagedClusterDomainEndpoint":{ |
| 7817 | + "type":"string", |
| 7818 | + "max":2048, |
| 7819 | + "min":0, |
| 7820 | + "pattern":"^https://.*$" |
| 7821 | + }, |
| 7822 | + "OpenSearchManagedClusterFieldMapping":{ |
| 7823 | + "type":"structure", |
| 7824 | + "required":[ |
| 7825 | + "metadataField", |
| 7826 | + "textField", |
| 7827 | + "vectorField" |
| 7828 | + ], |
| 7829 | + "members":{ |
| 7830 | + "metadataField":{ |
| 7831 | + "shape":"FieldName", |
| 7832 | + "documentation":"<p>The name of the field in which Amazon Bedrock stores metadata about the vector store.</p>" |
| 7833 | + }, |
| 7834 | + "textField":{ |
| 7835 | + "shape":"FieldName", |
| 7836 | + "documentation":"<p>The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to the chunking strategy you choose.</p>" |
| 7837 | + }, |
| 7838 | + "vectorField":{ |
| 7839 | + "shape":"FieldName", |
| 7840 | + "documentation":"<p>The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.</p>" |
| 7841 | + } |
| 7842 | + }, |
| 7843 | + "documentation":"<p>Contains the names of the fields to which to map information about the vector store.</p>" |
| 7844 | + }, |
| 7845 | + "OpenSearchManagedClusterIndexName":{ |
| 7846 | + "type":"string", |
| 7847 | + "max":2048, |
| 7848 | + "min":1, |
| 7849 | + "pattern":"^(?![\\-_+.])[a-z0-9][a-z0-9\\-_\\.]*$", |
| 7850 | + "sensitive":true |
| 7851 | + }, |
7781 | 7852 | "OpenSearchServerlessCollectionArn":{
|
7782 | 7853 | "type":"string",
|
7783 | 7854 | "max":2048,
|
|
9503 | 9574 | "shape":"NeptuneAnalyticsConfiguration",
|
9504 | 9575 | "documentation":"<p>Contains details about the Neptune Analytics configuration of the knowledge base in Amazon Neptune. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-neptune.html\">Create a vector index in Amazon Neptune Analytics.</a>.</p>"
|
9505 | 9576 | },
|
| 9577 | + "opensearchManagedClusterConfiguration":{ |
| 9578 | + "shape":"OpenSearchManagedClusterConfiguration", |
| 9579 | + "documentation":"<p>Contains details about the storage configuration of the knowledge base in OpenSearch Managed Cluster. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html\">Create a vector index in Amazon OpenSearch Service</a>.</p>" |
| 9580 | + }, |
9506 | 9581 | "opensearchServerlessConfiguration":{
|
9507 | 9582 | "shape":"OpenSearchServerlessConfiguration",
|
9508 | 9583 | "documentation":"<p>Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.</p>"
|
|
10118 | 10193 | },
|
10119 | 10194 | "parentActionGroupSignatureParams":{
|
10120 | 10195 | "shape":"ActionGroupSignatureParams",
|
10121 |
| - "documentation":"<p>The configuration settings for a computer use action.</p> <important> <p> Computer use is a new Anthropic Claude model capability (in beta) available with Claude 3.7 and Claude 3.5 Sonnet v2 only. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html\">Configure an Amazon Bedrock Agent to complete tasks with computer use tools</a>. </p> </important>" |
| 10196 | + "documentation":"<p>The configuration settings for a computer use action.</p> <important> <p> Computer use is a new Anthropic Claude model capability (in beta) available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html\">Configure an Amazon Bedrock Agent to complete tasks with computer use tools</a>. </p> </important>" |
10122 | 10197 | }
|
10123 | 10198 | }
|
10124 | 10199 | },
|
|
0 commit comments