@aws-sdk/client-cleanrooms 3.968.0 → 3.970.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 +355 -351
- package/dist-es/schemas/schemas_0.js +355 -351
- package/dist-types/commands/GetProtectedJobCommand.d.ts +3 -0
- package/dist-types/commands/StartProtectedJobCommand.d.ts +6 -0
- package/dist-types/commands/UpdateProtectedJobCommand.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +6 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +33 -33
|
@@ -50,6 +50,9 @@ declare const GetProtectedJobCommand_base: {
|
|
|
50
50
|
* // createTime: new Date("TIMESTAMP"), // required
|
|
51
51
|
* // jobParameters: { // ProtectedJobParameters
|
|
52
52
|
* // analysisTemplateArn: "STRING_VALUE", // required
|
|
53
|
+
* // parameters: { // JobParameterMap
|
|
54
|
+
* // "<keys>": "STRING_VALUE",
|
|
55
|
+
* // },
|
|
53
56
|
* // },
|
|
54
57
|
* // status: "SUBMITTED" || "STARTED" || "CANCELLED" || "CANCELLING" || "FAILED" || "SUCCESS", // required
|
|
55
58
|
* // resultConfiguration: { // ProtectedJobResultConfigurationOutput
|
|
@@ -41,6 +41,9 @@ declare const StartProtectedJobCommand_base: {
|
|
|
41
41
|
* membershipIdentifier: "STRING_VALUE", // required
|
|
42
42
|
* jobParameters: { // ProtectedJobParameters
|
|
43
43
|
* analysisTemplateArn: "STRING_VALUE", // required
|
|
44
|
+
* parameters: { // JobParameterMap
|
|
45
|
+
* "<keys>": "STRING_VALUE",
|
|
46
|
+
* },
|
|
44
47
|
* },
|
|
45
48
|
* resultConfiguration: { // ProtectedJobResultConfigurationInput
|
|
46
49
|
* outputConfiguration: { // ProtectedJobOutputConfigurationInput Union: only one key present
|
|
@@ -66,6 +69,9 @@ declare const StartProtectedJobCommand_base: {
|
|
|
66
69
|
* // createTime: new Date("TIMESTAMP"), // required
|
|
67
70
|
* // jobParameters: { // ProtectedJobParameters
|
|
68
71
|
* // analysisTemplateArn: "STRING_VALUE", // required
|
|
72
|
+
* // parameters: { // JobParameterMap
|
|
73
|
+
* // "<keys>": "STRING_VALUE",
|
|
74
|
+
* // },
|
|
69
75
|
* // },
|
|
70
76
|
* // status: "SUBMITTED" || "STARTED" || "CANCELLED" || "CANCELLING" || "FAILED" || "SUCCESS", // required
|
|
71
77
|
* // resultConfiguration: { // ProtectedJobResultConfigurationOutput
|
|
@@ -51,6 +51,9 @@ declare const UpdateProtectedJobCommand_base: {
|
|
|
51
51
|
* // createTime: new Date("TIMESTAMP"), // required
|
|
52
52
|
* // jobParameters: { // ProtectedJobParameters
|
|
53
53
|
* // analysisTemplateArn: "STRING_VALUE", // required
|
|
54
|
+
* // parameters: { // JobParameterMap
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
54
57
|
* // },
|
|
55
58
|
* // status: "SUBMITTED" || "STARTED" || "CANCELLED" || "CANCELLING" || "FAILED" || "SUCCESS", // required
|
|
56
59
|
* // resultConfiguration: { // ProtectedJobResultConfigurationOutput
|
|
@@ -164,7 +164,7 @@ export interface AggregationConstraint {
|
|
|
164
164
|
*/
|
|
165
165
|
export interface AnalysisParameter {
|
|
166
166
|
/**
|
|
167
|
-
* <p>The name of the parameter. The name must use only alphanumeric
|
|
167
|
+
* <p>The name of the parameter. The name must use only alphanumeric or underscore (_) characters.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
170
|
name: string | undefined;
|
|
@@ -6671,6 +6671,11 @@ export interface ProtectedJobParameters {
|
|
|
6671
6671
|
* @public
|
|
6672
6672
|
*/
|
|
6673
6673
|
analysisTemplateArn: string | undefined;
|
|
6674
|
+
/**
|
|
6675
|
+
* <p>Runtime configuration values passed to the PySpark analysis script. Parameter names and types must match those defined in the analysis template.</p>
|
|
6676
|
+
* @public
|
|
6677
|
+
*/
|
|
6678
|
+
parameters?: Record<string, string> | undefined;
|
|
6674
6679
|
}
|
|
6675
6680
|
/**
|
|
6676
6681
|
* <p>Details about the member who received the job result.</p>
|
|
@@ -1988,6 +1988,7 @@ export interface ProtectedJobError {
|
|
|
1988
1988
|
}
|
|
1989
1989
|
export interface ProtectedJobParameters {
|
|
1990
1990
|
analysisTemplateArn: string | undefined;
|
|
1991
|
+
parameters?: Record<string, string> | undefined;
|
|
1991
1992
|
}
|
|
1992
1993
|
export interface ProtectedJobSingleMemberOutput {
|
|
1993
1994
|
accountId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanrooms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.970.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-cleanrooms",
|
|
@@ -21,41 +21,41 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.20.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.10.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "3.970.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.970.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.969.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.969.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.969.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.970.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.969.0",
|
|
31
|
+
"@aws-sdk/types": "3.969.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.970.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.969.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.970.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
+
"@smithy/core": "^3.20.6",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
|
+
"@smithy/hash-node": "^4.2.8",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.7",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.23",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.9",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.8",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.8",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
+
"@smithy/smithy-client": "^4.10.8",
|
|
49
|
+
"@smithy/types": "^4.12.0",
|
|
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.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.22",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.25",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.8",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.8",
|
|
58
|
+
"@smithy/util-retry": "^4.2.8",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|