@aws-sdk/client-sagemaker 3.374.0 → 3.378.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.
|
@@ -77,8 +77,8 @@ export interface CreateAutoMLJobV2CommandOutput extends CreateAutoMLJobV2Respons
|
|
|
77
77
|
* MaxRuntimePerTrainingJobInSeconds: Number("int"),
|
|
78
78
|
* MaxAutoMLJobRuntimeInSeconds: Number("int"),
|
|
79
79
|
* },
|
|
80
|
-
* ContentColumn: "STRING_VALUE",
|
|
81
|
-
* TargetLabelColumn: "STRING_VALUE",
|
|
80
|
+
* ContentColumn: "STRING_VALUE", // required
|
|
81
|
+
* TargetLabelColumn: "STRING_VALUE", // required
|
|
82
82
|
* },
|
|
83
83
|
* TabularJobConfig: { // TabularJobConfig
|
|
84
84
|
* CandidateGenerationConfig: { // CandidateGenerationConfig
|
|
@@ -74,8 +74,8 @@ export interface DescribeAutoMLJobV2CommandOutput extends DescribeAutoMLJobV2Res
|
|
|
74
74
|
* // MaxRuntimePerTrainingJobInSeconds: Number("int"),
|
|
75
75
|
* // MaxAutoMLJobRuntimeInSeconds: Number("int"),
|
|
76
76
|
* // },
|
|
77
|
-
* // ContentColumn: "STRING_VALUE",
|
|
78
|
-
* // TargetLabelColumn: "STRING_VALUE",
|
|
77
|
+
* // ContentColumn: "STRING_VALUE", // required
|
|
78
|
+
* // TargetLabelColumn: "STRING_VALUE", // required
|
|
79
79
|
* // },
|
|
80
80
|
* // TabularJobConfig: { // TabularJobConfig
|
|
81
81
|
* // CandidateGenerationConfig: { // CandidateGenerationConfig
|
|
@@ -5211,14 +5211,14 @@ export interface TextClassificationJobConfig {
|
|
|
5211
5211
|
CompletionCriteria?: AutoMLJobCompletionCriteria;
|
|
5212
5212
|
/**
|
|
5213
5213
|
* <p>The name of the column used to provide the sentences to be classified. It should not be
|
|
5214
|
-
* the same as the target column
|
|
5214
|
+
* the same as the target column.</p>
|
|
5215
5215
|
*/
|
|
5216
|
-
ContentColumn
|
|
5216
|
+
ContentColumn: string | undefined;
|
|
5217
5217
|
/**
|
|
5218
5218
|
* <p>The name of the column used to provide the class labels. It should not be same as the
|
|
5219
|
-
* content column
|
|
5219
|
+
* content column.</p>
|
|
5220
5220
|
*/
|
|
5221
|
-
TargetLabelColumn
|
|
5221
|
+
TargetLabelColumn: string | undefined;
|
|
5222
5222
|
}
|
|
5223
5223
|
/**
|
|
5224
5224
|
* @public
|
|
@@ -1132,8 +1132,8 @@ export interface TabularJobConfig {
|
|
|
1132
1132
|
}
|
|
1133
1133
|
export interface TextClassificationJobConfig {
|
|
1134
1134
|
CompletionCriteria?: AutoMLJobCompletionCriteria;
|
|
1135
|
-
ContentColumn
|
|
1136
|
-
TargetLabelColumn
|
|
1135
|
+
ContentColumn: string | undefined;
|
|
1136
|
+
TargetLabelColumn: string | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
export interface TimeSeriesConfig {
|
|
1139
1139
|
TargetAttributeName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.378.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",
|
|
@@ -21,45 +21,45 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "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-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "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": "^
|
|
36
|
-
"@smithy/fetch-http-handler": "^
|
|
37
|
-
"@smithy/hash-node": "^
|
|
38
|
-
"@smithy/invalid-dependency": "^
|
|
39
|
-
"@smithy/middleware-content-length": "^
|
|
40
|
-
"@smithy/middleware-endpoint": "^
|
|
41
|
-
"@smithy/middleware-retry": "^
|
|
42
|
-
"@smithy/middleware-serde": "^
|
|
43
|
-
"@smithy/middleware-stack": "^
|
|
44
|
-
"@smithy/node-config-provider": "^
|
|
45
|
-
"@smithy/node-http-handler": "^
|
|
46
|
-
"@smithy/protocol-http": "^
|
|
47
|
-
"@smithy/smithy-client": "^
|
|
48
|
-
"@smithy/types": "^
|
|
49
|
-
"@smithy/url-parser": "^
|
|
50
|
-
"@smithy/util-base64": "^
|
|
51
|
-
"@smithy/util-body-length-browser": "^
|
|
52
|
-
"@smithy/util-body-length-node": "^
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^
|
|
55
|
-
"@smithy/util-retry": "^
|
|
56
|
-
"@smithy/util-utf8": "^
|
|
57
|
-
"@smithy/util-waiter": "^
|
|
24
|
+
"@aws-sdk/client-sts": "3.378.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.378.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.378.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.378.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.378.0",
|
|
31
|
+
"@aws-sdk/types": "3.378.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.378.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.0.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^2.0.1",
|
|
37
|
+
"@smithy/hash-node": "^2.0.1",
|
|
38
|
+
"@smithy/invalid-dependency": "^2.0.1",
|
|
39
|
+
"@smithy/middleware-content-length": "^2.0.1",
|
|
40
|
+
"@smithy/middleware-endpoint": "^2.0.1",
|
|
41
|
+
"@smithy/middleware-retry": "^2.0.1",
|
|
42
|
+
"@smithy/middleware-serde": "^2.0.1",
|
|
43
|
+
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
+
"@smithy/node-config-provider": "^2.0.1",
|
|
45
|
+
"@smithy/node-http-handler": "^2.0.1",
|
|
46
|
+
"@smithy/protocol-http": "^2.0.1",
|
|
47
|
+
"@smithy/smithy-client": "^2.0.1",
|
|
48
|
+
"@smithy/types": "^2.0.2",
|
|
49
|
+
"@smithy/url-parser": "^2.0.1",
|
|
50
|
+
"@smithy/util-base64": "^2.0.0",
|
|
51
|
+
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
|
+
"@smithy/util-body-length-node": "^2.0.0",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^2.0.1",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^2.0.1",
|
|
55
|
+
"@smithy/util-retry": "^2.0.0",
|
|
56
|
+
"@smithy/util-utf8": "^2.0.0",
|
|
57
|
+
"@smithy/util-waiter": "^2.0.1",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@smithy/service-client-documentation-generator": "^
|
|
62
|
+
"@smithy/service-client-documentation-generator": "^2.0.0",
|
|
63
63
|
"@tsconfig/node14": "1.0.3",
|
|
64
64
|
"@types/node": "^14.14.31",
|
|
65
65
|
"@types/uuid": "^8.3.0",
|