Skip to content

Commit b151888

Browse files
author
AWS
committed
Agents for Amazon Bedrock Update: Introduce a new parameter which represents the user-agent header value used by the Bedrock Knowledge Base Web Connector.
1 parent 0753201 commit b151888

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Agents for Amazon Bedrock",
4+
"contributor": "",
5+
"description": "Introduce a new parameter which represents the user-agent header value used by the Bedrock Knowledge Base Web Connector."
6+
}

services/bedrockagent/src/main/resources/codegen-resources/service-2.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2452,7 +2452,7 @@
24522452
"members":{
24532453
"modelArn":{
24542454
"shape":"BedrockModelArn",
2455-
"documentation":"<p>The ARN of the foundation model or <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html\">inference profile</a> to use for parsing.</p>"
2455+
"documentation":"<p>The ARN of the foundation model to use for parsing.</p>"
24562456
},
24572457
"parsingModality":{
24582458
"shape":"ParsingModality",
@@ -2463,7 +2463,7 @@
24632463
"documentation":"<p>Instructions for interpreting the contents of a document.</p>"
24642464
}
24652465
},
2466-
"documentation":"<p>Settings for a foundation model or <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html\">inference profile</a> used to parse documents for a data source.</p>"
2466+
"documentation":"<p>Settings for a foundation model used to parse documents for a data source.</p>"
24672467
},
24682468
"BedrockModelArn":{
24692469
"type":"string",
@@ -10617,6 +10617,12 @@
1061710617
"min":15,
1061810618
"sensitive":true
1061910619
},
10620+
"UserAgentHeader":{
10621+
"type":"string",
10622+
"max":86,
10623+
"min":61,
10624+
"sensitive":true
10625+
},
1062010626
"ValidateFlowDefinitionRequest":{
1062110627
"type":"structure",
1062210628
"required":["definition"],
@@ -10699,7 +10705,7 @@
1069910705
"members":{
1070010706
"embeddingModelArn":{
1070110707
"shape":"BedrockEmbeddingModelArn",
10702-
"documentation":"<p>The Amazon Resource Name (ARN) of the model or inference profile used to create vector embeddings for the knowledge base.</p>"
10708+
"documentation":"<p>The Amazon Resource Name (ARN) of the model used to create vector embeddings for the knowledge base.</p>"
1070310709
},
1070410710
"embeddingModelConfiguration":{
1070510711
"shape":"EmbeddingModelConfiguration",
@@ -10739,7 +10745,11 @@
1073910745
},
1074010746
"userAgent":{
1074110747
"shape":"UserAgent",
10742-
"documentation":"<p>A string used for identifying the crawler or a bot when it accesses a web server. By default, this is set to <code>bedrockbot_UUID</code> for your crawler. You can optionally append a custom string to <code>bedrockbot_UUID</code> to allowlist a specific user agent permitted to access your source URLs. </p>"
10748+
"documentation":"<p>Returns the user agent suffix for your web crawler.</p>"
10749+
},
10750+
"userAgentHeader":{
10751+
"shape":"UserAgentHeader",
10752+
"documentation":"<p>A string used for identifying the crawler or bot when it accesses a web server. The user agent header value consists of the <code>bedrockbot</code>, UUID, and a user agent suffix for your crawler (if one is provided). By default, it is set to <code>bedrockbot_UUID</code>. You can optionally append a custom suffix to <code>bedrockbot_UUID</code> to allowlist a specific user agent permitted to access your source URLs. </p>"
1074310753
}
1074410754
},
1074510755
"documentation":"<p>The configuration of web URLs that you want to crawl. You should be authorized to crawl the URLs.</p>"

0 commit comments

Comments
 (0)