@aws-sdk/client-glue 3.218.0 → 3.219.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/commands/CreateUserDefinedFunctionCommand.js +3 -3
- package/dist-cjs/commands/PutSchemaVersionMetadataCommand.js +3 -3
- package/dist-cjs/commands/PutWorkflowRunPropertiesCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +24 -18
- package/dist-cjs/models/models_1.js +18 -18
- package/dist-cjs/models/models_2.js +15 -3
- package/dist-cjs/protocols/Aws_json1_1.js +72 -0
- package/dist-es/commands/CreateUserDefinedFunctionCommand.js +1 -1
- package/dist-es/commands/PutSchemaVersionMetadataCommand.js +1 -1
- package/dist-es/commands/PutWorkflowRunPropertiesCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +16 -9
- package/dist-es/models/models_1.js +9 -9
- package/dist-es/models/models_2.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +72 -0
- package/dist-types/Glue.d.ts +22 -52
- package/dist-types/commands/CreateCustomEntityTypeCommand.d.ts +1 -2
- package/dist-types/commands/CreateMLTransformCommand.d.ts +1 -3
- package/dist-types/commands/CreateUserDefinedFunctionCommand.d.ts +1 -1
- 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/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/PutWorkflowRunPropertiesCommand.d.ts +1 -2
- 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/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +132 -161
- package/dist-types/models/models_1.d.ts +89 -132
- package/dist-types/models/models_2.d.ts +111 -67
- package/dist-types/ts3.4/commands/CreateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutWorkflowRunPropertiesCommand.d.ts +4 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +33 -22
- package/dist-types/ts3.4/models/models_1.d.ts +22 -30
- package/dist-types/ts3.4/models/models_2.d.ts +33 -1
- package/package.json +1 -1
|
@@ -10500,6 +10500,9 @@ const serializeAws_json1_1CodeGenConfigurationNode = (input, context) => {
|
|
|
10500
10500
|
...(input.DropNullFields != null && {
|
|
10501
10501
|
DropNullFields: serializeAws_json1_1DropNullFields(input.DropNullFields, context),
|
|
10502
10502
|
}),
|
|
10503
|
+
...(input.DynamicTransform != null && {
|
|
10504
|
+
DynamicTransform: serializeAws_json1_1DynamicTransform(input.DynamicTransform, context),
|
|
10505
|
+
}),
|
|
10503
10506
|
...(input.DynamoDBCatalogSource != null && {
|
|
10504
10507
|
DynamoDBCatalogSource: serializeAws_json1_1DynamoDBCatalogSource(input.DynamoDBCatalogSource, context),
|
|
10505
10508
|
}),
|
|
@@ -11467,6 +11470,19 @@ const serializeAws_json1_1DropNullFields = (input, context) => {
|
|
|
11467
11470
|
}),
|
|
11468
11471
|
};
|
|
11469
11472
|
};
|
|
11473
|
+
const serializeAws_json1_1DynamicTransform = (input, context) => {
|
|
11474
|
+
return {
|
|
11475
|
+
...(input.FunctionName != null && { FunctionName: input.FunctionName }),
|
|
11476
|
+
...(input.Inputs != null && { Inputs: serializeAws_json1_1OneInput(input.Inputs, context) }),
|
|
11477
|
+
...(input.Name != null && { Name: input.Name }),
|
|
11478
|
+
...(input.Parameters != null && {
|
|
11479
|
+
Parameters: serializeAws_json1_1TransformConfigParameterList(input.Parameters, context),
|
|
11480
|
+
}),
|
|
11481
|
+
...(input.Path != null && { Path: input.Path }),
|
|
11482
|
+
...(input.TransformName != null && { TransformName: input.TransformName }),
|
|
11483
|
+
...(input.Version != null && { Version: input.Version }),
|
|
11484
|
+
};
|
|
11485
|
+
};
|
|
11470
11486
|
const serializeAws_json1_1DynamoDBCatalogSource = (input, context) => {
|
|
11471
11487
|
return {
|
|
11472
11488
|
...(input.Database != null && { Database: input.Database }),
|
|
@@ -13589,6 +13605,24 @@ const serializeAws_json1_1TaskRunSortCriteria = (input, context) => {
|
|
|
13589
13605
|
...(input.SortDirection != null && { SortDirection: input.SortDirection }),
|
|
13590
13606
|
};
|
|
13591
13607
|
};
|
|
13608
|
+
const serializeAws_json1_1TransformConfigParameter = (input, context) => {
|
|
13609
|
+
return {
|
|
13610
|
+
...(input.IsOptional != null && { IsOptional: input.IsOptional }),
|
|
13611
|
+
...(input.ListType != null && { ListType: input.ListType }),
|
|
13612
|
+
...(input.Name != null && { Name: input.Name }),
|
|
13613
|
+
...(input.Type != null && { Type: input.Type }),
|
|
13614
|
+
...(input.ValidationMessage != null && { ValidationMessage: input.ValidationMessage }),
|
|
13615
|
+
...(input.ValidationRule != null && { ValidationRule: input.ValidationRule }),
|
|
13616
|
+
...(input.Value != null && { Value: serializeAws_json1_1EnclosedInStringProperties(input.Value, context) }),
|
|
13617
|
+
};
|
|
13618
|
+
};
|
|
13619
|
+
const serializeAws_json1_1TransformConfigParameterList = (input, context) => {
|
|
13620
|
+
return input
|
|
13621
|
+
.filter((e) => e != null)
|
|
13622
|
+
.map((entry) => {
|
|
13623
|
+
return serializeAws_json1_1TransformConfigParameter(entry, context);
|
|
13624
|
+
});
|
|
13625
|
+
};
|
|
13592
13626
|
const serializeAws_json1_1TransformEncryption = (input, context) => {
|
|
13593
13627
|
return {
|
|
13594
13628
|
...(input.MlUserDataEncryption != null && {
|
|
@@ -14543,6 +14577,9 @@ const deserializeAws_json1_1CodeGenConfigurationNode = (output, context) => {
|
|
|
14543
14577
|
DropDuplicates: output.DropDuplicates != null ? deserializeAws_json1_1DropDuplicates(output.DropDuplicates, context) : undefined,
|
|
14544
14578
|
DropFields: output.DropFields != null ? deserializeAws_json1_1DropFields(output.DropFields, context) : undefined,
|
|
14545
14579
|
DropNullFields: output.DropNullFields != null ? deserializeAws_json1_1DropNullFields(output.DropNullFields, context) : undefined,
|
|
14580
|
+
DynamicTransform: output.DynamicTransform != null
|
|
14581
|
+
? deserializeAws_json1_1DynamicTransform(output.DynamicTransform, context)
|
|
14582
|
+
: undefined,
|
|
14546
14583
|
DynamoDBCatalogSource: output.DynamoDBCatalogSource != null
|
|
14547
14584
|
? deserializeAws_json1_1DynamoDBCatalogSource(output.DynamoDBCatalogSource, context)
|
|
14548
14585
|
: undefined,
|
|
@@ -15649,6 +15686,19 @@ const deserializeAws_json1_1DropNullFields = (output, context) => {
|
|
|
15649
15686
|
NullTextList: output.NullTextList != null ? deserializeAws_json1_1NullValueFields(output.NullTextList, context) : undefined,
|
|
15650
15687
|
};
|
|
15651
15688
|
};
|
|
15689
|
+
const deserializeAws_json1_1DynamicTransform = (output, context) => {
|
|
15690
|
+
return {
|
|
15691
|
+
FunctionName: __expectString(output.FunctionName),
|
|
15692
|
+
Inputs: output.Inputs != null ? deserializeAws_json1_1OneInput(output.Inputs, context) : undefined,
|
|
15693
|
+
Name: __expectString(output.Name),
|
|
15694
|
+
Parameters: output.Parameters != null
|
|
15695
|
+
? deserializeAws_json1_1TransformConfigParameterList(output.Parameters, context)
|
|
15696
|
+
: undefined,
|
|
15697
|
+
Path: __expectString(output.Path),
|
|
15698
|
+
TransformName: __expectString(output.TransformName),
|
|
15699
|
+
Version: __expectString(output.Version),
|
|
15700
|
+
};
|
|
15701
|
+
};
|
|
15652
15702
|
const deserializeAws_json1_1DynamoDBCatalogSource = (output, context) => {
|
|
15653
15703
|
return {
|
|
15654
15704
|
Database: __expectString(output.Database),
|
|
@@ -18481,6 +18531,28 @@ const deserializeAws_json1_1TaskRunProperties = (output, context) => {
|
|
|
18481
18531
|
TaskType: __expectString(output.TaskType),
|
|
18482
18532
|
};
|
|
18483
18533
|
};
|
|
18534
|
+
const deserializeAws_json1_1TransformConfigParameter = (output, context) => {
|
|
18535
|
+
return {
|
|
18536
|
+
IsOptional: __expectBoolean(output.IsOptional),
|
|
18537
|
+
ListType: __expectString(output.ListType),
|
|
18538
|
+
Name: __expectString(output.Name),
|
|
18539
|
+
Type: __expectString(output.Type),
|
|
18540
|
+
ValidationMessage: __expectString(output.ValidationMessage),
|
|
18541
|
+
ValidationRule: __expectString(output.ValidationRule),
|
|
18542
|
+
Value: output.Value != null ? deserializeAws_json1_1EnclosedInStringProperties(output.Value, context) : undefined,
|
|
18543
|
+
};
|
|
18544
|
+
};
|
|
18545
|
+
const deserializeAws_json1_1TransformConfigParameterList = (output, context) => {
|
|
18546
|
+
const retVal = (output || [])
|
|
18547
|
+
.filter((e) => e != null)
|
|
18548
|
+
.map((entry) => {
|
|
18549
|
+
if (entry === null) {
|
|
18550
|
+
return null;
|
|
18551
|
+
}
|
|
18552
|
+
return deserializeAws_json1_1TransformConfigParameter(entry, context);
|
|
18553
|
+
});
|
|
18554
|
+
return retVal;
|
|
18555
|
+
};
|
|
18484
18556
|
const deserializeAws_json1_1TransformEncryption = (output, context) => {
|
|
18485
18557
|
return {
|
|
18486
18558
|
MlUserDataEncryption: output.MlUserDataEncryption != null
|
package/dist-types/Glue.d.ts
CHANGED
|
@@ -345,8 +345,7 @@ export declare class Glue extends GlueClient {
|
|
|
345
345
|
createCrawler(args: CreateCrawlerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCrawlerCommandOutput) => void): void;
|
|
346
346
|
/**
|
|
347
347
|
* <p>Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data.</p>
|
|
348
|
-
*
|
|
349
|
-
* <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>
|
|
348
|
+
* <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>
|
|
350
349
|
*/
|
|
351
350
|
createCustomEntityType(args: CreateCustomEntityTypeCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomEntityTypeCommandOutput>;
|
|
352
351
|
createCustomEntityType(args: CreateCustomEntityTypeCommandInput, cb: (err: any, data?: CreateCustomEntityTypeCommandOutput) => void): void;
|
|
@@ -372,12 +371,10 @@ export declare class Glue extends GlueClient {
|
|
|
372
371
|
/**
|
|
373
372
|
* <p>Creates an Glue machine learning transform. This operation creates the transform and
|
|
374
373
|
* all the necessary parameters to train it.</p>
|
|
375
|
-
*
|
|
376
|
-
* <p>Call this operation as the first step in the process of using a machine learning transform
|
|
374
|
+
* <p>Call this operation as the first step in the process of using a machine learning transform
|
|
377
375
|
* (such as the <code>FindMatches</code> transform) for deduplicating data. You can provide an
|
|
378
376
|
* optional <code>Description</code>, in addition to the parameters that you want to use for your
|
|
379
377
|
* algorithm.</p>
|
|
380
|
-
*
|
|
381
378
|
* <p>You must also specify certain parameters for the tasks that Glue runs on your
|
|
382
379
|
* behalf as part of learning from your data and creating a high-quality machine learning
|
|
383
380
|
* transform. These parameters include <code>Role</code>, and optionally,
|
|
@@ -469,16 +466,14 @@ export declare class Glue extends GlueClient {
|
|
|
469
466
|
deleteClassifier(args: DeleteClassifierCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClassifierCommandOutput) => void): void;
|
|
470
467
|
/**
|
|
471
468
|
* <p>Delete the partition column statistics of a column.</p>
|
|
472
|
-
*
|
|
473
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeletePartition</code>.</p>
|
|
469
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeletePartition</code>.</p>
|
|
474
470
|
*/
|
|
475
471
|
deleteColumnStatisticsForPartition(args: DeleteColumnStatisticsForPartitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteColumnStatisticsForPartitionCommandOutput>;
|
|
476
472
|
deleteColumnStatisticsForPartition(args: DeleteColumnStatisticsForPartitionCommandInput, cb: (err: any, data?: DeleteColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
477
473
|
deleteColumnStatisticsForPartition(args: DeleteColumnStatisticsForPartitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
478
474
|
/**
|
|
479
475
|
* <p>Retrieves table statistics of columns.</p>
|
|
480
|
-
*
|
|
481
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeleteTable</code>.</p>
|
|
476
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>DeleteTable</code>.</p>
|
|
482
477
|
*/
|
|
483
478
|
deleteColumnStatisticsForTable(args: DeleteColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteColumnStatisticsForTableCommandOutput>;
|
|
484
479
|
deleteColumnStatisticsForTable(args: DeleteColumnStatisticsForTableCommandInput, cb: (err: any, data?: DeleteColumnStatisticsForTableCommandOutput) => void): void;
|
|
@@ -674,15 +669,13 @@ export declare class Glue extends GlueClient {
|
|
|
674
669
|
getClassifiers(args: GetClassifiersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClassifiersCommandOutput) => void): void;
|
|
675
670
|
/**
|
|
676
671
|
* <p>Retrieves partition statistics of columns.</p>
|
|
677
|
-
*
|
|
678
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetPartition</code>.</p>
|
|
672
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetPartition</code>.</p>
|
|
679
673
|
*/
|
|
680
674
|
getColumnStatisticsForPartition(args: GetColumnStatisticsForPartitionCommandInput, options?: __HttpHandlerOptions): Promise<GetColumnStatisticsForPartitionCommandOutput>;
|
|
681
675
|
getColumnStatisticsForPartition(args: GetColumnStatisticsForPartitionCommandInput, cb: (err: any, data?: GetColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
682
676
|
getColumnStatisticsForPartition(args: GetColumnStatisticsForPartitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
683
677
|
/**
|
|
684
678
|
* <p>Retrieves table statistics of columns.</p>
|
|
685
|
-
*
|
|
686
679
|
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>GetTable</code>.</p>
|
|
687
680
|
*/
|
|
688
681
|
getColumnStatisticsForTable(args: GetColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<GetColumnStatisticsForTableCommandOutput>;
|
|
@@ -779,10 +772,8 @@ export declare class Glue extends GlueClient {
|
|
|
779
772
|
getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
780
773
|
/**
|
|
781
774
|
* <p>Returns information on a job bookmark entry.</p>
|
|
782
|
-
*
|
|
783
|
-
*
|
|
784
|
-
*
|
|
785
|
-
* <ul>
|
|
775
|
+
* <p>For more information about enabling and using job bookmarks, see:</p>
|
|
776
|
+
* <ul>
|
|
786
777
|
* <li>
|
|
787
778
|
* <p>
|
|
788
779
|
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
|
|
@@ -843,8 +834,7 @@ export declare class Glue extends GlueClient {
|
|
|
843
834
|
* workflows. You can get a sortable, filterable list of machine learning task runs by calling
|
|
844
835
|
* <code>GetMLTaskRuns</code> with their parent transform's <code>TransformID</code> and other
|
|
845
836
|
* optional parameters as documented in this section.</p>
|
|
846
|
-
*
|
|
847
|
-
* <p>This operation returns a list of historic runs and must be paginated.</p>
|
|
837
|
+
* <p>This operation returns a list of historic runs and must be paginated.</p>
|
|
848
838
|
*/
|
|
849
839
|
getMLTaskRuns(args: GetMLTaskRunsCommandInput, options?: __HttpHandlerOptions): Promise<GetMLTaskRunsCommandOutput>;
|
|
850
840
|
getMLTaskRuns(args: GetMLTaskRunsCommandInput, cb: (err: any, data?: GetMLTaskRunsCommandOutput) => void): void;
|
|
@@ -1071,7 +1061,6 @@ export declare class Glue extends GlueClient {
|
|
|
1071
1061
|
* <p>Retrieves the names of all crawler resources in this Amazon Web Services account, or the
|
|
1072
1062
|
* resources with the specified tag. This operation allows you to see which
|
|
1073
1063
|
* resources are available in your account, and their names.</p>
|
|
1074
|
-
*
|
|
1075
1064
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1076
1065
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1077
1066
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -1081,9 +1070,8 @@ export declare class Glue extends GlueClient {
|
|
|
1081
1070
|
listCrawlers(args: ListCrawlersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrawlersCommandOutput) => void): void;
|
|
1082
1071
|
/**
|
|
1083
1072
|
* <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>
|
|
1084
|
-
*
|
|
1085
|
-
*
|
|
1086
|
-
* <ul>
|
|
1073
|
+
* <p>You may use this API to:</p>
|
|
1074
|
+
* <ul>
|
|
1087
1075
|
* <li>
|
|
1088
1076
|
* <p>Retrive all the crawls of a specified crawler.</p>
|
|
1089
1077
|
* </li>
|
|
@@ -1111,7 +1099,6 @@ export declare class Glue extends GlueClient {
|
|
|
1111
1099
|
* <p>Retrieves the names of all <code>DevEndpoint</code> resources in this Amazon Web Services account, or the
|
|
1112
1100
|
* resources with the specified tag. This operation allows you to see which resources are
|
|
1113
1101
|
* available in your account, and their names.</p>
|
|
1114
|
-
*
|
|
1115
1102
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1116
1103
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1117
1104
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -1121,8 +1108,7 @@ export declare class Glue extends GlueClient {
|
|
|
1121
1108
|
listDevEndpoints(args: ListDevEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevEndpointsCommandOutput) => void): void;
|
|
1122
1109
|
/**
|
|
1123
1110
|
* <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>
|
|
1124
|
-
*
|
|
1125
|
-
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1111
|
+
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1126
1112
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1127
1113
|
* filtering, only resources with the tag are retrieved.</p>
|
|
1128
1114
|
*/
|
|
@@ -1172,7 +1158,6 @@ export declare class Glue extends GlueClient {
|
|
|
1172
1158
|
listStatements(args: ListStatementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStatementsCommandOutput) => void): void;
|
|
1173
1159
|
/**
|
|
1174
1160
|
* <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>
|
|
1175
|
-
*
|
|
1176
1161
|
* <p>This operation takes the optional <code>Tags</code> field, which you can use as a filter on
|
|
1177
1162
|
* the response so that tagged resources can be retrieved as a group. If you choose to use tags
|
|
1178
1163
|
* filtering, only resources with the tag are retrieved.</p>
|
|
@@ -1220,7 +1205,7 @@ export declare class Glue extends GlueClient {
|
|
|
1220
1205
|
/**
|
|
1221
1206
|
* <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>
|
|
1222
1207
|
* <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>
|
|
1223
|
-
*
|
|
1208
|
+
* <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>
|
|
1224
1209
|
*/
|
|
1225
1210
|
registerSchemaVersion(args: RegisterSchemaVersionCommandInput, options?: __HttpHandlerOptions): Promise<RegisterSchemaVersionCommandOutput>;
|
|
1226
1211
|
registerSchemaVersion(args: RegisterSchemaVersionCommandInput, cb: (err: any, data?: RegisterSchemaVersionCommandOutput) => void): void;
|
|
@@ -1233,10 +1218,8 @@ export declare class Glue extends GlueClient {
|
|
|
1233
1218
|
removeSchemaVersionMetadata(args: RemoveSchemaVersionMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveSchemaVersionMetadataCommandOutput) => void): void;
|
|
1234
1219
|
/**
|
|
1235
1220
|
* <p>Resets a bookmark entry.</p>
|
|
1236
|
-
*
|
|
1237
|
-
*
|
|
1238
|
-
*
|
|
1239
|
-
* <ul>
|
|
1221
|
+
* <p>For more information about enabling and using job bookmarks, see:</p>
|
|
1222
|
+
* <ul>
|
|
1240
1223
|
* <li>
|
|
1241
1224
|
* <p>
|
|
1242
1225
|
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
|
|
@@ -1318,7 +1301,6 @@ export declare class Glue extends GlueClient {
|
|
|
1318
1301
|
* part of the active learning workflow that starts with the
|
|
1319
1302
|
* <code>StartMLLabelingSetGenerationTaskRun</code> call and that ultimately results in
|
|
1320
1303
|
* improving the quality of your machine learning transform. </p>
|
|
1321
|
-
*
|
|
1322
1304
|
* <p>After the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue machine learning
|
|
1323
1305
|
* will have generated a series of questions for humans to answer. (Answering these questions is
|
|
1324
1306
|
* often called 'labeling' in the machine learning workflows). In the case of the
|
|
@@ -1328,14 +1310,12 @@ export declare class Glue extends GlueClient {
|
|
|
1328
1310
|
* <code>StartImportLabelsTaskRun</code>. After <code>StartImportLabelsTaskRun</code> finishes,
|
|
1329
1311
|
* all future runs of the machine learning transform use the new and improved labels and perform
|
|
1330
1312
|
* a higher-quality transformation.</p>
|
|
1331
|
-
*
|
|
1332
1313
|
* <p>By default, <code>StartMLLabelingSetGenerationTaskRun</code> continually learns from and
|
|
1333
1314
|
* combines all labels that you upload unless you set <code>Replace</code> to true. If you set
|
|
1334
1315
|
* <code>Replace</code> to true, <code>StartImportLabelsTaskRun</code> deletes and forgets all
|
|
1335
1316
|
* previously uploaded labels and learns only from the exact set that you upload. Replacing
|
|
1336
1317
|
* labels can be helpful if you realize that you previously uploaded incorrect labels, and you
|
|
1337
1318
|
* believe that they are having a negative effect on your transform quality.</p>
|
|
1338
|
-
*
|
|
1339
1319
|
* <p>You can check on the status of your task run by calling the <code>GetMLTaskRun</code>
|
|
1340
1320
|
* operation. </p>
|
|
1341
1321
|
*/
|
|
@@ -1350,12 +1330,10 @@ export declare class Glue extends GlueClient {
|
|
|
1350
1330
|
startJobRun(args: StartJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
1351
1331
|
/**
|
|
1352
1332
|
* <p>Starts a task to estimate the quality of the transform. </p>
|
|
1353
|
-
*
|
|
1354
|
-
* <p>When you provide label sets as examples of truth, Glue machine learning uses some of
|
|
1333
|
+
* <p>When you provide label sets as examples of truth, Glue machine learning uses some of
|
|
1355
1334
|
* those examples to learn from them. The rest of the labels are used as a test to estimate
|
|
1356
1335
|
* quality.</p>
|
|
1357
|
-
*
|
|
1358
|
-
* <p>Returns a unique identifier for the run. You can call <code>GetMLTaskRun</code> to get more
|
|
1336
|
+
* <p>Returns a unique identifier for the run. You can call <code>GetMLTaskRun</code> to get more
|
|
1359
1337
|
* information about the stats of the <code>EvaluationTaskRun</code>.</p>
|
|
1360
1338
|
*/
|
|
1361
1339
|
startMLEvaluationTaskRun(args: StartMLEvaluationTaskRunCommandInput, options?: __HttpHandlerOptions): Promise<StartMLEvaluationTaskRunCommandOutput>;
|
|
@@ -1364,14 +1342,11 @@ export declare class Glue extends GlueClient {
|
|
|
1364
1342
|
/**
|
|
1365
1343
|
* <p>Starts the active learning workflow for your machine learning transform to improve the
|
|
1366
1344
|
* transform's quality by generating label sets and adding labels.</p>
|
|
1367
|
-
*
|
|
1368
|
-
* <p>When the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue will have
|
|
1345
|
+
* <p>When the <code>StartMLLabelingSetGenerationTaskRun</code> finishes, Glue will have
|
|
1369
1346
|
* generated a "labeling set" or a set of questions for humans to answer.</p>
|
|
1370
|
-
*
|
|
1371
1347
|
* <p>In the case of the <code>FindMatches</code> transform, these questions are of the form,
|
|
1372
1348
|
* “What is the correct way to group these rows together into groups composed entirely of
|
|
1373
1349
|
* matching records?” </p>
|
|
1374
|
-
*
|
|
1375
1350
|
* <p>After the labeling process is finished, you can upload your labels with a call to
|
|
1376
1351
|
* <code>StartImportLabelsTaskRun</code>. After <code>StartImportLabelsTaskRun</code> finishes,
|
|
1377
1352
|
* all future runs of the machine learning transform will use the new and improved labels and
|
|
@@ -1456,7 +1431,6 @@ export declare class Glue extends GlueClient {
|
|
|
1456
1431
|
updateClassifier(args: UpdateClassifierCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClassifierCommandOutput) => void): void;
|
|
1457
1432
|
/**
|
|
1458
1433
|
* <p>Creates or updates partition statistics of columns.</p>
|
|
1459
|
-
*
|
|
1460
1434
|
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdatePartition</code>.</p>
|
|
1461
1435
|
*/
|
|
1462
1436
|
updateColumnStatisticsForPartition(args: UpdateColumnStatisticsForPartitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateColumnStatisticsForPartitionCommandOutput>;
|
|
@@ -1464,8 +1438,7 @@ export declare class Glue extends GlueClient {
|
|
|
1464
1438
|
updateColumnStatisticsForPartition(args: UpdateColumnStatisticsForPartitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateColumnStatisticsForPartitionCommandOutput) => void): void;
|
|
1465
1439
|
/**
|
|
1466
1440
|
* <p>Creates or updates table statistics of columns.</p>
|
|
1467
|
-
*
|
|
1468
|
-
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdateTable</code>.</p>
|
|
1441
|
+
* <p>The Identity and Access Management (IAM) permission required for this operation is <code>UpdateTable</code>.</p>
|
|
1469
1442
|
*/
|
|
1470
1443
|
updateColumnStatisticsForTable(args: UpdateColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<UpdateColumnStatisticsForTableCommandOutput>;
|
|
1471
1444
|
updateColumnStatisticsForTable(args: UpdateColumnStatisticsForTableCommandInput, cb: (err: any, data?: UpdateColumnStatisticsForTableCommandOutput) => void): void;
|
|
@@ -1510,15 +1483,13 @@ export declare class Glue extends GlueClient {
|
|
|
1510
1483
|
updateJob(args: UpdateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobCommandOutput) => void): void;
|
|
1511
1484
|
/**
|
|
1512
1485
|
* <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>
|
|
1513
|
-
*
|
|
1514
|
-
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1486
|
+
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1515
1487
|
*/
|
|
1516
1488
|
updateJobFromSourceControl(args: UpdateJobFromSourceControlCommandInput, options?: __HttpHandlerOptions): Promise<UpdateJobFromSourceControlCommandOutput>;
|
|
1517
1489
|
updateJobFromSourceControl(args: UpdateJobFromSourceControlCommandInput, cb: (err: any, data?: UpdateJobFromSourceControlCommandOutput) => void): void;
|
|
1518
1490
|
updateJobFromSourceControl(args: UpdateJobFromSourceControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobFromSourceControlCommandOutput) => void): void;
|
|
1519
1491
|
/**
|
|
1520
1492
|
* <p>Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.</p>
|
|
1521
|
-
*
|
|
1522
1493
|
* <p>After calling this operation, you can call the <code>StartMLEvaluationTaskRun</code>
|
|
1523
1494
|
* operation to assess how well your new parameters achieved your goals (such as improving the
|
|
1524
1495
|
* quality of your machine learning transform, or making it more cost-effective).</p>
|
|
@@ -1540,17 +1511,16 @@ export declare class Glue extends GlueClient {
|
|
|
1540
1511
|
updateRegistry(args: UpdateRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRegistryCommandOutput) => void): void;
|
|
1541
1512
|
/**
|
|
1542
1513
|
* <p>Updates the description, compatibility setting, or version checkpoint for a schema set.</p>
|
|
1543
|
-
*
|
|
1514
|
+
* <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>
|
|
1544
1515
|
* <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>
|
|
1545
|
-
*
|
|
1516
|
+
* <p>This update will happen only if the schema is in the AVAILABLE state.</p>
|
|
1546
1517
|
*/
|
|
1547
1518
|
updateSchema(args: UpdateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSchemaCommandOutput>;
|
|
1548
1519
|
updateSchema(args: UpdateSchemaCommandInput, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
|
|
1549
1520
|
updateSchema(args: UpdateSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
|
|
1550
1521
|
/**
|
|
1551
1522
|
* <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>
|
|
1552
|
-
*
|
|
1553
|
-
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1523
|
+
* <p>This API supports optional parameters which take in the repository information.</p>
|
|
1554
1524
|
*/
|
|
1555
1525
|
updateSourceControlFromJob(args: UpdateSourceControlFromJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSourceControlFromJobCommandOutput>;
|
|
1556
1526
|
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
|
|
@@ -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,
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
5
|
-
import { CreateUserDefinedFunctionRequest, CreateUserDefinedFunctionResponse } from "../models/
|
|
5
|
+
import { CreateUserDefinedFunctionRequest, CreateUserDefinedFunctionResponse } from "../models/models_1";
|
|
6
6
|
export interface CreateUserDefinedFunctionCommandInput extends CreateUserDefinedFunctionRequest {
|
|
7
7
|
}
|
|
8
8
|
export interface CreateUserDefinedFunctionCommandOutput extends CreateUserDefinedFunctionResponse, __MetadataBearer {
|
|
@@ -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>
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
5
|
-
import { PutSchemaVersionMetadataInput, PutSchemaVersionMetadataResponse } from "../models/
|
|
5
|
+
import { PutSchemaVersionMetadataInput, PutSchemaVersionMetadataResponse } from "../models/models_2";
|
|
6
6
|
export interface PutSchemaVersionMetadataCommandInput extends PutSchemaVersionMetadataInput {
|
|
7
7
|
}
|
|
8
8
|
export interface PutSchemaVersionMetadataCommandOutput extends PutSchemaVersionMetadataResponse, __MetadataBearer {
|
|
@@ -2,8 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
5
|
-
import { PutWorkflowRunPropertiesRequest } from "../models/
|
|
6
|
-
import { PutWorkflowRunPropertiesResponse } from "../models/models_2";
|
|
5
|
+
import { PutWorkflowRunPropertiesRequest, PutWorkflowRunPropertiesResponse } from "../models/models_2";
|
|
7
6
|
export interface PutWorkflowRunPropertiesCommandInput extends PutWorkflowRunPropertiesRequest {
|
|
8
7
|
}
|
|
9
8
|
export interface PutWorkflowRunPropertiesCommandOutput extends PutWorkflowRunPropertiesResponse, __MetadataBearer {
|
|
@@ -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.
|