@aws-sdk/client-glue 3.231.0 → 3.234.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/endpoint/ruleset.js +0 -9
- package/dist-cjs/protocols/Aws_json1_1.js +2 -0
- package/dist-es/endpoint/ruleset.js +0 -9
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- package/dist-types/Glue.d.ts +23 -54
- package/dist-types/commands/CreateCustomEntityTypeCommand.d.ts +1 -2
- package/dist-types/commands/CreateDataQualityRulesetCommand.d.ts +1 -2
- package/dist-types/commands/CreateMLTransformCommand.d.ts +1 -3
- package/dist-types/commands/DeleteColumnStatisticsForPartitionCommand.d.ts +1 -2
- package/dist-types/commands/DeleteColumnStatisticsForTableCommand.d.ts +1 -2
- package/dist-types/commands/GetColumnStatisticsForPartitionCommand.d.ts +1 -2
- package/dist-types/commands/GetColumnStatisticsForTableCommand.d.ts +0 -1
- package/dist-types/commands/GetJobBookmarkCommand.d.ts +2 -4
- package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -2
- package/dist-types/commands/ListCrawlersCommand.d.ts +0 -1
- package/dist-types/commands/ListCrawlsCommand.d.ts +2 -3
- package/dist-types/commands/ListDevEndpointsCommand.d.ts +0 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -2
- package/dist-types/commands/ListTriggersCommand.d.ts +0 -1
- package/dist-types/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/commands/ResetJobBookmarkCommand.d.ts +2 -4
- package/dist-types/commands/StartImportLabelsTaskRunCommand.d.ts +0 -3
- package/dist-types/commands/StartMLEvaluationTaskRunCommand.d.ts +2 -4
- package/dist-types/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +1 -4
- package/dist-types/commands/UpdateColumnStatisticsForPartitionCommand.d.ts +0 -1
- package/dist-types/commands/UpdateColumnStatisticsForTableCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -2
- package/dist-types/commands/UpdateMLTransformCommand.d.ts +0 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +51 -105
- package/dist-types/models/models_1.d.ts +35 -55
- package/dist-types/models/models_2.d.ts +28 -66
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +7 -7
|
@@ -12709,6 +12709,7 @@ const serializeAws_json1_1DeleteWorkflowRequest = (input, context) => {
|
|
|
12709
12709
|
const serializeAws_json1_1DeltaTarget = (input, context) => {
|
|
12710
12710
|
return {
|
|
12711
12711
|
...(input.ConnectionName != null && { ConnectionName: input.ConnectionName }),
|
|
12712
|
+
...(input.CreateNativeDeltaTable != null && { CreateNativeDeltaTable: input.CreateNativeDeltaTable }),
|
|
12712
12713
|
...(input.DeltaTables != null && { DeltaTables: serializeAws_json1_1PathList(input.DeltaTables, context) }),
|
|
12713
12714
|
...(input.WriteManifest != null && { WriteManifest: input.WriteManifest }),
|
|
12714
12715
|
};
|
|
@@ -17199,6 +17200,7 @@ const deserializeAws_json1_1DeleteWorkflowResponse = (output, context) => {
|
|
|
17199
17200
|
const deserializeAws_json1_1DeltaTarget = (output, context) => {
|
|
17200
17201
|
return {
|
|
17201
17202
|
ConnectionName: (0, smithy_client_1.expectString)(output.ConnectionName),
|
|
17203
|
+
CreateNativeDeltaTable: (0, smithy_client_1.expectBoolean)(output.CreateNativeDeltaTable),
|
|
17202
17204
|
DeltaTables: output.DeltaTables != null ? deserializeAws_json1_1PathList(output.DeltaTables, context) : undefined,
|
|
17203
17205
|
WriteManifest: (0, smithy_client_1.expectBoolean)(output.WriteManifest),
|
|
17204
17206
|
};
|
|
@@ -12294,6 +12294,7 @@ const serializeAws_json1_1DeleteWorkflowRequest = (input, context) => {
|
|
|
12294
12294
|
const serializeAws_json1_1DeltaTarget = (input, context) => {
|
|
12295
12295
|
return {
|
|
12296
12296
|
...(input.ConnectionName != null && { ConnectionName: input.ConnectionName }),
|
|
12297
|
+
...(input.CreateNativeDeltaTable != null && { CreateNativeDeltaTable: input.CreateNativeDeltaTable }),
|
|
12297
12298
|
...(input.DeltaTables != null && { DeltaTables: serializeAws_json1_1PathList(input.DeltaTables, context) }),
|
|
12298
12299
|
...(input.WriteManifest != null && { WriteManifest: input.WriteManifest }),
|
|
12299
12300
|
};
|
|
@@ -16784,6 +16785,7 @@ const deserializeAws_json1_1DeleteWorkflowResponse = (output, context) => {
|
|
|
16784
16785
|
const deserializeAws_json1_1DeltaTarget = (output, context) => {
|
|
16785
16786
|
return {
|
|
16786
16787
|
ConnectionName: __expectString(output.ConnectionName),
|
|
16788
|
+
CreateNativeDeltaTable: __expectBoolean(output.CreateNativeDeltaTable),
|
|
16787
16789
|
DeltaTables: output.DeltaTables != null ? deserializeAws_json1_1PathList(output.DeltaTables, context) : undefined,
|
|
16788
16790
|
WriteManifest: __expectBoolean(output.WriteManifest),
|
|
16789
16791
|
};
|
package/dist-types/Glue.d.ts
CHANGED
|
@@ -379,8 +379,7 @@ export declare class Glue extends GlueClient {
|
|
|
379
379
|
createCrawler(args: CreateCrawlerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCrawlerCommandOutput) => void): void;
|
|
380
380
|
/**
|
|
381
381
|
* <p>Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data.</p>
|
|
382
|
-
*
|
|
383
|
-
* <p>Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.</p>
|
|
382
|
+
* <p>Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.</p>
|
|
384
383
|
*/
|
|
385
384
|
createCustomEntityType(args: CreateCustomEntityTypeCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomEntityTypeCommandOutput>;
|
|
386
385
|
createCustomEntityType(args: CreateCustomEntityTypeCommandInput, cb: (err: any, data?: CreateCustomEntityTypeCommandOutput) => void): void;
|
|
@@ -393,8 +392,7 @@ export declare class Glue extends GlueClient {
|
|
|
393
392
|
createDatabase(args: CreateDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatabaseCommandOutput) => void): void;
|
|
394
393
|
/**
|
|
395
394
|
* <p>Creates a data quality ruleset with DQDL rules applied to a specified Glue table.</p>
|
|
396
|
-
*
|
|
397
|
-
* <p>You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.</p>
|
|
395
|
+
* <p>You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.</p>
|
|
398
396
|
*/
|
|
399
397
|
createDataQualityRuleset(args: CreateDataQualityRulesetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataQualityRulesetCommandOutput>;
|
|
400
398
|
createDataQualityRuleset(args: CreateDataQualityRulesetCommandInput, cb: (err: any, data?: CreateDataQualityRulesetCommandOutput) => void): void;
|
|
@@ -414,12 +412,10 @@ export declare class Glue extends GlueClient {
|
|
|
414
412
|
/**
|
|
415
413
|
* <p>Creates an Glue machine learning transform. This operation creates the transform and
|
|
416
414
|
* all the necessary parameters to train it.</p>
|
|
417
|
-
*
|
|
418
|
-
* <p>Call this operation as the first step in the process of using a machine learning transform
|
|
415
|
+
* <p>Call this operation as the first step in the process of using a machine learning transform
|
|
419
416
|
* (such as the <code>FindMatches</code> transform) for deduplicating data. You can provide an
|
|
420
417
|
* optional <code>Description</code>, in addition to the parameters that you want to use for your
|
|
421
418
|
* algorithm.</p>
|
|
422
|
-
*
|
|
423
419
|
* <p>You must also specify certain parameters for the tasks that Glue runs on your
|
|
424
420
|
* behalf as part of learning from your data and creating a high-quality machine learning
|
|
425
421
|
* transform. These parameters include <code>Role</code>, and optionally,
|
|
@@ -511,16 +507,14 @@ export declare class Glue extends GlueClient {
|
|
|
511
507
|
deleteClassifier(args: DeleteClassifierCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClassifierCommandOutput) => void): void;
|
|
512
508
|
/**
|
|
513
509
|
* <p>Delete the partition column statistics of a column.</p>
|
|
514
|
-
*
|
|
515
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeletePartition</code>.</p>
|
|
510
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeletePartition</code>.</p>
|
|
516
511
|
*/
|
|
517
512
|
deleteColumnStatisticsForPartition(args: DeleteColumnStatisticsForPartitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteColumnStatisticsForPartitionCommandOutput>;
|
|
518
513
|
deleteColumnStatisticsForPartition(args: DeleteColumnStatisticsForPartitionCommandInput, cb: (err: any, data?: DeleteColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
519
514
|
deleteColumnStatisticsForPartition(args: DeleteColumnStatisticsForPartitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
520
515
|
/**
|
|
521
516
|
* <p>Retrieves table statistics of columns.</p>
|
|
522
|
-
*
|
|
523
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeleteTable</code>.</p>
|
|
517
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeleteTable</code>.</p>
|
|
524
518
|
*/
|
|
525
519
|
deleteColumnStatisticsForTable(args: DeleteColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteColumnStatisticsForTableCommandOutput>;
|
|
526
520
|
deleteColumnStatisticsForTable(args: DeleteColumnStatisticsForTableCommandInput, cb: (err: any, data?: DeleteColumnStatisticsForTableCommandOutput) => void): void;
|
|
@@ -722,15 +716,13 @@ export declare class Glue extends GlueClient {
|
|
|
722
716
|
getClassifiers(args: GetClassifiersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClassifiersCommandOutput) => void): void;
|
|
723
717
|
/**
|
|
724
718
|
* <p>Retrieves partition statistics of columns.</p>
|
|
725
|
-
*
|
|
726
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetPartition</code>.</p>
|
|
719
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetPartition</code>.</p>
|
|
727
720
|
*/
|
|
728
721
|
getColumnStatisticsForPartition(args: GetColumnStatisticsForPartitionCommandInput, options?: __HttpHandlerOptions): Promise<GetColumnStatisticsForPartitionCommandOutput>;
|
|
729
722
|
getColumnStatisticsForPartition(args: GetColumnStatisticsForPartitionCommandInput, cb: (err: any, data?: GetColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
730
723
|
getColumnStatisticsForPartition(args: GetColumnStatisticsForPartitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
731
724
|
/**
|
|
732
725
|
* <p>Retrieves table statistics of columns.</p>
|
|
733
|
-
*
|
|
734
726
|
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetTable</code>.</p>
|
|
735
727
|
*/
|
|
736
728
|
getColumnStatisticsForTable(args: GetColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<GetColumnStatisticsForTableCommandOutput>;
|
|
@@ -851,10 +843,8 @@ export declare class Glue extends GlueClient {
|
|
|
851
843
|
getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
852
844
|
/**
|
|
853
845
|
* <p>Returns information on a job bookmark entry.</p>
|
|
854
|
-
*
|
|
855
|
-
*
|
|
856
|
-
*
|
|
857
|
-
* <ul>
|
|
846
|
+
* <p>For more information about enabling and using job bookmarks, see:</p>
|
|
847
|
+
* <ul>
|
|
858
848
|
* <li>
|
|
859
849
|
* <p>
|
|
860
850
|
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
|
|
@@ -915,8 +905,7 @@ export declare class Glue extends GlueClient {
|
|
|
915
905
|
* workflows. You can get a sortable, filterable list of machine learning task runs by calling
|
|
916
906
|
* <code>GetMLTaskRuns</code> with their parent transform's <code>TransformID</code> and other
|
|
917
907
|
* optional parameters as documented in this section.</p>
|
|
918
|
-
*
|
|
919
|
-
* <p>This operation returns a list of historic runs and must be paginated.</p>
|
|
908
|
+
* <p>This operation returns a list of historic runs and must be paginated.</p>
|
|
920
909
|
*/
|
|
921
910
|
getMLTaskRuns(args: GetMLTaskRunsCommandInput, options?: __HttpHandlerOptions): Promise<GetMLTaskRunsCommandOutput>;
|
|
922
911
|
getMLTaskRuns(args: GetMLTaskRunsCommandInput, cb: (err: any, data?: GetMLTaskRunsCommandOutput) => void): void;
|
|
@@ -1143,7 +1132,6 @@ export declare class Glue extends GlueClient {
|
|
|
1143
1132
|
* <p>Retrieves the names of all crawler resources in this Amazon Web Services account, or the
|
|
1144
1133
|
* resources with the specified tag. This operation allows you to see which
|
|
1145
1134
|
* resources are available in your account, and their names.</p>
|
|
1146
|
-
*
|
|
1147
1135
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1148
1136
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1149
1137
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -1153,9 +1141,8 @@ export declare class Glue extends GlueClient {
|
|
|
1153
1141
|
listCrawlers(args: ListCrawlersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrawlersCommandOutput) => void): void;
|
|
1154
1142
|
/**
|
|
1155
1143
|
* <p>Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned.</p>
|
|
1156
|
-
*
|
|
1157
|
-
*
|
|
1158
|
-
* <ul>
|
|
1144
|
+
* <p>You may use this API to:</p>
|
|
1145
|
+
* <ul>
|
|
1159
1146
|
* <li>
|
|
1160
1147
|
* <p>Retrive all the crawls of a specified crawler.</p>
|
|
1161
1148
|
* </li>
|
|
@@ -1207,7 +1194,6 @@ export declare class Glue extends GlueClient {
|
|
|
1207
1194
|
* <p>Retrieves the names of all <code>DevEndpoint</code> resources in this Amazon Web Services account, or the
|
|
1208
1195
|
* resources with the specified tag. This operation allows you to see which resources are
|
|
1209
1196
|
* available in your account, and their names.</p>
|
|
1210
|
-
*
|
|
1211
1197
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1212
1198
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1213
1199
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -1217,8 +1203,7 @@ export declare class Glue extends GlueClient {
|
|
|
1217
1203
|
listDevEndpoints(args: ListDevEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevEndpointsCommandOutput) => void): void;
|
|
1218
1204
|
/**
|
|
1219
1205
|
* <p>Retrieves the names of all job resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.</p>
|
|
1220
|
-
*
|
|
1221
|
-
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1206
|
+
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1222
1207
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1223
1208
|
* filtering, only resources with the tag are retrieved.</p>
|
|
1224
1209
|
*/
|
|
@@ -1268,7 +1253,6 @@ export declare class Glue extends GlueClient {
|
|
|
1268
1253
|
listStatements(args: ListStatementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStatementsCommandOutput) => void): void;
|
|
1269
1254
|
/**
|
|
1270
1255
|
* <p>Retrieves the names of all trigger resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.</p>
|
|
1271
|
-
*
|
|
1272
1256
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1273
1257
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1274
1258
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -1316,7 +1300,7 @@ export declare class Glue extends GlueClient {
|
|
|
1316
1300
|
/**
|
|
1317
1301
|
* <p>Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.</p>
|
|
1318
1302
|
* <p>If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the <code>GetSchemaVersion</code> API with the <code>SchemaVersionId</code> to check compatibility modes.</p>
|
|
1319
|
-
*
|
|
1303
|
+
* <p>If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.</p>
|
|
1320
1304
|
*/
|
|
1321
1305
|
registerSchemaVersion(args: RegisterSchemaVersionCommandInput, options?: __HttpHandlerOptions): Promise<RegisterSchemaVersionCommandOutput>;
|
|
1322
1306
|
registerSchemaVersion(args: RegisterSchemaVersionCommandInput, cb: (err: any, data?: RegisterSchemaVersionCommandOutput) => void): void;
|
|
@@ -1329,10 +1313,8 @@ export declare class Glue extends GlueClient {
|
|
|
1329
1313
|
removeSchemaVersionMetadata(args: RemoveSchemaVersionMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveSchemaVersionMetadataCommandOutput) => void): void;
|
|
1330
1314
|
/**
|
|
1331
1315
|
* <p>Resets a bookmark entry.</p>
|
|
1332
|
-
*
|
|
1333
|
-
*
|
|
1334
|
-
*
|
|
1335
|
-
* <ul>
|
|
1316
|
+
* <p>For more information about enabling and using job bookmarks, see:</p>
|
|
1317
|
+
* <ul>
|
|
1336
1318
|
* <li>
|
|
1337
1319
|
* <p>
|
|
1338
1320
|
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
|
|
@@ -1426,7 +1408,6 @@ export declare class Glue extends GlueClient {
|
|
|
1426
1408
|
* part of the active learning workflow that starts with the
|
|
1427
1409
|
* <code>StartMLLabelingSetGenerationTaskRun</code> call and that ultimately results in
|
|
1428
1410
|
* improving the quality of your machine learning transform. </p>
|
|
1429
|
-
*
|
|
1430
1411
|
* <p>After the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue machine learning
|
|
1431
1412
|
* will have generated a series of questions for humans to answer. (Answering these questions is
|
|
1432
1413
|
* often called 'labeling' in the machine learning workflows). In the case of the
|
|
@@ -1436,14 +1417,12 @@ export declare class Glue extends GlueClient {
|
|
|
1436
1417
|
* <code>StartImportLabelsTaskRun</code>. After <code>StartImportLabelsTaskRun</code> finishes,
|
|
1437
1418
|
* all future runs of the machine learning transform use the new and improved labels and perform
|
|
1438
1419
|
* a higher-quality transformation.</p>
|
|
1439
|
-
*
|
|
1440
1420
|
* <p>By default, <code>StartMLLabelingSetGenerationTaskRun</code> continually learns from and
|
|
1441
1421
|
* combines all labels that you upload unless you set <code>Replace</code> to true. If you set
|
|
1442
1422
|
* <code>Replace</code> to true, <code>StartImportLabelsTaskRun</code> deletes and forgets all
|
|
1443
1423
|
* previously uploaded labels and learns only from the exact set that you upload. Replacing
|
|
1444
1424
|
* labels can be helpful if you realize that you previously uploaded incorrect labels, and you
|
|
1445
1425
|
* believe that they are having a negative effect on your transform quality.</p>
|
|
1446
|
-
*
|
|
1447
1426
|
* <p>You can check on the status of your task run by calling the <code>GetMLTaskRun</code>
|
|
1448
1427
|
* operation. </p>
|
|
1449
1428
|
*/
|
|
@@ -1458,12 +1437,10 @@ export declare class Glue extends GlueClient {
|
|
|
1458
1437
|
startJobRun(args: StartJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
1459
1438
|
/**
|
|
1460
1439
|
* <p>Starts a task to estimate the quality of the transform. </p>
|
|
1461
|
-
*
|
|
1462
|
-
* <p>When you provide label sets as examples of truth, Glue machine learning uses some of
|
|
1440
|
+
* <p>When you provide label sets as examples of truth, Glue machine learning uses some of
|
|
1463
1441
|
* those examples to learn from them. The rest of the labels are used as a test to estimate
|
|
1464
1442
|
* quality.</p>
|
|
1465
|
-
*
|
|
1466
|
-
* <p>Returns a unique identifier for the run. You can call <code>GetMLTaskRun</code> to get more
|
|
1443
|
+
* <p>Returns a unique identifier for the run. You can call <code>GetMLTaskRun</code> to get more
|
|
1467
1444
|
* information about the stats of the <code>EvaluationTaskRun</code>.</p>
|
|
1468
1445
|
*/
|
|
1469
1446
|
startMLEvaluationTaskRun(args: StartMLEvaluationTaskRunCommandInput, options?: __HttpHandlerOptions): Promise<StartMLEvaluationTaskRunCommandOutput>;
|
|
@@ -1472,14 +1449,11 @@ export declare class Glue extends GlueClient {
|
|
|
1472
1449
|
/**
|
|
1473
1450
|
* <p>Starts the active learning workflow for your machine learning transform to improve the
|
|
1474
1451
|
* transform's quality by generating label sets and adding labels.</p>
|
|
1475
|
-
*
|
|
1476
|
-
* <p>When the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue will have
|
|
1452
|
+
* <p>When the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue will have
|
|
1477
1453
|
* generated a "labeling set" or a set of questions for humans to answer.</p>
|
|
1478
|
-
*
|
|
1479
1454
|
* <p>In the case of the <code>FindMatches</code> transform, these questions are of the form,
|
|
1480
1455
|
* “What is the correct way to group these rows together into groups composed entirely of
|
|
1481
1456
|
* matching records?” </p>
|
|
1482
|
-
*
|
|
1483
1457
|
* <p>After the labeling process is finished, you can upload your labels with a call to
|
|
1484
1458
|
* <code>StartImportLabelsTaskRun</code>. After <code>StartImportLabelsTaskRun</code> finishes,
|
|
1485
1459
|
* all future runs of the machine learning transform will use the new and improved labels and
|
|
@@ -1564,7 +1538,6 @@ export declare class Glue extends GlueClient {
|
|
|
1564
1538
|
updateClassifier(args: UpdateClassifierCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClassifierCommandOutput) => void): void;
|
|
1565
1539
|
/**
|
|
1566
1540
|
* <p>Creates or updates partition statistics of columns.</p>
|
|
1567
|
-
*
|
|
1568
1541
|
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdatePartition</code>.</p>
|
|
1569
1542
|
*/
|
|
1570
1543
|
updateColumnStatisticsForPartition(args: UpdateColumnStatisticsForPartitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateColumnStatisticsForPartitionCommandOutput>;
|
|
@@ -1572,8 +1545,7 @@ export declare class Glue extends GlueClient {
|
|
|
1572
1545
|
updateColumnStatisticsForPartition(args: UpdateColumnStatisticsForPartitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
1573
1546
|
/**
|
|
1574
1547
|
* <p>Creates or updates table statistics of columns.</p>
|
|
1575
|
-
*
|
|
1576
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdateTable</code>.</p>
|
|
1548
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdateTable</code>.</p>
|
|
1577
1549
|
*/
|
|
1578
1550
|
updateColumnStatisticsForTable(args: UpdateColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<UpdateColumnStatisticsForTableCommandOutput>;
|
|
1579
1551
|
updateColumnStatisticsForTable(args: UpdateColumnStatisticsForTableCommandInput, cb: (err: any, data?: UpdateColumnStatisticsForTableCommandOutput) => void): void;
|
|
@@ -1624,15 +1596,13 @@ export declare class Glue extends GlueClient {
|
|
|
1624
1596
|
updateJob(args: UpdateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobCommandOutput) => void): void;
|
|
1625
1597
|
/**
|
|
1626
1598
|
* <p>Synchronizes a job from the source control repository. This operation takes the job artifacts that are located in the remote repository and updates the Glue internal stores with these artifacts.</p>
|
|
1627
|
-
*
|
|
1628
|
-
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1599
|
+
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1629
1600
|
*/
|
|
1630
1601
|
updateJobFromSourceControl(args: UpdateJobFromSourceControlCommandInput, options?: __HttpHandlerOptions): Promise<UpdateJobFromSourceControlCommandOutput>;
|
|
1631
1602
|
updateJobFromSourceControl(args: UpdateJobFromSourceControlCommandInput, cb: (err: any, data?: UpdateJobFromSourceControlCommandOutput) => void): void;
|
|
1632
1603
|
updateJobFromSourceControl(args: UpdateJobFromSourceControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobFromSourceControlCommandOutput) => void): void;
|
|
1633
1604
|
/**
|
|
1634
1605
|
* <p>Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.</p>
|
|
1635
|
-
*
|
|
1636
1606
|
* <p>After calling this operation, you can call the <code>StartMLEvaluationTaskRun</code>
|
|
1637
1607
|
* operation to assess how well your new parameters achieved your goals (such as improving the
|
|
1638
1608
|
* quality of your machine learning transform, or making it more cost-effective).</p>
|
|
@@ -1654,17 +1624,16 @@ export declare class Glue extends GlueClient {
|
|
|
1654
1624
|
updateRegistry(args: UpdateRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRegistryCommandOutput) => void): void;
|
|
1655
1625
|
/**
|
|
1656
1626
|
* <p>Updates the description, compatibility setting, or version checkpoint for a schema set.</p>
|
|
1657
|
-
*
|
|
1627
|
+
* <p>For updating the compatibility setting, the call will not validate compatibility for the entire set of schema versions with the new compatibility setting. If the value for <code>Compatibility</code> is provided, the <code>VersionNumber</code> (a checkpoint) is also required. The API will validate the checkpoint version number for consistency.</p>
|
|
1658
1628
|
* <p>If the value for the <code>VersionNumber</code> (checkpoint) is provided, <code>Compatibility</code> is optional and this can be used to set/reset a checkpoint for the schema.</p>
|
|
1659
|
-
*
|
|
1629
|
+
* <p>This update will happen only if the schema is in the AVAILABLE state.</p>
|
|
1660
1630
|
*/
|
|
1661
1631
|
updateSchema(args: UpdateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSchemaCommandOutput>;
|
|
1662
1632
|
updateSchema(args: UpdateSchemaCommandInput, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
|
|
1663
1633
|
updateSchema(args: UpdateSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
|
|
1664
1634
|
/**
|
|
1665
1635
|
* <p>Synchronizes a job to the source control repository. This operation takes the job artifacts from the Glue internal stores and makes a commit to the remote repository that is configured on the job.</p>
|
|
1666
|
-
*
|
|
1667
|
-
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1636
|
+
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1668
1637
|
*/
|
|
1669
1638
|
updateSourceControlFromJob(args: UpdateSourceControlFromJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSourceControlFromJobCommandOutput>;
|
|
1670
1639
|
updateSourceControlFromJob(args: UpdateSourceControlFromJobCommandInput, cb: (err: any, data?: UpdateSourceControlFromJobCommandOutput) => void): void;
|
|
@@ -9,8 +9,7 @@ export interface CreateCustomEntityTypeCommandOutput extends CreateCustomEntityT
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.</p>
|
|
12
|
+
* <p>Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|
|
@@ -9,8 +9,7 @@ export interface CreateDataQualityRulesetCommandOutput extends CreateDataQuality
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Creates a data quality ruleset with DQDL rules applied to a specified Glue table.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.</p>
|
|
12
|
+
* <p>You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|
|
@@ -10,12 +10,10 @@ export interface CreateMLTransformCommandOutput extends CreateMLTransformRespons
|
|
|
10
10
|
/**
|
|
11
11
|
* <p>Creates an Glue machine learning transform. This operation creates the transform and
|
|
12
12
|
* all the necessary parameters to train it.</p>
|
|
13
|
-
*
|
|
14
|
-
* <p>Call this operation as the first step in the process of using a machine learning transform
|
|
13
|
+
* <p>Call this operation as the first step in the process of using a machine learning transform
|
|
15
14
|
* (such as the <code>FindMatches</code> transform) for deduplicating data. You can provide an
|
|
16
15
|
* optional <code>Description</code>, in addition to the parameters that you want to use for your
|
|
17
16
|
* algorithm.</p>
|
|
18
|
-
*
|
|
19
17
|
* <p>You must also specify certain parameters for the tasks that Glue runs on your
|
|
20
18
|
* behalf as part of learning from your data and creating a high-quality machine learning
|
|
21
19
|
* transform. These parameters include <code>Role</code>, and optionally,
|
|
@@ -9,8 +9,7 @@ export interface DeleteColumnStatisticsForPartitionCommandOutput extends DeleteC
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Delete the partition column statistics of a column.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeletePartition</code>.</p>
|
|
12
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeletePartition</code>.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|
|
@@ -9,8 +9,7 @@ export interface DeleteColumnStatisticsForTableCommandOutput extends DeleteColum
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Retrieves table statistics of columns.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeleteTable</code>.</p>
|
|
12
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeleteTable</code>.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|
|
@@ -9,8 +9,7 @@ export interface GetColumnStatisticsForPartitionCommandOutput extends GetColumnS
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Retrieves partition statistics of columns.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetPartition</code>.</p>
|
|
12
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetPartition</code>.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|
|
@@ -9,7 +9,6 @@ export interface GetColumnStatisticsForTableCommandOutput extends GetColumnStati
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Retrieves table statistics of columns.</p>
|
|
12
|
-
*
|
|
13
12
|
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetTable</code>.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -9,10 +9,8 @@ export interface GetJobBookmarkCommandOutput extends GetJobBookmarkResponse, __M
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Returns information on a job bookmark entry.</p>
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* <ul>
|
|
12
|
+
* <p>For more information about enabling and using job bookmarks, see:</p>
|
|
13
|
+
* <ul>
|
|
16
14
|
* <li>
|
|
17
15
|
* <p>
|
|
18
16
|
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
|
|
@@ -13,8 +13,7 @@ export interface GetMLTaskRunsCommandOutput extends GetMLTaskRunsResponse, __Met
|
|
|
13
13
|
* workflows. You can get a sortable, filterable list of machine learning task runs by calling
|
|
14
14
|
* <code>GetMLTaskRuns</code> with their parent transform's <code>TransformID</code> and other
|
|
15
15
|
* optional parameters as documented in this section.</p>
|
|
16
|
-
*
|
|
17
|
-
* <p>This operation returns a list of historic runs and must be paginated.</p>
|
|
16
|
+
* <p>This operation returns a list of historic runs and must be paginated.</p>
|
|
18
17
|
* @example
|
|
19
18
|
* Use a bare-bones client and the command you need to make an API call.
|
|
20
19
|
* ```javascript
|
|
@@ -11,7 +11,6 @@ export interface ListCrawlersCommandOutput extends ListCrawlersResponse, __Metad
|
|
|
11
11
|
* <p>Retrieves the names of all crawler resources in this Amazon Web Services account, or the
|
|
12
12
|
* resources with the specified tag. This operation allows you to see which
|
|
13
13
|
* resources are available in your account, and their names.</p>
|
|
14
|
-
*
|
|
15
14
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
16
15
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
17
16
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -9,9 +9,8 @@ export interface ListCrawlsCommandOutput extends ListCrawlsResponse, __MetadataB
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned.</p>
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* <ul>
|
|
12
|
+
* <p>You may use this API to:</p>
|
|
13
|
+
* <ul>
|
|
15
14
|
* <li>
|
|
16
15
|
* <p>Retrive all the crawls of a specified crawler.</p>
|
|
17
16
|
* </li>
|
|
@@ -11,7 +11,6 @@ export interface ListDevEndpointsCommandOutput extends ListDevEndpointsResponse,
|
|
|
11
11
|
* <p>Retrieves the names of all <code>DevEndpoint</code> resources in this Amazon Web Services account, or the
|
|
12
12
|
* resources with the specified tag. This operation allows you to see which resources are
|
|
13
13
|
* available in your account, and their names.</p>
|
|
14
|
-
*
|
|
15
14
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
16
15
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
17
16
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -9,8 +9,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Retrieves the names of all job resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
12
|
+
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
14
13
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
15
14
|
* filtering, only resources with the tag are retrieved.</p>
|
|
16
15
|
* @example
|
|
@@ -9,7 +9,6 @@ export interface ListTriggersCommandOutput extends ListTriggersResponse, __Metad
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Retrieves the names of all trigger resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.</p>
|
|
12
|
-
*
|
|
13
12
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
14
13
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
15
14
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -10,7 +10,7 @@ export interface RegisterSchemaVersionCommandOutput extends RegisterSchemaVersio
|
|
|
10
10
|
/**
|
|
11
11
|
* <p>Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.</p>
|
|
12
12
|
* <p>If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the <code>GetSchemaVersion</code> API with the <code>SchemaVersionId</code> to check compatibility modes.</p>
|
|
13
|
-
*
|
|
13
|
+
* <p>If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -9,10 +9,8 @@ export interface ResetJobBookmarkCommandOutput extends ResetJobBookmarkResponse,
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Resets a bookmark entry.</p>
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* <ul>
|
|
12
|
+
* <p>For more information about enabling and using job bookmarks, see:</p>
|
|
13
|
+
* <ul>
|
|
16
14
|
* <li>
|
|
17
15
|
* <p>
|
|
18
16
|
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
|
|
@@ -13,7 +13,6 @@ export interface StartImportLabelsTaskRunCommandOutput extends StartImportLabels
|
|
|
13
13
|
* part of the active learning workflow that starts with the
|
|
14
14
|
* <code>StartMLLabelingSetGenerationTaskRun</code> call and that ultimately results in
|
|
15
15
|
* improving the quality of your machine learning transform. </p>
|
|
16
|
-
*
|
|
17
16
|
* <p>After the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue machine learning
|
|
18
17
|
* will have generated a series of questions for humans to answer. (Answering these questions is
|
|
19
18
|
* often called 'labeling' in the machine learning workflows). In the case of the
|
|
@@ -23,14 +22,12 @@ export interface StartImportLabelsTaskRunCommandOutput extends StartImportLabels
|
|
|
23
22
|
* <code>StartImportLabelsTaskRun</code>. After <code>StartImportLabelsTaskRun</code> finishes,
|
|
24
23
|
* all future runs of the machine learning transform use the new and improved labels and perform
|
|
25
24
|
* a higher-quality transformation.</p>
|
|
26
|
-
*
|
|
27
25
|
* <p>By default, <code>StartMLLabelingSetGenerationTaskRun</code> continually learns from and
|
|
28
26
|
* combines all labels that you upload unless you set <code>Replace</code> to true. If you set
|
|
29
27
|
* <code>Replace</code> to true, <code>StartImportLabelsTaskRun</code> deletes and forgets all
|
|
30
28
|
* previously uploaded labels and learns only from the exact set that you upload. Replacing
|
|
31
29
|
* labels can be helpful if you realize that you previously uploaded incorrect labels, and you
|
|
32
30
|
* believe that they are having a negative effect on your transform quality.</p>
|
|
33
|
-
*
|
|
34
31
|
* <p>You can check on the status of your task run by calling the <code>GetMLTaskRun</code>
|
|
35
32
|
* operation. </p>
|
|
36
33
|
* @example
|
|
@@ -9,12 +9,10 @@ export interface StartMLEvaluationTaskRunCommandOutput extends StartMLEvaluation
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Starts a task to estimate the quality of the transform. </p>
|
|
12
|
-
*
|
|
13
|
-
* <p>When you provide label sets as examples of truth, Glue machine learning uses some of
|
|
12
|
+
* <p>When you provide label sets as examples of truth, Glue machine learning uses some of
|
|
14
13
|
* those examples to learn from them. The rest of the labels are used as a test to estimate
|
|
15
14
|
* quality.</p>
|
|
16
|
-
*
|
|
17
|
-
* <p>Returns a unique identifier for the run. You can call <code>GetMLTaskRun</code> to get more
|
|
15
|
+
* <p>Returns a unique identifier for the run. You can call <code>GetMLTaskRun</code> to get more
|
|
18
16
|
* information about the stats of the <code>EvaluationTaskRun</code>.</p>
|
|
19
17
|
* @example
|
|
20
18
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -10,14 +10,11 @@ export interface StartMLLabelingSetGenerationTaskRunCommandOutput extends StartM
|
|
|
10
10
|
/**
|
|
11
11
|
* <p>Starts the active learning workflow for your machine learning transform to improve the
|
|
12
12
|
* transform's quality by generating label sets and adding labels.</p>
|
|
13
|
-
*
|
|
14
|
-
* <p>When the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue will have
|
|
13
|
+
* <p>When the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue will have
|
|
15
14
|
* generated a "labeling set" or a set of questions for humans to answer.</p>
|
|
16
|
-
*
|
|
17
15
|
* <p>In the case of the <code>FindMatches</code> transform, these questions are of the form,
|
|
18
16
|
* “What is the correct way to group these rows together into groups composed entirely of
|
|
19
17
|
* matching records?” </p>
|
|
20
|
-
*
|
|
21
18
|
* <p>After the labeling process is finished, you can upload your labels with a call to
|
|
22
19
|
* <code>StartImportLabelsTaskRun</code>. After <code>StartImportLabelsTaskRun</code> finishes,
|
|
23
20
|
* all future runs of the machine learning transform will use the new and improved labels and
|
|
@@ -9,7 +9,6 @@ export interface UpdateColumnStatisticsForPartitionCommandOutput extends UpdateC
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Creates or updates partition statistics of columns.</p>
|
|
12
|
-
*
|
|
13
12
|
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdatePartition</code>.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -9,8 +9,7 @@ export interface UpdateColumnStatisticsForTableCommandOutput extends UpdateColum
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Creates or updates table statistics of columns.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdateTable</code>.</p>
|
|
12
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdateTable</code>.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|
|
@@ -9,8 +9,7 @@ export interface UpdateJobFromSourceControlCommandOutput extends UpdateJobFromSo
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Synchronizes a job from the source control repository. This operation takes the job artifacts that are located in the remote repository and updates the Glue internal stores with these artifacts.</p>
|
|
12
|
-
*
|
|
13
|
-
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
12
|
+
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|