Skip to content

Commit 73e900b

Browse files
author
AWS
committed
Agents for Amazon Bedrock Update: This release adds support for using Provisioned Throughput with Bedrock Agents.
1 parent 019159d commit 73e900b

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
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": "This release adds support for using Provisioned Throughput with Bedrock Agents."
6+
}

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

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@
822822
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.</p>"
823823
}
824824
},
825-
"documentation":"<p>Contains details about the Lambda function containing the business logic that is carried out upon invoking the action.</p>",
825+
"documentation":"<p>Contains details about the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.</p>",
826826
"union":true
827827
},
828828
"ActionGroupSignature":{
@@ -977,7 +977,7 @@
977977
"members":{
978978
"actionGroupExecutor":{
979979
"shape":"ActionGroupExecutor",
980-
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.</p>"
980+
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.</p>"
981981
},
982982
"actionGroupId":{
983983
"shape":"Id",
@@ -1079,6 +1079,10 @@
10791079
"shape":"Description",
10801080
"documentation":"<p>The description of the alias of the agent.</p>"
10811081
},
1082+
"failureReasons":{
1083+
"shape":"FailureReasons",
1084+
"documentation":"<p>Information on the failure of Provisioned Throughput assigned to an agent alias.</p>"
1085+
},
10821086
"routingConfiguration":{
10831087
"shape":"AgentAliasRoutingConfiguration",
10841088
"documentation":"<p>Contains details about the routing configuration of the alias.</p>"
@@ -1134,11 +1138,14 @@
11341138
},
11351139
"AgentAliasRoutingConfigurationListItem":{
11361140
"type":"structure",
1137-
"required":["agentVersion"],
11381141
"members":{
11391142
"agentVersion":{
11401143
"shape":"Version",
11411144
"documentation":"<p>The version of the agent with which the alias is associated.</p>"
1145+
},
1146+
"provisionedThroughput":{
1147+
"shape":"ProvisionedModelIdentifier",
1148+
"documentation":"<p>Information on the Provisioned Throughput assigned to an agent alias.</p>"
11421149
}
11431150
},
11441151
"documentation":"<p>Contains details about the routing configuration of the alias.</p>"
@@ -1589,7 +1596,7 @@
15891596
"members":{
15901597
"actionGroupExecutor":{
15911598
"shape":"ActionGroupExecutor",
1592-
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.</p>"
1599+
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.</p>"
15931600
},
15941601
"actionGroupName":{
15951602
"shape":"Name",
@@ -3755,6 +3762,12 @@
37553762
"KNOWLEDGE_BASE_RESPONSE_GENERATION"
37563763
]
37573764
},
3765+
"ProvisionedModelIdentifier":{
3766+
"type":"string",
3767+
"max":2048,
3768+
"min":1,
3769+
"pattern":"^((([0-9a-zA-Z][_-]?){1,63})|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:provisioned-model/[a-z0-9]{12}))$"
3770+
},
37583771
"RdsArn":{
37593772
"type":"string",
37603773
"pattern":"^arn:aws(|-cn|-us-gov):rds:[a-zA-Z0-9-]*:[0-9]{12}:cluster:[a-zA-Z0-9-]{1,63}$"
@@ -4443,7 +4456,7 @@
44434456
"members":{
44444457
"dataDeletionPolicy":{
44454458
"shape":"DataDeletionPolicy",
4446-
"documentation":"<p>The data deletion policy assigned to the data source.</p>"
4459+
"documentation":"<p>The data deletion policy of the updated data source.</p>"
44474460
},
44484461
"dataSourceConfiguration":{
44494462
"shape":"DataSourceConfiguration",

0 commit comments

Comments
 (0)