@aws-sdk/client-sagemaker 3.374.0 → 3.377.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 (Required).</p>
5214
+ * the same as the target column.</p>
5215
5215
  */
5216
- ContentColumn?: string;
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 (Required).</p>
5219
+ * content column.</p>
5220
5220
  */
5221
- TargetLabelColumn?: string;
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?: string;
1136
- TargetLabelColumn?: string;
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.374.0",
4
+ "version": "3.377.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,7 +21,7 @@
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.370.0",
24
+ "@aws-sdk/client-sts": "3.377.0",
25
25
  "@aws-sdk/credential-provider-node": "3.370.0",
26
26
  "@aws-sdk/middleware-host-header": "3.370.0",
27
27
  "@aws-sdk/middleware-logger": "3.370.0",