Skip to content

Commit f7a3e5a

Browse files
author
AWS
committed
Amazon Bedrock Runtime Update: Amazon Bedrock Runtime Service Tier Support Launch
1 parent f85ec6b commit f7a3e5a

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
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": "Amazon Bedrock Runtime",
4+
"contributor": "",
5+
"description": "Amazon Bedrock Runtime Service Tier Support Launch"
6+
}

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

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -869,6 +869,10 @@
869869
"performanceConfig":{
870870
"shape":"PerformanceConfiguration",
871871
"documentation":"<p>Model performance settings for the request.</p>"
872+
},
873+
"serviceTier":{
874+
"shape":"ServiceTier",
875+
"documentation":"<p>Specifies the processing tier configuration used for serving the request.</p>"
872876
}
873877
}
874878
},
@@ -919,6 +923,10 @@
919923
"performanceConfig":{
920924
"shape":"PerformanceConfiguration",
921925
"documentation":"<p>Model performance settings for the request.</p>"
926+
},
927+
"serviceTier":{
928+
"shape":"ServiceTier",
929+
"documentation":"<p>Specifies the processing tier configuration used for serving the request.</p>"
922930
}
923931
}
924932
},
@@ -944,6 +952,10 @@
944952
"performanceConfig":{
945953
"shape":"PerformanceConfiguration",
946954
"documentation":"<p>Model performance configuration metadata for the conversation stream event.</p>"
955+
},
956+
"serviceTier":{
957+
"shape":"ServiceTier",
958+
"documentation":"<p>Specifies the processing tier configuration used for serving the request.</p>"
947959
}
948960
},
949961
"documentation":"<p>A conversation stream metadata event.</p>",
@@ -1060,6 +1072,10 @@
10601072
"performanceConfig":{
10611073
"shape":"PerformanceConfiguration",
10621074
"documentation":"<p>Model performance settings for the request.</p>"
1075+
},
1076+
"serviceTier":{
1077+
"shape":"ServiceTier",
1078+
"documentation":"<p>Specifies the processing tier configuration used for serving the request.</p>"
10631079
}
10641080
}
10651081
},
@@ -1108,6 +1124,14 @@
11081124
"system":{
11091125
"shape":"SystemContentBlocks",
11101126
"documentation":"<p>The system content blocks to count tokens for. System content provides instructions or context to the model about how it should behave or respond. The token count will include any system content provided.</p>"
1127+
},
1128+
"toolConfig":{
1129+
"shape":"ToolConfiguration",
1130+
"documentation":"<p>The toolConfig of Converse input request to count tokens for. Configuration information for the tools that the model can use when generating a response.</p>"
1131+
},
1132+
"additionalModelRequestFields":{
1133+
"shape":"Document",
1134+
"documentation":"<p>The additionalModelRequestFields of Converse input request to count tokens for. Use this field when you want to pass additional parameters that the model supports.</p>"
11111135
}
11121136
},
11131137
"documentation":"<p>The inputs from a <code>Converse</code> API request for token counting.</p> <p>This structure mirrors the input format for the <code>Converse</code> operation, allowing you to count tokens for conversation-based inference requests.</p>"
@@ -2838,6 +2862,12 @@
28382862
"documentation":"<p>Model performance settings for the request.</p>",
28392863
"location":"header",
28402864
"locationName":"X-Amzn-Bedrock-PerformanceConfig-Latency"
2865+
},
2866+
"serviceTier":{
2867+
"shape":"ServiceTierType",
2868+
"documentation":"<p>Specifies the processing tier type used for serving the request.</p>",
2869+
"location":"header",
2870+
"locationName":"X-Amzn-Bedrock-Service-Tier"
28412871
}
28422872
},
28432873
"payload":"body"
@@ -2864,6 +2894,12 @@
28642894
"documentation":"<p>Model performance settings for the request.</p>",
28652895
"location":"header",
28662896
"locationName":"X-Amzn-Bedrock-PerformanceConfig-Latency"
2897+
},
2898+
"serviceTier":{
2899+
"shape":"ServiceTierType",
2900+
"documentation":"<p>Specifies the processing tier type used for serving the request.</p>",
2901+
"location":"header",
2902+
"locationName":"X-Amzn-Bedrock-Service-Tier"
28672903
}
28682904
},
28692905
"payload":"body"
@@ -3005,6 +3041,12 @@
30053041
"documentation":"<p>Model performance settings for the request.</p>",
30063042
"location":"header",
30073043
"locationName":"X-Amzn-Bedrock-PerformanceConfig-Latency"
3044+
},
3045+
"serviceTier":{
3046+
"shape":"ServiceTierType",
3047+
"documentation":"<p>Specifies the processing tier type used for serving the request.</p>",
3048+
"location":"header",
3049+
"locationName":"X-Amzn-Bedrock-Service-Tier"
30083050
}
30093051
},
30103052
"payload":"body"
@@ -3031,6 +3073,12 @@
30313073
"documentation":"<p>Model performance settings for the request.</p>",
30323074
"location":"header",
30333075
"locationName":"X-Amzn-Bedrock-PerformanceConfig-Latency"
3076+
},
3077+
"serviceTier":{
3078+
"shape":"ServiceTierType",
3079+
"documentation":"<p>Specifies the processing tier type used for serving the request.</p>",
3080+
"location":"header",
3081+
"locationName":"X-Amzn-Bedrock-Service-Tier"
30343082
}
30353083
},
30363084
"payload":"body"
@@ -3474,6 +3522,25 @@
34743522
},
34753523
"exception":true
34763524
},
3525+
"ServiceTier":{
3526+
"type":"structure",
3527+
"required":["type"],
3528+
"members":{
3529+
"type":{
3530+
"shape":"ServiceTierType",
3531+
"documentation":"<p>Specifies the processing tier type used for serving the request.</p>"
3532+
}
3533+
},
3534+
"documentation":"<p>Specifies the processing tier configuration used for serving the request.</p>"
3535+
},
3536+
"ServiceTierType":{
3537+
"type":"string",
3538+
"enum":[
3539+
"priority",
3540+
"default",
3541+
"flex"
3542+
]
3543+
},
34773544
"ServiceUnavailableException":{
34783545
"type":"structure",
34793546
"members":{

0 commit comments

Comments
 (0)