@aws-sdk/client-bedrock-data-automation 3.758.0 → 3.759.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/BedrockDataAutomation.js +6 -0
  3. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  4. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  5. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +5 -3
  8. package/dist-cjs/protocols/Aws_restJson1.js +88 -3
  9. package/dist-es/BedrockDataAutomation.js +6 -0
  10. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  11. package/dist-es/commands/TagResourceCommand.js +22 -0
  12. package/dist-es/commands/UntagResourceCommand.js +22 -0
  13. package/dist-es/commands/index.js +3 -0
  14. package/dist-es/models/models_0.js +5 -3
  15. package/dist-es/protocols/Aws_restJson1.js +81 -2
  16. package/dist-types/BedrockDataAutomation.d.ts +21 -0
  17. package/dist-types/BedrockDataAutomationClient.d.ts +5 -2
  18. package/dist-types/commands/CreateBlueprintCommand.d.ts +6 -0
  19. package/dist-types/commands/CreateDataAutomationProjectCommand.d.ts +11 -5
  20. package/dist-types/commands/GetDataAutomationProjectCommand.d.ts +5 -5
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +91 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +93 -0
  23. package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
  24. package/dist-types/commands/UpdateBlueprintCommand.d.ts +6 -0
  25. package/dist-types/commands/UpdateDataAutomationProjectCommand.d.ts +14 -5
  26. package/dist-types/commands/index.d.ts +3 -0
  27. package/dist-types/models/models_0.d.ts +101 -3
  28. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  29. package/dist-types/ts3.4/BedrockDataAutomation.d.ts +51 -0
  30. package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +18 -0
  31. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +29 -3
  36. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  37. package/package.json +1 -1
@@ -52,6 +52,22 @@ export interface EncryptionConfiguration {
52
52
  */
53
53
  kmsEncryptionContext?: Record<string, string> | undefined;
54
54
  }
55
+ /**
56
+ * Key value pair of a tag
57
+ * @public
58
+ */
59
+ export interface Tag {
60
+ /**
61
+ * Defines the context of the tag.
62
+ * @public
63
+ */
64
+ key: string | undefined;
65
+ /**
66
+ * Defines the value within the context. e.g. <key=reason, value=training>.
67
+ * @public
68
+ */
69
+ value: string | undefined;
70
+ }
55
71
  /**
56
72
  * @public
57
73
  * @enum
@@ -99,6 +115,11 @@ export interface CreateBlueprintRequest {
99
115
  * @public
100
116
  */
101
117
  encryptionConfiguration?: EncryptionConfiguration | undefined;
118
+ /**
119
+ * List of tags
120
+ * @public
121
+ */
122
+ tags?: Tag[] | undefined;
102
123
  }
103
124
  /**
104
125
  * Contains the information of a Blueprint.
@@ -463,6 +484,11 @@ export interface UpdateBlueprintRequest {
463
484
  * @public
464
485
  */
465
486
  blueprintStage?: BlueprintStage | undefined;
487
+ /**
488
+ * KMS Encryption Configuration
489
+ * @public
490
+ */
491
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
466
492
  }
467
493
  /**
468
494
  * Update Blueprint Response
@@ -585,7 +611,7 @@ export interface OverrideConfiguration {
585
611
  */
586
612
  export declare const AudioExtractionCategoryType: {
587
613
  readonly AUDIO_CONTENT_MODERATION: "AUDIO_CONTENT_MODERATION";
588
- readonly CHAPTER_CONTENT_MODERATION: "CHAPTER_CONTENT_MODERATION";
614
+ readonly TOPIC_CONTENT_MODERATION: "TOPIC_CONTENT_MODERATION";
589
615
  readonly TRANSCRIPT: "TRANSCRIPT";
590
616
  };
591
617
  /**
@@ -625,8 +651,8 @@ export interface AudioStandardExtraction {
625
651
  */
626
652
  export declare const AudioStandardGenerativeFieldType: {
627
653
  readonly AUDIO_SUMMARY: "AUDIO_SUMMARY";
628
- readonly CHAPTER_SUMMARY: "CHAPTER_SUMMARY";
629
654
  readonly IAB: "IAB";
655
+ readonly TOPIC_SUMMARY: "TOPIC_SUMMARY";
630
656
  };
631
657
  /**
632
658
  * @public
@@ -818,6 +844,7 @@ export interface ImageBoundingBox {
818
844
  */
819
845
  export declare const ImageExtractionCategoryType: {
820
846
  readonly CONTENT_MODERATION: "CONTENT_MODERATION";
847
+ readonly LOGOS: "LOGOS";
821
848
  readonly TEXT_DETECTION: "TEXT_DETECTION";
822
849
  };
823
850
  /**
@@ -917,6 +944,7 @@ export interface VideoBoundingBox {
917
944
  */
918
945
  export declare const VideoExtractionCategoryType: {
919
946
  readonly CONTENT_MODERATION: "CONTENT_MODERATION";
947
+ readonly LOGOS: "LOGOS";
920
948
  readonly TEXT_DETECTION: "TEXT_DETECTION";
921
949
  readonly TRANSCRIPT: "TRANSCRIPT";
922
950
  };
@@ -961,8 +989,8 @@ export interface VideoStandardExtraction {
961
989
  * @enum
962
990
  */
963
991
  export declare const VideoStandardGenerativeFieldType: {
992
+ readonly CHAPTER_SUMMARY: "CHAPTER_SUMMARY";
964
993
  readonly IAB: "IAB";
965
- readonly SCENE_SUMMARY: "SCENE_SUMMARY";
966
994
  readonly VIDEO_SUMMARY: "VIDEO_SUMMARY";
967
995
  };
968
996
  /**
@@ -1072,6 +1100,11 @@ export interface CreateDataAutomationProjectRequest {
1072
1100
  * @public
1073
1101
  */
1074
1102
  encryptionConfiguration?: EncryptionConfiguration | undefined;
1103
+ /**
1104
+ * List of tags
1105
+ * @public
1106
+ */
1107
+ tags?: Tag[] | undefined;
1075
1108
  }
1076
1109
  /**
1077
1110
  * @public
@@ -1369,6 +1402,11 @@ export interface UpdateDataAutomationProjectRequest {
1369
1402
  * @public
1370
1403
  */
1371
1404
  overrideConfiguration?: OverrideConfiguration | undefined;
1405
+ /**
1406
+ * KMS Encryption Configuration
1407
+ * @public
1408
+ */
1409
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
1372
1410
  }
1373
1411
  /**
1374
1412
  * Update DataAutomationProject Response
@@ -1391,6 +1429,66 @@ export interface UpdateDataAutomationProjectResponse {
1391
1429
  */
1392
1430
  status?: DataAutomationProjectStatus | undefined;
1393
1431
  }
1432
+ /**
1433
+ * @public
1434
+ */
1435
+ export interface ListTagsForResourceRequest {
1436
+ /**
1437
+ * ARN of a taggable resource
1438
+ * @public
1439
+ */
1440
+ resourceARN: string | undefined;
1441
+ }
1442
+ /**
1443
+ * @public
1444
+ */
1445
+ export interface ListTagsForResourceResponse {
1446
+ /**
1447
+ * List of tags
1448
+ * @public
1449
+ */
1450
+ tags?: Tag[] | undefined;
1451
+ }
1452
+ /**
1453
+ * @public
1454
+ */
1455
+ export interface TagResourceRequest {
1456
+ /**
1457
+ * ARN of a taggable resource
1458
+ * @public
1459
+ */
1460
+ resourceARN: string | undefined;
1461
+ /**
1462
+ * List of tags
1463
+ * @public
1464
+ */
1465
+ tags: Tag[] | undefined;
1466
+ }
1467
+ /**
1468
+ * @public
1469
+ */
1470
+ export interface TagResourceResponse {
1471
+ }
1472
+ /**
1473
+ * @public
1474
+ */
1475
+ export interface UntagResourceRequest {
1476
+ /**
1477
+ * ARN of a taggable resource
1478
+ * @public
1479
+ */
1480
+ resourceARN: string | undefined;
1481
+ /**
1482
+ * List of tag keys
1483
+ * @public
1484
+ */
1485
+ tagKeys: string[] | undefined;
1486
+ }
1487
+ /**
1488
+ * @public
1489
+ */
1490
+ export interface UntagResourceResponse {
1491
+ }
1394
1492
  /**
1395
1493
  * @internal
1396
1494
  */
@@ -9,6 +9,9 @@ import { GetBlueprintCommandInput, GetBlueprintCommandOutput } from "../commands
9
9
  import { GetDataAutomationProjectCommandInput, GetDataAutomationProjectCommandOutput } from "../commands/GetDataAutomationProjectCommand";
10
10
  import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "../commands/ListBlueprintsCommand";
11
11
  import { ListDataAutomationProjectsCommandInput, ListDataAutomationProjectsCommandOutput } from "../commands/ListDataAutomationProjectsCommand";
12
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
13
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
12
15
  import { UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput } from "../commands/UpdateBlueprintCommand";
13
16
  import { UpdateDataAutomationProjectCommandInput, UpdateDataAutomationProjectCommandOutput } from "../commands/UpdateDataAutomationProjectCommand";
14
17
  /**
@@ -47,6 +50,18 @@ export declare const se_ListBlueprintsCommand: (input: ListBlueprintsCommandInpu
47
50
  * serializeAws_restJson1ListDataAutomationProjectsCommand
48
51
  */
49
52
  export declare const se_ListDataAutomationProjectsCommand: (input: ListDataAutomationProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ /**
54
+ * serializeAws_restJson1ListTagsForResourceCommand
55
+ */
56
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
+ /**
58
+ * serializeAws_restJson1TagResourceCommand
59
+ */
60
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
+ /**
62
+ * serializeAws_restJson1UntagResourceCommand
63
+ */
64
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
65
  /**
51
66
  * serializeAws_restJson1UpdateBlueprintCommand
52
67
  */
@@ -91,6 +106,18 @@ export declare const de_ListBlueprintsCommand: (output: __HttpResponse, context:
91
106
  * deserializeAws_restJson1ListDataAutomationProjectsCommand
92
107
  */
93
108
  export declare const de_ListDataAutomationProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataAutomationProjectsCommandOutput>;
109
+ /**
110
+ * deserializeAws_restJson1ListTagsForResourceCommand
111
+ */
112
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
113
+ /**
114
+ * deserializeAws_restJson1TagResourceCommand
115
+ */
116
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
117
+ /**
118
+ * deserializeAws_restJson1UntagResourceCommand
119
+ */
120
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
94
121
  /**
95
122
  * deserializeAws_restJson1UpdateBlueprintCommand
96
123
  */
@@ -36,6 +36,18 @@ import {
36
36
  ListDataAutomationProjectsCommandInput,
37
37
  ListDataAutomationProjectsCommandOutput,
38
38
  } from "./commands/ListDataAutomationProjectsCommand";
39
+ import {
40
+ ListTagsForResourceCommandInput,
41
+ ListTagsForResourceCommandOutput,
42
+ } from "./commands/ListTagsForResourceCommand";
43
+ import {
44
+ TagResourceCommandInput,
45
+ TagResourceCommandOutput,
46
+ } from "./commands/TagResourceCommand";
47
+ import {
48
+ UntagResourceCommandInput,
49
+ UntagResourceCommandOutput,
50
+ } from "./commands/UntagResourceCommand";
39
51
  import {
40
52
  UpdateBlueprintCommandInput,
41
53
  UpdateBlueprintCommandOutput,
@@ -164,6 +176,45 @@ export interface BedrockDataAutomation {
164
176
  options: __HttpHandlerOptions,
165
177
  cb: (err: any, data?: ListDataAutomationProjectsCommandOutput) => void
166
178
  ): void;
179
+ listTagsForResource(
180
+ args: ListTagsForResourceCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<ListTagsForResourceCommandOutput>;
183
+ listTagsForResource(
184
+ args: ListTagsForResourceCommandInput,
185
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
186
+ ): void;
187
+ listTagsForResource(
188
+ args: ListTagsForResourceCommandInput,
189
+ options: __HttpHandlerOptions,
190
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
191
+ ): void;
192
+ tagResource(
193
+ args: TagResourceCommandInput,
194
+ options?: __HttpHandlerOptions
195
+ ): Promise<TagResourceCommandOutput>;
196
+ tagResource(
197
+ args: TagResourceCommandInput,
198
+ cb: (err: any, data?: TagResourceCommandOutput) => void
199
+ ): void;
200
+ tagResource(
201
+ args: TagResourceCommandInput,
202
+ options: __HttpHandlerOptions,
203
+ cb: (err: any, data?: TagResourceCommandOutput) => void
204
+ ): void;
205
+ untagResource(
206
+ args: UntagResourceCommandInput,
207
+ options?: __HttpHandlerOptions
208
+ ): Promise<UntagResourceCommandOutput>;
209
+ untagResource(
210
+ args: UntagResourceCommandInput,
211
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
212
+ ): void;
213
+ untagResource(
214
+ args: UntagResourceCommandInput,
215
+ options: __HttpHandlerOptions,
216
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
217
+ ): void;
167
218
  updateBlueprint(
168
219
  args: UpdateBlueprintCommandInput,
169
220
  options?: __HttpHandlerOptions
@@ -81,6 +81,18 @@ import {
81
81
  ListDataAutomationProjectsCommandInput,
82
82
  ListDataAutomationProjectsCommandOutput,
83
83
  } from "./commands/ListDataAutomationProjectsCommand";
84
+ import {
85
+ ListTagsForResourceCommandInput,
86
+ ListTagsForResourceCommandOutput,
87
+ } from "./commands/ListTagsForResourceCommand";
88
+ import {
89
+ TagResourceCommandInput,
90
+ TagResourceCommandOutput,
91
+ } from "./commands/TagResourceCommand";
92
+ import {
93
+ UntagResourceCommandInput,
94
+ UntagResourceCommandOutput,
95
+ } from "./commands/UntagResourceCommand";
84
96
  import {
85
97
  UpdateBlueprintCommandInput,
86
98
  UpdateBlueprintCommandOutput,
@@ -106,6 +118,9 @@ export type ServiceInputTypes =
106
118
  | GetDataAutomationProjectCommandInput
107
119
  | ListBlueprintsCommandInput
108
120
  | ListDataAutomationProjectsCommandInput
121
+ | ListTagsForResourceCommandInput
122
+ | TagResourceCommandInput
123
+ | UntagResourceCommandInput
109
124
  | UpdateBlueprintCommandInput
110
125
  | UpdateDataAutomationProjectCommandInput;
111
126
  export type ServiceOutputTypes =
@@ -118,6 +133,9 @@ export type ServiceOutputTypes =
118
133
  | GetDataAutomationProjectCommandOutput
119
134
  | ListBlueprintsCommandOutput
120
135
  | ListDataAutomationProjectsCommandOutput
136
+ | ListTagsForResourceCommandOutput
137
+ | TagResourceCommandOutput
138
+ | UntagResourceCommandOutput
121
139
  | UpdateBlueprintCommandOutput
122
140
  | UpdateDataAutomationProjectCommandOutput;
123
141
  export interface ClientDefaults
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockDataAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockDataAutomationClient";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ BedrockDataAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ BedrockDataAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockDataAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockDataAutomationClient";
8
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput
13
+ extends TagResourceResponse,
14
+ __MetadataBearer {}
15
+ declare const TagResourceCommand_base: {
16
+ new (
17
+ input: TagResourceCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ BedrockDataAutomationClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: TagResourceCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ TagResourceCommandInput,
29
+ TagResourceCommandOutput,
30
+ BedrockDataAutomationClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockDataAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockDataAutomationClient";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
+ export interface UntagResourceCommandOutput
16
+ extends UntagResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const UntagResourceCommand_base: {
19
+ new (
20
+ input: UntagResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ BedrockDataAutomationClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UntagResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UntagResourceCommandInput,
32
+ UntagResourceCommandOutput,
33
+ BedrockDataAutomationClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -7,5 +7,8 @@ export * from "./GetBlueprintCommand";
7
7
  export * from "./GetDataAutomationProjectCommand";
8
8
  export * from "./ListBlueprintsCommand";
9
9
  export * from "./ListDataAutomationProjectsCommand";
10
+ export * from "./ListTagsForResourceCommand";
11
+ export * from "./TagResourceCommand";
12
+ export * from "./UntagResourceCommand";
10
13
  export * from "./UpdateBlueprintCommand";
11
14
  export * from "./UpdateDataAutomationProjectCommand";
@@ -22,6 +22,10 @@ export interface EncryptionConfiguration {
22
22
  kmsKeyId: string | undefined;
23
23
  kmsEncryptionContext?: Record<string, string> | undefined;
24
24
  }
25
+ export interface Tag {
26
+ key: string | undefined;
27
+ value: string | undefined;
28
+ }
25
29
  export declare const Type: {
26
30
  readonly DOCUMENT: "DOCUMENT";
27
31
  readonly IMAGE: "IMAGE";
@@ -34,6 +38,7 @@ export interface CreateBlueprintRequest {
34
38
  schema: string | undefined;
35
39
  clientToken?: string | undefined;
36
40
  encryptionConfiguration?: EncryptionConfiguration | undefined;
41
+ tags?: Tag[] | undefined;
37
42
  }
38
43
  export interface Blueprint {
39
44
  blueprintArn: string | undefined;
@@ -149,6 +154,7 @@ export interface UpdateBlueprintRequest {
149
154
  blueprintArn: string | undefined;
150
155
  schema: string | undefined;
151
156
  blueprintStage?: BlueprintStage | undefined;
157
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
152
158
  }
153
159
  export interface UpdateBlueprintResponse {
154
160
  blueprint: Blueprint | undefined;
@@ -184,7 +190,7 @@ export interface OverrideConfiguration {
184
190
  }
185
191
  export declare const AudioExtractionCategoryType: {
186
192
  readonly AUDIO_CONTENT_MODERATION: "AUDIO_CONTENT_MODERATION";
187
- readonly CHAPTER_CONTENT_MODERATION: "CHAPTER_CONTENT_MODERATION";
193
+ readonly TOPIC_CONTENT_MODERATION: "TOPIC_CONTENT_MODERATION";
188
194
  readonly TRANSCRIPT: "TRANSCRIPT";
189
195
  };
190
196
  export type AudioExtractionCategoryType =
@@ -198,8 +204,8 @@ export interface AudioStandardExtraction {
198
204
  }
199
205
  export declare const AudioStandardGenerativeFieldType: {
200
206
  readonly AUDIO_SUMMARY: "AUDIO_SUMMARY";
201
- readonly CHAPTER_SUMMARY: "CHAPTER_SUMMARY";
202
207
  readonly IAB: "IAB";
208
+ readonly TOPIC_SUMMARY: "TOPIC_SUMMARY";
203
209
  };
204
210
  export type AudioStandardGenerativeFieldType =
205
211
  (typeof AudioStandardGenerativeFieldType)[keyof typeof AudioStandardGenerativeFieldType];
@@ -261,6 +267,7 @@ export interface ImageBoundingBox {
261
267
  }
262
268
  export declare const ImageExtractionCategoryType: {
263
269
  readonly CONTENT_MODERATION: "CONTENT_MODERATION";
270
+ readonly LOGOS: "LOGOS";
264
271
  readonly TEXT_DETECTION: "TEXT_DETECTION";
265
272
  };
266
273
  export type ImageExtractionCategoryType =
@@ -292,6 +299,7 @@ export interface VideoBoundingBox {
292
299
  }
293
300
  export declare const VideoExtractionCategoryType: {
294
301
  readonly CONTENT_MODERATION: "CONTENT_MODERATION";
302
+ readonly LOGOS: "LOGOS";
295
303
  readonly TEXT_DETECTION: "TEXT_DETECTION";
296
304
  readonly TRANSCRIPT: "TRANSCRIPT";
297
305
  };
@@ -306,8 +314,8 @@ export interface VideoStandardExtraction {
306
314
  boundingBox: VideoBoundingBox | undefined;
307
315
  }
308
316
  export declare const VideoStandardGenerativeFieldType: {
317
+ readonly CHAPTER_SUMMARY: "CHAPTER_SUMMARY";
309
318
  readonly IAB: "IAB";
310
- readonly SCENE_SUMMARY: "SCENE_SUMMARY";
311
319
  readonly VIDEO_SUMMARY: "VIDEO_SUMMARY";
312
320
  };
313
321
  export type VideoStandardGenerativeFieldType =
@@ -335,6 +343,7 @@ export interface CreateDataAutomationProjectRequest {
335
343
  overrideConfiguration?: OverrideConfiguration | undefined;
336
344
  clientToken?: string | undefined;
337
345
  encryptionConfiguration?: EncryptionConfiguration | undefined;
346
+ tags?: Tag[] | undefined;
338
347
  }
339
348
  export declare const DataAutomationProjectStatus: {
340
349
  readonly COMPLETED: "COMPLETED";
@@ -412,12 +421,29 @@ export interface UpdateDataAutomationProjectRequest {
412
421
  standardOutputConfiguration: StandardOutputConfiguration | undefined;
413
422
  customOutputConfiguration?: CustomOutputConfiguration | undefined;
414
423
  overrideConfiguration?: OverrideConfiguration | undefined;
424
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
415
425
  }
416
426
  export interface UpdateDataAutomationProjectResponse {
417
427
  projectArn: string | undefined;
418
428
  projectStage?: DataAutomationProjectStage | undefined;
419
429
  status?: DataAutomationProjectStatus | undefined;
420
430
  }
431
+ export interface ListTagsForResourceRequest {
432
+ resourceARN: string | undefined;
433
+ }
434
+ export interface ListTagsForResourceResponse {
435
+ tags?: Tag[] | undefined;
436
+ }
437
+ export interface TagResourceRequest {
438
+ resourceARN: string | undefined;
439
+ tags: Tag[] | undefined;
440
+ }
441
+ export interface TagResourceResponse {}
442
+ export interface UntagResourceRequest {
443
+ resourceARN: string | undefined;
444
+ tagKeys: string[] | undefined;
445
+ }
446
+ export interface UntagResourceResponse {}
421
447
  export declare const CreateBlueprintRequestFilterSensitiveLog: (
422
448
  obj: CreateBlueprintRequest
423
449
  ) => any;
@@ -39,6 +39,18 @@ import {
39
39
  ListDataAutomationProjectsCommandInput,
40
40
  ListDataAutomationProjectsCommandOutput,
41
41
  } from "../commands/ListDataAutomationProjectsCommand";
42
+ import {
43
+ ListTagsForResourceCommandInput,
44
+ ListTagsForResourceCommandOutput,
45
+ } from "../commands/ListTagsForResourceCommand";
46
+ import {
47
+ TagResourceCommandInput,
48
+ TagResourceCommandOutput,
49
+ } from "../commands/TagResourceCommand";
50
+ import {
51
+ UntagResourceCommandInput,
52
+ UntagResourceCommandOutput,
53
+ } from "../commands/UntagResourceCommand";
42
54
  import {
43
55
  UpdateBlueprintCommandInput,
44
56
  UpdateBlueprintCommandOutput,
@@ -83,6 +95,18 @@ export declare const se_ListDataAutomationProjectsCommand: (
83
95
  input: ListDataAutomationProjectsCommandInput,
84
96
  context: __SerdeContext
85
97
  ) => Promise<__HttpRequest>;
98
+ export declare const se_ListTagsForResourceCommand: (
99
+ input: ListTagsForResourceCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const se_TagResourceCommand: (
103
+ input: TagResourceCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const se_UntagResourceCommand: (
107
+ input: UntagResourceCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
86
110
  export declare const se_UpdateBlueprintCommand: (
87
111
  input: UpdateBlueprintCommandInput,
88
112
  context: __SerdeContext
@@ -127,6 +151,18 @@ export declare const de_ListDataAutomationProjectsCommand: (
127
151
  output: __HttpResponse,
128
152
  context: __SerdeContext
129
153
  ) => Promise<ListDataAutomationProjectsCommandOutput>;
154
+ export declare const de_ListTagsForResourceCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<ListTagsForResourceCommandOutput>;
158
+ export declare const de_TagResourceCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<TagResourceCommandOutput>;
162
+ export declare const de_UntagResourceCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<UntagResourceCommandOutput>;
130
166
  export declare const de_UpdateBlueprintCommand: (
131
167
  output: __HttpResponse,
132
168
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-data-automation",
3
3
  "description": "AWS SDK for JavaScript Bedrock Data Automation Client for Node.js, Browser and React Native",
4
- "version": "3.758.0",
4
+ "version": "3.759.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",