Skip to content

Commit 2591cbd

Browse files
author
awstools
committed
feat(client-bedrock-data-automation): Added support for Custom output and blueprints for AUDIO data types.
1 parent 90b5ace commit 2591cbd

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface CreateBlueprintCommandOutput extends CreateBlueprintResponse, _
4646
* const client = new BedrockDataAutomationClient(config);
4747
* const input = { // CreateBlueprintRequest
4848
* blueprintName: "STRING_VALUE", // required
49-
* type: "DOCUMENT" || "IMAGE", // required
49+
* type: "DOCUMENT" || "IMAGE" || "AUDIO", // required
5050
* blueprintStage: "DEVELOPMENT" || "LIVE",
5151
* schema: "STRING_VALUE", // required
5252
* clientToken: "STRING_VALUE",
@@ -69,7 +69,7 @@ export interface CreateBlueprintCommandOutput extends CreateBlueprintResponse, _
6969
* // blueprint: { // Blueprint
7070
* // blueprintArn: "STRING_VALUE", // required
7171
* // schema: "STRING_VALUE", // required
72-
* // type: "DOCUMENT" || "IMAGE", // required
72+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO", // required
7373
* // creationTime: new Date("TIMESTAMP"), // required
7474
* // lastModifiedTime: new Date("TIMESTAMP"), // required
7575
* // blueprintName: "STRING_VALUE", // required

clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface CreateBlueprintVersionCommandOutput extends CreateBlueprintVers
5353
* // blueprint: { // Blueprint
5454
* // blueprintArn: "STRING_VALUE", // required
5555
* // schema: "STRING_VALUE", // required
56-
* // type: "DOCUMENT" || "IMAGE", // required
56+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO", // required
5757
* // creationTime: new Date("TIMESTAMP"), // required
5858
* // lastModifiedTime: new Date("TIMESTAMP"), // required
5959
* // blueprintName: "STRING_VALUE", // required

clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export interface GetBlueprintCommandOutput extends GetBlueprintResponse, __Metad
5050
* // blueprint: { // Blueprint
5151
* // blueprintArn: "STRING_VALUE", // required
5252
* // schema: "STRING_VALUE", // required
53-
* // type: "DOCUMENT" || "IMAGE", // required
53+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO", // required
5454
* // creationTime: new Date("TIMESTAMP"), // required
5555
* // lastModifiedTime: new Date("TIMESTAMP"), // required
5656
* // blueprintName: "STRING_VALUE", // required

clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export interface UpdateBlueprintCommandOutput extends UpdateBlueprintResponse, _
6161
* // blueprint: { // Blueprint
6262
* // blueprintArn: "STRING_VALUE", // required
6363
* // schema: "STRING_VALUE", // required
64-
* // type: "DOCUMENT" || "IMAGE", // required
64+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO", // required
6565
* // creationTime: new Date("TIMESTAMP"), // required
6666
* // lastModifiedTime: new Date("TIMESTAMP"), // required
6767
* // blueprintName: "STRING_VALUE", // required

clients/client-bedrock-data-automation/src/models/models_0.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export interface Tag {
9898
* @enum
9999
*/
100100
export const Type = {
101+
AUDIO: "AUDIO",
101102
DOCUMENT: "DOCUMENT",
102103
IMAGE: "IMAGE",
103104
} as const;

codegen/sdk-codegen/aws-models/bedrock-data-automation.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3016,6 +3016,12 @@
30163016
"traits": {
30173017
"smithy.api#enumValue": "IMAGE"
30183018
}
3019+
},
3020+
"AUDIO": {
3021+
"target": "smithy.api#Unit",
3022+
"traits": {
3023+
"smithy.api#enumValue": "AUDIO"
3024+
}
30193025
}
30203026
},
30213027
"traits": {

0 commit comments

Comments
 (0)