Skip to content

Commit a30f45a

Browse files
Update SDK models
1 parent d8ccbf9 commit a30f45a

File tree

2,045 files changed

+188546
-7881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,045 files changed

+188546
-7881
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ members = [
308308
"sdk/networkmonitor",
309309
"sdk/notifications",
310310
"sdk/notificationscontacts",
311+
"sdk/novaact",
311312
"sdk/oam",
312313
"sdk/observabilityadmin",
313314
"sdk/odb",

aws-models/bedrock-agentcore-control.json

Lines changed: 9629 additions & 3608 deletions
Large diffs are not rendered by default.

aws-models/bedrock-agentcore.json

Lines changed: 460 additions & 9 deletions
Large diffs are not rendered by default.

aws-models/bedrock-runtime.json

Lines changed: 241 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,6 +1068,153 @@
10681068
"smithy.api#documentation": "<p>A summary of an asynchronous invocation.</p>"
10691069
}
10701070
},
1071+
"com.amazonaws.bedrockruntime#AudioBlock": {
1072+
"type": "structure",
1073+
"members": {
1074+
"format": {
1075+
"target": "com.amazonaws.bedrockruntime#AudioFormat",
1076+
"traits": {
1077+
"smithy.api#documentation": "<p>The format of the audio data, such as MP3, WAV, FLAC, or other supported audio formats.</p>",
1078+
"smithy.api#required": {}
1079+
}
1080+
},
1081+
"source": {
1082+
"target": "com.amazonaws.bedrockruntime#AudioSource",
1083+
"traits": {
1084+
"smithy.api#documentation": "<p>The source of the audio data, which can be provided as raw bytes or an S3 location.</p>",
1085+
"smithy.api#required": {}
1086+
}
1087+
},
1088+
"error": {
1089+
"target": "com.amazonaws.bedrockruntime#ErrorBlock",
1090+
"traits": {
1091+
"smithy.api#documentation": "<p>Error information if the audio block could not be processed or contains invalid data.</p>"
1092+
}
1093+
}
1094+
},
1095+
"traits": {
1096+
"smithy.api#documentation": "<p>An audio content block that contains audio data in various supported formats.</p>"
1097+
}
1098+
},
1099+
"com.amazonaws.bedrockruntime#AudioFormat": {
1100+
"type": "enum",
1101+
"members": {
1102+
"MP3": {
1103+
"target": "smithy.api#Unit",
1104+
"traits": {
1105+
"smithy.api#enumValue": "mp3"
1106+
}
1107+
},
1108+
"OPUS": {
1109+
"target": "smithy.api#Unit",
1110+
"traits": {
1111+
"smithy.api#enumValue": "opus"
1112+
}
1113+
},
1114+
"WAV": {
1115+
"target": "smithy.api#Unit",
1116+
"traits": {
1117+
"smithy.api#enumValue": "wav"
1118+
}
1119+
},
1120+
"AAC": {
1121+
"target": "smithy.api#Unit",
1122+
"traits": {
1123+
"smithy.api#enumValue": "aac"
1124+
}
1125+
},
1126+
"FLAC": {
1127+
"target": "smithy.api#Unit",
1128+
"traits": {
1129+
"smithy.api#enumValue": "flac"
1130+
}
1131+
},
1132+
"MP4": {
1133+
"target": "smithy.api#Unit",
1134+
"traits": {
1135+
"smithy.api#enumValue": "mp4"
1136+
}
1137+
},
1138+
"OGG": {
1139+
"target": "smithy.api#Unit",
1140+
"traits": {
1141+
"smithy.api#enumValue": "ogg"
1142+
}
1143+
},
1144+
"MKV": {
1145+
"target": "smithy.api#Unit",
1146+
"traits": {
1147+
"smithy.api#enumValue": "mkv"
1148+
}
1149+
},
1150+
"MKA": {
1151+
"target": "smithy.api#Unit",
1152+
"traits": {
1153+
"smithy.api#enumValue": "mka"
1154+
}
1155+
},
1156+
"X_AAC": {
1157+
"target": "smithy.api#Unit",
1158+
"traits": {
1159+
"smithy.api#enumValue": "x-aac"
1160+
}
1161+
},
1162+
"M4A": {
1163+
"target": "smithy.api#Unit",
1164+
"traits": {
1165+
"smithy.api#enumValue": "m4a"
1166+
}
1167+
},
1168+
"MPEG": {
1169+
"target": "smithy.api#Unit",
1170+
"traits": {
1171+
"smithy.api#enumValue": "mpeg"
1172+
}
1173+
},
1174+
"MPGA": {
1175+
"target": "smithy.api#Unit",
1176+
"traits": {
1177+
"smithy.api#enumValue": "mpga"
1178+
}
1179+
},
1180+
"PCM": {
1181+
"target": "smithy.api#Unit",
1182+
"traits": {
1183+
"smithy.api#enumValue": "pcm"
1184+
}
1185+
},
1186+
"WEBM": {
1187+
"target": "smithy.api#Unit",
1188+
"traits": {
1189+
"smithy.api#enumValue": "webm"
1190+
}
1191+
}
1192+
}
1193+
},
1194+
"com.amazonaws.bedrockruntime#AudioSource": {
1195+
"type": "union",
1196+
"members": {
1197+
"bytes": {
1198+
"target": "smithy.api#Blob",
1199+
"traits": {
1200+
"smithy.api#documentation": "<p>Audio data encoded in base64.</p>",
1201+
"smithy.api#length": {
1202+
"min": 1
1203+
}
1204+
}
1205+
},
1206+
"s3Location": {
1207+
"target": "com.amazonaws.bedrockruntime#S3Location",
1208+
"traits": {
1209+
"smithy.api#documentation": "<p>A reference to audio data stored in an Amazon S3 bucket. To see which models support S3 uploads, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/conversation-inference-supported-models-features.html\">Supported models and features for Converse</a>.</p>"
1210+
}
1211+
}
1212+
},
1213+
"traits": {
1214+
"smithy.api#documentation": "<p>The source of audio data, which can be provided either as raw bytes or a reference to an S3 location.</p>",
1215+
"smithy.api#sensitive": {}
1216+
}
1217+
},
10711218
"com.amazonaws.bedrockruntime#AutoToolChoice": {
10721219
"type": "structure",
10731220
"members": {},
@@ -1392,6 +1539,12 @@
13921539
"smithy.api#documentation": "<p>Video to include in the message. </p>"
13931540
}
13941541
},
1542+
"audio": {
1543+
"target": "com.amazonaws.bedrockruntime#AudioBlock",
1544+
"traits": {
1545+
"smithy.api#documentation": "<p>An audio content block containing audio data in the conversation.</p>"
1546+
}
1547+
},
13951548
"toolUse": {
13961549
"target": "com.amazonaws.bedrockruntime#ToolUseBlock",
13971550
"traits": {
@@ -1471,6 +1624,12 @@
14711624
"traits": {
14721625
"smithy.api#documentation": "<p>Incremental citation information that is streamed as part of the response generation process.</p>"
14731626
}
1627+
},
1628+
"image": {
1629+
"target": "com.amazonaws.bedrockruntime#ImageBlockDelta",
1630+
"traits": {
1631+
"smithy.api#documentation": "<p>A streaming delta event containing incremental image data.</p>"
1632+
}
14741633
}
14751634
},
14761635
"traits": {
@@ -1513,6 +1672,12 @@
15131672
"traits": {
15141673
"smithy.api#documentation": "<p>The </p>"
15151674
}
1675+
},
1676+
"image": {
1677+
"target": "com.amazonaws.bedrockruntime#ImageBlockStart",
1678+
"traits": {
1679+
"smithy.api#documentation": "<p>The initial event indicating the start of a streaming image block.</p>"
1680+
}
15161681
}
15171682
},
15181683
"traits": {
@@ -2518,6 +2683,21 @@
25182683
"smithy.api#documentation": "<p>Contains the content of a document.</p>"
25192684
}
25202685
},
2686+
"com.amazonaws.bedrockruntime#ErrorBlock": {
2687+
"type": "structure",
2688+
"members": {
2689+
"message": {
2690+
"target": "smithy.api#String",
2691+
"traits": {
2692+
"smithy.api#documentation": "<p>A human-readable error message describing what went wrong during content processing.</p>"
2693+
}
2694+
}
2695+
},
2696+
"traits": {
2697+
"smithy.api#documentation": "<p>A block containing error information when content processing fails.</p>",
2698+
"smithy.api#sensitive": {}
2699+
}
2700+
},
25212701
"com.amazonaws.bedrockruntime#FoundationModelVersionIdentifier": {
25222702
"type": "string",
25232703
"traits": {
@@ -4763,12 +4943,53 @@
47634943
"smithy.api#documentation": "<p>The source for the image.</p>",
47644944
"smithy.api#required": {}
47654945
}
4946+
},
4947+
"error": {
4948+
"target": "com.amazonaws.bedrockruntime#ErrorBlock",
4949+
"traits": {
4950+
"smithy.api#documentation": "<p>Error information if the image block could not be processed or contains invalid data.</p>"
4951+
}
47664952
}
47674953
},
47684954
"traits": {
47694955
"smithy.api#documentation": "<p>Image content for a message.</p>"
47704956
}
47714957
},
4958+
"com.amazonaws.bedrockruntime#ImageBlockDelta": {
4959+
"type": "structure",
4960+
"members": {
4961+
"source": {
4962+
"target": "com.amazonaws.bedrockruntime#ImageSource",
4963+
"traits": {
4964+
"smithy.api#documentation": "<p>The incremental image source data for this delta event.</p>"
4965+
}
4966+
},
4967+
"error": {
4968+
"target": "com.amazonaws.bedrockruntime#ErrorBlock",
4969+
"traits": {
4970+
"smithy.api#documentation": "<p>Error information if this image delta could not be processed.</p>"
4971+
}
4972+
}
4973+
},
4974+
"traits": {
4975+
"smithy.api#documentation": "<p>A streaming delta event that contains incremental image data during streaming responses.</p>"
4976+
}
4977+
},
4978+
"com.amazonaws.bedrockruntime#ImageBlockStart": {
4979+
"type": "structure",
4980+
"members": {
4981+
"format": {
4982+
"target": "com.amazonaws.bedrockruntime#ImageFormat",
4983+
"traits": {
4984+
"smithy.api#documentation": "<p>The format of the image data that will be streamed in subsequent delta events.</p>",
4985+
"smithy.api#required": {}
4986+
}
4987+
}
4988+
},
4989+
"traits": {
4990+
"smithy.api#documentation": "<p>The initial event in a streaming image block that indicates the start of image content.</p>"
4991+
}
4992+
},
47724993
"com.amazonaws.bedrockruntime#ImageFormat": {
47734994
"type": "enum",
47744995
"members": {
@@ -4818,7 +5039,8 @@
48185039
}
48195040
},
48205041
"traits": {
4821-
"smithy.api#documentation": "<p>The source for an image.</p>"
5042+
"smithy.api#documentation": "<p>The source for an image.</p>",
5043+
"smithy.api#sensitive": {}
48225044
}
48235045
},
48245046
"com.amazonaws.bedrockruntime#ImagesGuarded": {
@@ -6402,6 +6624,18 @@
64026624
"smithy.api#enumValue": "content_filtered"
64036625
}
64046626
},
6627+
"MALFORMED_MODEL_OUTPUT": {
6628+
"target": "smithy.api#Unit",
6629+
"traits": {
6630+
"smithy.api#enumValue": "malformed_model_output"
6631+
}
6632+
},
6633+
"MALFORMED_TOOL_USE": {
6634+
"target": "smithy.api#Unit",
6635+
"traits": {
6636+
"smithy.api#enumValue": "malformed_tool_use"
6637+
}
6638+
},
64056639
"MODEL_CONTEXT_WINDOW_EXCEEDED": {
64066640
"target": "smithy.api#Unit",
64076641
"traits": {
@@ -6742,6 +6976,12 @@
67426976
"traits": {
67436977
"smithy.api#documentation": "<p>The reasoning the model used to return the output.</p>"
67446978
}
6979+
},
6980+
"json": {
6981+
"target": "smithy.api#Document",
6982+
"traits": {
6983+
"smithy.api#documentation": "<p>The JSON schema for the tool result content block. see <a href=\"https://json-schema.org/understanding-json-schema/reference\">JSON Schema Reference</a>.</p>"
6984+
}
67456985
}
67466986
},
67476987
"traits": {

aws-models/bedrock.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17042,6 +17042,12 @@
1704217042
"traits": {
1704317043
"smithy.api#documentation": "<p>Set to include video data in the log delivery.</p>"
1704417044
}
17045+
},
17046+
"audioDataDeliveryEnabled": {
17047+
"target": "smithy.api#Boolean",
17048+
"traits": {
17049+
"smithy.api#documentation": "<p>Set to include audio data in the log delivery.</p>"
17050+
}
1704517051
}
1704617052
},
1704717053
"traits": {

0 commit comments

Comments
 (0)