@aws-sdk/client-bedrock-data-automation-runtime 3.984.0 → 3.985.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.
package/dist-cjs/index.js
CHANGED
|
@@ -356,13 +356,13 @@ var InvokeDataAutomationAsyncResponse$ = [3, n0, _IDAARn,
|
|
|
356
356
|
];
|
|
357
357
|
var InvokeDataAutomationRequest$ = [3, n0, _IDAR,
|
|
358
358
|
0,
|
|
359
|
-
[_iC, _dAPAa, _dAC, _b, _eC],
|
|
360
|
-
[() => SyncInputConfiguration$, 0, () => DataAutomationConfiguration$, () => BlueprintList, () => EncryptionConfiguration$], 2
|
|
359
|
+
[_iC, _dAPAa, _dAC, _b, _eC, _oC],
|
|
360
|
+
[() => SyncInputConfiguration$, 0, () => DataAutomationConfiguration$, () => BlueprintList, () => EncryptionConfiguration$, () => OutputConfiguration$], 2
|
|
361
361
|
];
|
|
362
362
|
var InvokeDataAutomationResponse$ = [3, n0, _IDARn,
|
|
363
363
|
0,
|
|
364
|
-
[_sM, _oS],
|
|
365
|
-
[0, () => OutputSegmentList],
|
|
364
|
+
[_sM, _oC, _oS],
|
|
365
|
+
[0, () => OutputConfiguration$, () => OutputSegmentList], 1
|
|
366
366
|
];
|
|
367
367
|
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
368
368
|
0,
|
|
@@ -155,13 +155,13 @@ export var InvokeDataAutomationAsyncResponse$ = [3, n0, _IDAARn,
|
|
|
155
155
|
];
|
|
156
156
|
export var InvokeDataAutomationRequest$ = [3, n0, _IDAR,
|
|
157
157
|
0,
|
|
158
|
-
[_iC, _dAPAa, _dAC, _b, _eC],
|
|
159
|
-
[() => SyncInputConfiguration$, 0, () => DataAutomationConfiguration$, () => BlueprintList, () => EncryptionConfiguration$], 2
|
|
158
|
+
[_iC, _dAPAa, _dAC, _b, _eC, _oC],
|
|
159
|
+
[() => SyncInputConfiguration$, 0, () => DataAutomationConfiguration$, () => BlueprintList, () => EncryptionConfiguration$, () => OutputConfiguration$], 2
|
|
160
160
|
];
|
|
161
161
|
export var InvokeDataAutomationResponse$ = [3, n0, _IDARn,
|
|
162
162
|
0,
|
|
163
|
-
[_sM, _oS],
|
|
164
|
-
[0, () => OutputSegmentList],
|
|
163
|
+
[_sM, _oC, _oS],
|
|
164
|
+
[0, () => OutputConfiguration$, () => OutputSegmentList], 1
|
|
165
165
|
];
|
|
166
166
|
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
167
167
|
0,
|
|
@@ -59,12 +59,18 @@ declare const InvokeDataAutomationCommand_base: {
|
|
|
59
59
|
* "<keys>": "STRING_VALUE",
|
|
60
60
|
* },
|
|
61
61
|
* },
|
|
62
|
+
* outputConfiguration: { // OutputConfiguration
|
|
63
|
+
* s3Uri: "STRING_VALUE", // required
|
|
64
|
+
* },
|
|
62
65
|
* };
|
|
63
66
|
* const command = new InvokeDataAutomationCommand(input);
|
|
64
67
|
* const response = await client.send(command);
|
|
65
68
|
* // { // InvokeDataAutomationResponse
|
|
69
|
+
* // outputConfiguration: { // OutputConfiguration
|
|
70
|
+
* // s3Uri: "STRING_VALUE", // required
|
|
71
|
+
* // },
|
|
66
72
|
* // semanticModality: "DOCUMENT" || "IMAGE" || "AUDIO" || "VIDEO", // required
|
|
67
|
-
* // outputSegments: [ // OutputSegmentList
|
|
73
|
+
* // outputSegments: [ // OutputSegmentList
|
|
68
74
|
* // { // OutputSegment
|
|
69
75
|
* // customOutputStatus: "MATCH" || "NO_MATCH",
|
|
70
76
|
* // customOutput: "STRING_VALUE",
|
|
@@ -348,6 +348,11 @@ export interface InvokeDataAutomationRequest {
|
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
350
|
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
351
|
+
/**
|
|
352
|
+
* Output configuration.
|
|
353
|
+
* @public
|
|
354
|
+
*/
|
|
355
|
+
outputConfiguration?: OutputConfiguration | undefined;
|
|
351
356
|
}
|
|
352
357
|
/**
|
|
353
358
|
* Results for an output segment
|
|
@@ -375,6 +380,11 @@ export interface OutputSegment {
|
|
|
375
380
|
* @public
|
|
376
381
|
*/
|
|
377
382
|
export interface InvokeDataAutomationResponse {
|
|
383
|
+
/**
|
|
384
|
+
* Output configuration
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
outputConfiguration?: OutputConfiguration | undefined;
|
|
378
388
|
/**
|
|
379
389
|
* Detected semantic modality
|
|
380
390
|
* @public
|
|
@@ -384,7 +394,7 @@ export interface InvokeDataAutomationResponse {
|
|
|
384
394
|
* List of outputs for each logical sub-doc
|
|
385
395
|
* @public
|
|
386
396
|
*/
|
|
387
|
-
outputSegments
|
|
397
|
+
outputSegments?: OutputSegment[] | undefined;
|
|
388
398
|
}
|
|
389
399
|
/**
|
|
390
400
|
* @public
|
|
@@ -98,6 +98,7 @@ export interface InvokeDataAutomationRequest {
|
|
|
98
98
|
blueprints?: Blueprint[] | undefined;
|
|
99
99
|
dataAutomationProfileArn: string | undefined;
|
|
100
100
|
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
101
|
+
outputConfiguration?: OutputConfiguration | undefined;
|
|
101
102
|
}
|
|
102
103
|
export interface OutputSegment {
|
|
103
104
|
customOutputStatus?: CustomOutputStatus | undefined;
|
|
@@ -105,8 +106,9 @@ export interface OutputSegment {
|
|
|
105
106
|
standardOutput?: string | undefined;
|
|
106
107
|
}
|
|
107
108
|
export interface InvokeDataAutomationResponse {
|
|
109
|
+
outputConfiguration?: OutputConfiguration | undefined;
|
|
108
110
|
semanticModality: SemanticModality | undefined;
|
|
109
|
-
outputSegments
|
|
111
|
+
outputSegments?: OutputSegment[] | undefined;
|
|
110
112
|
}
|
|
111
113
|
export interface ListTagsForResourceRequest {
|
|
112
114
|
resourceARN: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-data-automation-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Data Automation Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.985.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-data-automation-runtime",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.7",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.6",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.7",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.985.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.5",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.22.
|
|
36
|
+
"@smithy/core": "^3.22.1",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.13",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.30",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.9",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.2",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.29",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.32",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|