Skip to content

Commit 5657cb1

Browse files
author
awstools
committed
feat(client-bedrock-data-automation): Add support for VIDEO modality to BlueprintType enum.
1 parent eb51d8f commit 5657cb1

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" || "AUDIO", // required
49+
* type: "DOCUMENT" || "IMAGE" || "AUDIO" || "VIDEO", // 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" || "AUDIO", // required
72+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO" || "VIDEO", // 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" || "AUDIO", // required
56+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO" || "VIDEO", // 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" || "AUDIO", // required
53+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO" || "VIDEO", // 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" || "AUDIO", // required
64+
* // type: "DOCUMENT" || "IMAGE" || "AUDIO" || "VIDEO", // 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
@@ -101,6 +101,7 @@ export const Type = {
101101
AUDIO: "AUDIO",
102102
DOCUMENT: "DOCUMENT",
103103
IMAGE: "IMAGE",
104+
VIDEO: "VIDEO",
104105
} as const;
105106

106107
/**

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3022,6 +3022,12 @@
30223022
"traits": {
30233023
"smithy.api#enumValue": "AUDIO"
30243024
}
3025+
},
3026+
"VIDEO": {
3027+
"target": "smithy.api#Unit",
3028+
"traits": {
3029+
"smithy.api#enumValue": "VIDEO"
3030+
}
30253031
}
30263032
},
30273033
"traits": {

0 commit comments

Comments
 (0)