@aws-sdk/client-glue 3.100.0 → 3.105.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/CHANGELOG.md +11 -0
- package/dist-cjs/GlueClient.js +2 -0
- package/dist-es/GlueClient.js +2 -0
- package/dist-types/models/models_0.d.ts +36 -108
- package/dist-types/models/models_1.d.ts +15 -45
- package/dist-types/models/models_2.d.ts +15 -45
- package/dist-types/ts3.4/models/models_0.d.ts +19 -57
- package/dist-types/ts3.4/models/models_1.d.ts +15 -45
- package/dist-types/ts3.4/models/models_2.d.ts +3 -9
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-glue
|
package/dist-cjs/GlueClient.js
CHANGED
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class GlueClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
package/dist-es/GlueClient.js
CHANGED
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var GlueClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -46,9 +46,7 @@ export interface Action {
|
|
|
46
46
|
* <p>For information about how to specify and consume your own Job arguments, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html">Calling Glue APIs in Python</a> topic in the developer guide.</p>
|
|
47
47
|
* <p>For information about the key-value pairs that Glue consumes to set up your job, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Special Parameters Used by Glue</a> topic in the developer guide.</p>
|
|
48
48
|
*/
|
|
49
|
-
Arguments?:
|
|
50
|
-
[key: string]: string;
|
|
51
|
-
};
|
|
49
|
+
Arguments?: Record<string, string>;
|
|
52
50
|
/**
|
|
53
51
|
* <p>The <code>JobRun</code> timeout in minutes. This is the maximum time that a job run can
|
|
54
52
|
* consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default
|
|
@@ -270,9 +268,7 @@ export interface Column {
|
|
|
270
268
|
/**
|
|
271
269
|
* <p>These key-value pairs define properties associated with the column.</p>
|
|
272
270
|
*/
|
|
273
|
-
Parameters?:
|
|
274
|
-
[key: string]: string;
|
|
275
|
-
};
|
|
271
|
+
Parameters?: Record<string, string>;
|
|
276
272
|
}
|
|
277
273
|
export declare namespace Column {
|
|
278
274
|
/**
|
|
@@ -343,9 +339,7 @@ export interface SerDeInfo {
|
|
|
343
339
|
/**
|
|
344
340
|
* <p>These key-value pairs define initialization parameters for the SerDe.</p>
|
|
345
341
|
*/
|
|
346
|
-
Parameters?:
|
|
347
|
-
[key: string]: string;
|
|
348
|
-
};
|
|
342
|
+
Parameters?: Record<string, string>;
|
|
349
343
|
}
|
|
350
344
|
export declare namespace SerDeInfo {
|
|
351
345
|
/**
|
|
@@ -370,9 +364,7 @@ export interface SkewedInfo {
|
|
|
370
364
|
/**
|
|
371
365
|
* <p>A mapping of skewed values to the columns that contain them.</p>
|
|
372
366
|
*/
|
|
373
|
-
SkewedColumnValueLocationMaps?:
|
|
374
|
-
[key: string]: string;
|
|
375
|
-
};
|
|
367
|
+
SkewedColumnValueLocationMaps?: Record<string, string>;
|
|
376
368
|
}
|
|
377
369
|
export declare namespace SkewedInfo {
|
|
378
370
|
/**
|
|
@@ -451,9 +443,7 @@ export interface StorageDescriptor {
|
|
|
451
443
|
/**
|
|
452
444
|
* <p>The user-supplied properties in key-value form.</p>
|
|
453
445
|
*/
|
|
454
|
-
Parameters?:
|
|
455
|
-
[key: string]: string;
|
|
456
|
-
};
|
|
446
|
+
Parameters?: Record<string, string>;
|
|
457
447
|
/**
|
|
458
448
|
* <p>The information about values that appear frequently in a column (skewed values).</p>
|
|
459
449
|
*/
|
|
@@ -499,9 +489,7 @@ export interface PartitionInput {
|
|
|
499
489
|
/**
|
|
500
490
|
* <p>These key-value pairs define partition parameters.</p>
|
|
501
491
|
*/
|
|
502
|
-
Parameters?:
|
|
503
|
-
[key: string]: string;
|
|
504
|
-
};
|
|
492
|
+
Parameters?: Record<string, string>;
|
|
505
493
|
/**
|
|
506
494
|
* <p>The last time at which column statistics were computed for this partition.</p>
|
|
507
495
|
*/
|
|
@@ -707,9 +695,7 @@ export interface BatchDeleteConnectionResponse {
|
|
|
707
695
|
* <p>A map of the names of connections that were not successfully
|
|
708
696
|
* deleted to error details.</p>
|
|
709
697
|
*/
|
|
710
|
-
Errors?:
|
|
711
|
-
[key: string]: ErrorDetail;
|
|
712
|
-
};
|
|
698
|
+
Errors?: Record<string, ErrorDetail>;
|
|
713
699
|
}
|
|
714
700
|
export declare namespace BatchDeleteConnectionResponse {
|
|
715
701
|
/**
|
|
@@ -1771,9 +1757,7 @@ export interface DevEndpoint {
|
|
|
1771
1757
|
*
|
|
1772
1758
|
* <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
|
|
1773
1759
|
*/
|
|
1774
|
-
Arguments?:
|
|
1775
|
-
[key: string]: string;
|
|
1776
|
-
};
|
|
1760
|
+
Arguments?: Record<string, string>;
|
|
1777
1761
|
}
|
|
1778
1762
|
export declare namespace DevEndpoint {
|
|
1779
1763
|
/**
|
|
@@ -2683,9 +2667,7 @@ export interface JDBCConnectorOptions {
|
|
|
2683
2667
|
/**
|
|
2684
2668
|
* <p>Custom data type mapping that builds a mapping from a JDBC data type to an Glue data type. For example, the option <code>"dataTypeMapping":{"FLOAT":"STRING"}</code> maps data fields of JDBC type <code>FLOAT</code> into the Java <code>String</code> type by calling the <code>ResultSet.getString()</code> method of the driver, and uses it to build the Glue record. The <code>ResultSet</code> object is implemented by each driver, so the behavior is specific to the driver you use. Refer to the documentation for your JDBC driver to understand how the driver performs the conversions.</p>
|
|
2685
2669
|
*/
|
|
2686
|
-
DataTypeMapping?:
|
|
2687
|
-
[key: string]: GlueRecordType | string;
|
|
2688
|
-
};
|
|
2670
|
+
DataTypeMapping?: Record<string, GlueRecordType | string>;
|
|
2689
2671
|
}
|
|
2690
2672
|
export declare namespace JDBCConnectorOptions {
|
|
2691
2673
|
/**
|
|
@@ -2767,9 +2749,7 @@ export interface JDBCConnectorTarget {
|
|
|
2767
2749
|
/**
|
|
2768
2750
|
* <p>Additional connection options for the connector.</p>
|
|
2769
2751
|
*/
|
|
2770
|
-
AdditionalOptions?:
|
|
2771
|
-
[key: string]: string;
|
|
2772
|
-
};
|
|
2752
|
+
AdditionalOptions?: Record<string, string>;
|
|
2773
2753
|
/**
|
|
2774
2754
|
* <p>Specifies the data schema for the JDBC target.</p>
|
|
2775
2755
|
*/
|
|
@@ -3759,9 +3739,7 @@ export interface SparkConnectorSource {
|
|
|
3759
3739
|
/**
|
|
3760
3740
|
* <p>Additional connection options for the connector.</p>
|
|
3761
3741
|
*/
|
|
3762
|
-
AdditionalOptions?:
|
|
3763
|
-
[key: string]: string;
|
|
3764
|
-
};
|
|
3742
|
+
AdditionalOptions?: Record<string, string>;
|
|
3765
3743
|
/**
|
|
3766
3744
|
* <p>Specifies data schema for the custom spark source.</p>
|
|
3767
3745
|
*/
|
|
@@ -3800,9 +3778,7 @@ export interface SparkConnectorTarget {
|
|
|
3800
3778
|
/**
|
|
3801
3779
|
* <p>Additional connection options for the connector.</p>
|
|
3802
3780
|
*/
|
|
3803
|
-
AdditionalOptions?:
|
|
3804
|
-
[key: string]: string;
|
|
3805
|
-
};
|
|
3781
|
+
AdditionalOptions?: Record<string, string>;
|
|
3806
3782
|
/**
|
|
3807
3783
|
* <p>Specifies the data schema for the custom spark target.</p>
|
|
3808
3784
|
*/
|
|
@@ -4071,9 +4047,7 @@ export interface Partition {
|
|
|
4071
4047
|
/**
|
|
4072
4048
|
* <p>These key-value pairs define partition parameters.</p>
|
|
4073
4049
|
*/
|
|
4074
|
-
Parameters?:
|
|
4075
|
-
[key: string]: string;
|
|
4076
|
-
};
|
|
4050
|
+
Parameters?: Record<string, string>;
|
|
4077
4051
|
/**
|
|
4078
4052
|
* <p>The last time at which column statistics were computed for this
|
|
4079
4053
|
* partition.</p>
|
|
@@ -4489,9 +4463,7 @@ export interface JobRun {
|
|
|
4489
4463
|
* <p>For information about how to specify and consume your own job arguments, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html">Calling Glue APIs in Python</a> topic in the developer guide.</p>
|
|
4490
4464
|
* <p>For information about the key-value pairs that Glue consumes to set up your job, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Special Parameters Used by Glue</a> topic in the developer guide.</p>
|
|
4491
4465
|
*/
|
|
4492
|
-
Arguments?:
|
|
4493
|
-
[key: string]: string;
|
|
4494
|
-
};
|
|
4466
|
+
Arguments?: Record<string, string>;
|
|
4495
4467
|
/**
|
|
4496
4468
|
* <p>An error message associated with this job run.</p>
|
|
4497
4469
|
*/
|
|
@@ -4773,9 +4745,7 @@ export interface WorkflowRun {
|
|
|
4773
4745
|
/**
|
|
4774
4746
|
* <p>The workflow run properties which were set during the run.</p>
|
|
4775
4747
|
*/
|
|
4776
|
-
WorkflowRunProperties?:
|
|
4777
|
-
[key: string]: string;
|
|
4778
|
-
};
|
|
4748
|
+
WorkflowRunProperties?: Record<string, string>;
|
|
4779
4749
|
/**
|
|
4780
4750
|
* <p>The date and time when the workflow run was started.</p>
|
|
4781
4751
|
*/
|
|
@@ -4831,9 +4801,7 @@ export interface Workflow {
|
|
|
4831
4801
|
* The run properties are made available to each job in the workflow. A job can modify
|
|
4832
4802
|
* the properties for the next jobs in the flow.</p>
|
|
4833
4803
|
*/
|
|
4834
|
-
DefaultRunProperties?:
|
|
4835
|
-
[key: string]: string;
|
|
4836
|
-
};
|
|
4804
|
+
DefaultRunProperties?: Record<string, string>;
|
|
4837
4805
|
/**
|
|
4838
4806
|
* <p>The date and time when the workflow was created.</p>
|
|
4839
4807
|
*/
|
|
@@ -5177,9 +5145,7 @@ export interface CreateBlueprintRequest {
|
|
|
5177
5145
|
/**
|
|
5178
5146
|
* <p>The tags to be applied to this blueprint.</p>
|
|
5179
5147
|
*/
|
|
5180
|
-
Tags?:
|
|
5181
|
-
[key: string]: string;
|
|
5182
|
-
};
|
|
5148
|
+
Tags?: Record<string, string>;
|
|
5183
5149
|
}
|
|
5184
5150
|
export declare namespace CreateBlueprintRequest {
|
|
5185
5151
|
/**
|
|
@@ -5471,9 +5437,7 @@ export interface ConnectionInput {
|
|
|
5471
5437
|
/**
|
|
5472
5438
|
* <p>These key-value pairs define parameters for the connection.</p>
|
|
5473
5439
|
*/
|
|
5474
|
-
ConnectionProperties:
|
|
5475
|
-
[key: string]: string;
|
|
5476
|
-
} | undefined;
|
|
5440
|
+
ConnectionProperties: Record<string, string> | undefined;
|
|
5477
5441
|
/**
|
|
5478
5442
|
* <p>A map of physical connection requirements, such as virtual private cloud (VPC) and
|
|
5479
5443
|
* <code>SecurityGroup</code>, that are needed to successfully make this connection.</p>
|
|
@@ -5500,9 +5464,7 @@ export interface CreateConnectionRequest {
|
|
|
5500
5464
|
/**
|
|
5501
5465
|
* <p>The tags you assign to the connection.</p>
|
|
5502
5466
|
*/
|
|
5503
|
-
Tags?:
|
|
5504
|
-
[key: string]: string;
|
|
5505
|
-
};
|
|
5467
|
+
Tags?: Record<string, string>;
|
|
5506
5468
|
}
|
|
5507
5469
|
export declare namespace CreateConnectionRequest {
|
|
5508
5470
|
/**
|
|
@@ -5589,9 +5551,7 @@ export interface CreateCrawlerRequest {
|
|
|
5589
5551
|
* crawler. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer
|
|
5590
5552
|
* guide.</p>
|
|
5591
5553
|
*/
|
|
5592
|
-
Tags?:
|
|
5593
|
-
[key: string]: string;
|
|
5594
|
-
};
|
|
5554
|
+
Tags?: Record<string, string>;
|
|
5595
5555
|
}
|
|
5596
5556
|
export declare namespace CreateCrawlerRequest {
|
|
5597
5557
|
/**
|
|
@@ -5757,9 +5717,7 @@ export interface DatabaseInput {
|
|
|
5757
5717
|
* of the database.</p>
|
|
5758
5718
|
* <p>These key-value pairs define parameters and properties of the database.</p>
|
|
5759
5719
|
*/
|
|
5760
|
-
Parameters?:
|
|
5761
|
-
[key: string]: string;
|
|
5762
|
-
};
|
|
5720
|
+
Parameters?: Record<string, string>;
|
|
5763
5721
|
/**
|
|
5764
5722
|
* <p>Creates a set of default permissions on the table for principals. </p>
|
|
5765
5723
|
*/
|
|
@@ -5899,15 +5857,11 @@ export interface CreateDevEndpointRequest {
|
|
|
5899
5857
|
/**
|
|
5900
5858
|
* <p>The tags to use with this DevEndpoint. You may use tags to limit access to the DevEndpoint. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide.</p>
|
|
5901
5859
|
*/
|
|
5902
|
-
Tags?:
|
|
5903
|
-
[key: string]: string;
|
|
5904
|
-
};
|
|
5860
|
+
Tags?: Record<string, string>;
|
|
5905
5861
|
/**
|
|
5906
5862
|
* <p>A map of arguments used to configure the <code>DevEndpoint</code>.</p>
|
|
5907
5863
|
*/
|
|
5908
|
-
Arguments?:
|
|
5909
|
-
[key: string]: string;
|
|
5910
|
-
};
|
|
5864
|
+
Arguments?: Record<string, string>;
|
|
5911
5865
|
}
|
|
5912
5866
|
export declare namespace CreateDevEndpointRequest {
|
|
5913
5867
|
/**
|
|
@@ -6008,9 +5962,7 @@ export interface CreateDevEndpointResponse {
|
|
|
6008
5962
|
*
|
|
6009
5963
|
* <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
|
|
6010
5964
|
*/
|
|
6011
|
-
Arguments?:
|
|
6012
|
-
[key: string]: string;
|
|
6013
|
-
};
|
|
5965
|
+
Arguments?: Record<string, string>;
|
|
6014
5966
|
}
|
|
6015
5967
|
export declare namespace CreateDevEndpointResponse {
|
|
6016
5968
|
/**
|
|
@@ -6310,9 +6262,7 @@ export interface CreateMLTransformRequest {
|
|
|
6310
6262
|
/**
|
|
6311
6263
|
* <p>The tags to use with this machine learning transform. You may use tags to limit access to the machine learning transform. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide.</p>
|
|
6312
6264
|
*/
|
|
6313
|
-
Tags?:
|
|
6314
|
-
[key: string]: string;
|
|
6315
|
-
};
|
|
6265
|
+
Tags?: Record<string, string>;
|
|
6316
6266
|
/**
|
|
6317
6267
|
* <p>The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.</p>
|
|
6318
6268
|
*/
|
|
@@ -6433,9 +6383,7 @@ export interface CreateRegistryInput {
|
|
|
6433
6383
|
/**
|
|
6434
6384
|
* <p>Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API.</p>
|
|
6435
6385
|
*/
|
|
6436
|
-
Tags?:
|
|
6437
|
-
[key: string]: string;
|
|
6438
|
-
};
|
|
6386
|
+
Tags?: Record<string, string>;
|
|
6439
6387
|
}
|
|
6440
6388
|
export declare namespace CreateRegistryInput {
|
|
6441
6389
|
/**
|
|
@@ -6459,9 +6407,7 @@ export interface CreateRegistryResponse {
|
|
|
6459
6407
|
/**
|
|
6460
6408
|
* <p>The tags for the registry.</p>
|
|
6461
6409
|
*/
|
|
6462
|
-
Tags?:
|
|
6463
|
-
[key: string]: string;
|
|
6464
|
-
};
|
|
6410
|
+
Tags?: Record<string, string>;
|
|
6465
6411
|
}
|
|
6466
6412
|
export declare namespace CreateRegistryResponse {
|
|
6467
6413
|
/**
|
|
@@ -6557,9 +6503,7 @@ export interface CreateSchemaInput {
|
|
|
6557
6503
|
/**
|
|
6558
6504
|
* <p>Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API. If specified, follows the Amazon Web Services tags-on-create pattern.</p>
|
|
6559
6505
|
*/
|
|
6560
|
-
Tags?:
|
|
6561
|
-
[key: string]: string;
|
|
6562
|
-
};
|
|
6506
|
+
Tags?: Record<string, string>;
|
|
6563
6507
|
/**
|
|
6564
6508
|
* <p>The schema definition using the <code>DataFormat</code> setting for <code>SchemaName</code>.</p>
|
|
6565
6509
|
*/
|
|
@@ -6630,9 +6574,7 @@ export interface CreateSchemaResponse {
|
|
|
6630
6574
|
/**
|
|
6631
6575
|
* <p>The tags for the schema.</p>
|
|
6632
6576
|
*/
|
|
6633
|
-
Tags?:
|
|
6634
|
-
[key: string]: string;
|
|
6635
|
-
};
|
|
6577
|
+
Tags?: Record<string, string>;
|
|
6636
6578
|
/**
|
|
6637
6579
|
* <p>The unique identifier of the first schema version.</p>
|
|
6638
6580
|
*/
|
|
@@ -6936,9 +6878,7 @@ export interface CreateSessionRequest {
|
|
|
6936
6878
|
/**
|
|
6937
6879
|
* <p>A map array of key-value pairs. Max is 75 pairs. </p>
|
|
6938
6880
|
*/
|
|
6939
|
-
DefaultArguments?:
|
|
6940
|
-
[key: string]: string;
|
|
6941
|
-
};
|
|
6881
|
+
DefaultArguments?: Record<string, string>;
|
|
6942
6882
|
/**
|
|
6943
6883
|
* <p>The number of connections to use for the session. </p>
|
|
6944
6884
|
*/
|
|
@@ -6968,9 +6908,7 @@ export interface CreateSessionRequest {
|
|
|
6968
6908
|
/**
|
|
6969
6909
|
* <p>The map of key value pairs (tags) belonging to the session.</p>
|
|
6970
6910
|
*/
|
|
6971
|
-
Tags?:
|
|
6972
|
-
[key: string]: string;
|
|
6973
|
-
};
|
|
6911
|
+
Tags?: Record<string, string>;
|
|
6974
6912
|
/**
|
|
6975
6913
|
* <p>The origin of the request. </p>
|
|
6976
6914
|
*/
|
|
@@ -7025,9 +6963,7 @@ export interface Session {
|
|
|
7025
6963
|
/**
|
|
7026
6964
|
* <p>A map array of key-value pairs. Max is 75 pairs. </p>
|
|
7027
6965
|
*/
|
|
7028
|
-
DefaultArguments?:
|
|
7029
|
-
[key: string]: string;
|
|
7030
|
-
};
|
|
6966
|
+
DefaultArguments?: Record<string, string>;
|
|
7031
6967
|
/**
|
|
7032
6968
|
* <p>The number of connections used for the session.</p>
|
|
7033
6969
|
*/
|
|
@@ -7152,9 +7088,7 @@ export interface TableInput {
|
|
|
7152
7088
|
/**
|
|
7153
7089
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
7154
7090
|
*/
|
|
7155
|
-
Parameters?:
|
|
7156
|
-
[key: string]: string;
|
|
7157
|
-
};
|
|
7091
|
+
Parameters?: Record<string, string>;
|
|
7158
7092
|
/**
|
|
7159
7093
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for resource linking.</p>
|
|
7160
7094
|
*/
|
|
@@ -7248,9 +7182,7 @@ export interface CreateTriggerRequest {
|
|
|
7248
7182
|
* For more information about tags in Glue, see
|
|
7249
7183
|
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide. </p>
|
|
7250
7184
|
*/
|
|
7251
|
-
Tags?:
|
|
7252
|
-
[key: string]: string;
|
|
7253
|
-
};
|
|
7185
|
+
Tags?: Record<string, string>;
|
|
7254
7186
|
/**
|
|
7255
7187
|
* <p>Batch condition that must be met (specified number of events received or batch time window expired)
|
|
7256
7188
|
* before EventBridge event trigger fires.</p>
|
|
@@ -7377,15 +7309,11 @@ export interface CreateWorkflowRequest {
|
|
|
7377
7309
|
/**
|
|
7378
7310
|
* <p>A collection of properties to be used as part of each execution of the workflow.</p>
|
|
7379
7311
|
*/
|
|
7380
|
-
DefaultRunProperties?:
|
|
7381
|
-
[key: string]: string;
|
|
7382
|
-
};
|
|
7312
|
+
DefaultRunProperties?: Record<string, string>;
|
|
7383
7313
|
/**
|
|
7384
7314
|
* <p>The tags to be used with this workflow.</p>
|
|
7385
7315
|
*/
|
|
7386
|
-
Tags?:
|
|
7387
|
-
[key: string]: string;
|
|
7388
|
-
};
|
|
7316
|
+
Tags?: Record<string, string>;
|
|
7389
7317
|
/**
|
|
7390
7318
|
* <p>You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.</p>
|
|
7391
7319
|
*/
|
|
@@ -1766,9 +1766,7 @@ export interface Connection {
|
|
|
1766
1766
|
* </li>
|
|
1767
1767
|
* </ul>
|
|
1768
1768
|
*/
|
|
1769
|
-
ConnectionProperties?:
|
|
1770
|
-
[key: string]: string;
|
|
1771
|
-
};
|
|
1769
|
+
ConnectionProperties?: Record<string, string>;
|
|
1772
1770
|
/**
|
|
1773
1771
|
* <p>A map of physical connection requirements, such as virtual private cloud (VPC) and
|
|
1774
1772
|
* <code>SecurityGroup</code>, that are needed to make this connection successfully.</p>
|
|
@@ -2085,9 +2083,7 @@ export interface Database {
|
|
|
2085
2083
|
* <p>These key-value pairs define parameters and properties
|
|
2086
2084
|
* of the database.</p>
|
|
2087
2085
|
*/
|
|
2088
|
-
Parameters?:
|
|
2089
|
-
[key: string]: string;
|
|
2090
|
-
};
|
|
2086
|
+
Parameters?: Record<string, string>;
|
|
2091
2087
|
/**
|
|
2092
2088
|
* <p>The time at which the metadata database was created in the catalog.</p>
|
|
2093
2089
|
*/
|
|
@@ -3929,9 +3925,7 @@ export interface GetPlanRequest {
|
|
|
3929
3925
|
* </li>
|
|
3930
3926
|
* </ul>
|
|
3931
3927
|
*/
|
|
3932
|
-
AdditionalPlanOptionsMap?:
|
|
3933
|
-
[key: string]: string;
|
|
3934
|
-
};
|
|
3928
|
+
AdditionalPlanOptionsMap?: Record<string, string>;
|
|
3935
3929
|
}
|
|
3936
3930
|
export declare namespace GetPlanRequest {
|
|
3937
3931
|
/**
|
|
@@ -4701,9 +4695,7 @@ export interface Table {
|
|
|
4701
4695
|
/**
|
|
4702
4696
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
4703
4697
|
*/
|
|
4704
|
-
Parameters?:
|
|
4705
|
-
[key: string]: string;
|
|
4706
|
-
};
|
|
4698
|
+
Parameters?: Record<string, string>;
|
|
4707
4699
|
/**
|
|
4708
4700
|
* <p>The person or entity who created the table.</p>
|
|
4709
4701
|
*/
|
|
@@ -4919,9 +4911,7 @@ export interface GetTagsResponse {
|
|
|
4919
4911
|
/**
|
|
4920
4912
|
* <p>The requested tags.</p>
|
|
4921
4913
|
*/
|
|
4922
|
-
Tags?:
|
|
4923
|
-
[key: string]: string;
|
|
4924
|
-
};
|
|
4914
|
+
Tags?: Record<string, string>;
|
|
4925
4915
|
}
|
|
4926
4916
|
export declare namespace GetTagsResponse {
|
|
4927
4917
|
/**
|
|
@@ -5329,9 +5319,7 @@ export interface GetWorkflowRunPropertiesResponse {
|
|
|
5329
5319
|
/**
|
|
5330
5320
|
* <p>The workflow run properties which were set during the specified run.</p>
|
|
5331
5321
|
*/
|
|
5332
|
-
RunProperties?:
|
|
5333
|
-
[key: string]: string;
|
|
5334
|
-
};
|
|
5322
|
+
RunProperties?: Record<string, string>;
|
|
5335
5323
|
}
|
|
5336
5324
|
export declare namespace GetWorkflowRunPropertiesResponse {
|
|
5337
5325
|
/**
|
|
@@ -5411,9 +5399,7 @@ export interface ListBlueprintsRequest {
|
|
|
5411
5399
|
/**
|
|
5412
5400
|
* <p>Filters the list by an Amazon Web Services resource tag.</p>
|
|
5413
5401
|
*/
|
|
5414
|
-
Tags?:
|
|
5415
|
-
[key: string]: string;
|
|
5416
|
-
};
|
|
5402
|
+
Tags?: Record<string, string>;
|
|
5417
5403
|
}
|
|
5418
5404
|
export declare namespace ListBlueprintsRequest {
|
|
5419
5405
|
/**
|
|
@@ -5449,9 +5435,7 @@ export interface ListCrawlersRequest {
|
|
|
5449
5435
|
/**
|
|
5450
5436
|
* <p>Specifies to return only these tagged resources.</p>
|
|
5451
5437
|
*/
|
|
5452
|
-
Tags?:
|
|
5453
|
-
[key: string]: string;
|
|
5454
|
-
};
|
|
5438
|
+
Tags?: Record<string, string>;
|
|
5455
5439
|
}
|
|
5456
5440
|
export declare namespace ListCrawlersRequest {
|
|
5457
5441
|
/**
|
|
@@ -5520,9 +5504,7 @@ export interface ListDevEndpointsRequest {
|
|
|
5520
5504
|
/**
|
|
5521
5505
|
* <p>Specifies to return only these tagged resources.</p>
|
|
5522
5506
|
*/
|
|
5523
|
-
Tags?:
|
|
5524
|
-
[key: string]: string;
|
|
5525
|
-
};
|
|
5507
|
+
Tags?: Record<string, string>;
|
|
5526
5508
|
}
|
|
5527
5509
|
export declare namespace ListDevEndpointsRequest {
|
|
5528
5510
|
/**
|
|
@@ -5560,9 +5542,7 @@ export interface ListJobsRequest {
|
|
|
5560
5542
|
/**
|
|
5561
5543
|
* <p>Specifies to return only these tagged resources.</p>
|
|
5562
5544
|
*/
|
|
5563
|
-
Tags?:
|
|
5564
|
-
[key: string]: string;
|
|
5565
|
-
};
|
|
5545
|
+
Tags?: Record<string, string>;
|
|
5566
5546
|
}
|
|
5567
5547
|
export declare namespace ListJobsRequest {
|
|
5568
5548
|
/**
|
|
@@ -5607,9 +5587,7 @@ export interface ListMLTransformsRequest {
|
|
|
5607
5587
|
/**
|
|
5608
5588
|
* <p>Specifies to return only these tagged resources.</p>
|
|
5609
5589
|
*/
|
|
5610
|
-
Tags?:
|
|
5611
|
-
[key: string]: string;
|
|
5612
|
-
};
|
|
5590
|
+
Tags?: Record<string, string>;
|
|
5613
5591
|
}
|
|
5614
5592
|
export declare namespace ListMLTransformsRequest {
|
|
5615
5593
|
/**
|
|
@@ -5864,9 +5842,7 @@ export interface ListSessionsRequest {
|
|
|
5864
5842
|
/**
|
|
5865
5843
|
* <p>Tags belonging to the session. </p>
|
|
5866
5844
|
*/
|
|
5867
|
-
Tags?:
|
|
5868
|
-
[key: string]: string;
|
|
5869
|
-
};
|
|
5845
|
+
Tags?: Record<string, string>;
|
|
5870
5846
|
/**
|
|
5871
5847
|
* <p>The origin of the request. </p>
|
|
5872
5848
|
*/
|
|
@@ -5945,9 +5921,7 @@ export interface ListTriggersRequest {
|
|
|
5945
5921
|
/**
|
|
5946
5922
|
* <p>Specifies to return only these tagged resources.</p>
|
|
5947
5923
|
*/
|
|
5948
|
-
Tags?:
|
|
5949
|
-
[key: string]: string;
|
|
5950
|
-
};
|
|
5924
|
+
Tags?: Record<string, string>;
|
|
5951
5925
|
}
|
|
5952
5926
|
export declare namespace ListTriggersRequest {
|
|
5953
5927
|
/**
|
|
@@ -6191,9 +6165,7 @@ export interface PutWorkflowRunPropertiesRequest {
|
|
|
6191
6165
|
/**
|
|
6192
6166
|
* <p>The properties to put for the specified run.</p>
|
|
6193
6167
|
*/
|
|
6194
|
-
RunProperties:
|
|
6195
|
-
[key: string]: string;
|
|
6196
|
-
} | undefined;
|
|
6168
|
+
RunProperties: Record<string, string> | undefined;
|
|
6197
6169
|
}
|
|
6198
6170
|
export declare namespace PutWorkflowRunPropertiesRequest {
|
|
6199
6171
|
/**
|
|
@@ -6287,9 +6259,7 @@ export interface QuerySchemaVersionMetadataResponse {
|
|
|
6287
6259
|
/**
|
|
6288
6260
|
* <p>A map of a metadata key and associated values.</p>
|
|
6289
6261
|
*/
|
|
6290
|
-
MetadataInfoMap?:
|
|
6291
|
-
[key: string]: MetadataInfo;
|
|
6292
|
-
};
|
|
6262
|
+
MetadataInfoMap?: Record<string, MetadataInfo>;
|
|
6293
6263
|
/**
|
|
6294
6264
|
* <p>The unique version ID of the schema version.</p>
|
|
6295
6265
|
*/
|
|
@@ -392,9 +392,7 @@ export interface StartJobRunRequest {
|
|
|
392
392
|
* <p>For information about how to specify and consume your own Job arguments, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html">Calling Glue APIs in Python</a> topic in the developer guide.</p>
|
|
393
393
|
* <p>For information about the key-value pairs that Glue consumes to set up your job, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Special Parameters Used by Glue</a> topic in the developer guide.</p>
|
|
394
394
|
*/
|
|
395
|
-
Arguments?:
|
|
396
|
-
[key: string]: string;
|
|
397
|
-
};
|
|
395
|
+
Arguments?: Record<string, string>;
|
|
398
396
|
/**
|
|
399
397
|
* @deprecated
|
|
400
398
|
*
|
|
@@ -583,9 +581,7 @@ export interface StartWorkflowRunRequest {
|
|
|
583
581
|
/**
|
|
584
582
|
* <p>The workflow run properties for the new workflow run.</p>
|
|
585
583
|
*/
|
|
586
|
-
RunProperties?:
|
|
587
|
-
[key: string]: string;
|
|
588
|
-
};
|
|
584
|
+
RunProperties?: Record<string, string>;
|
|
589
585
|
}
|
|
590
586
|
export declare namespace StartWorkflowRunRequest {
|
|
591
587
|
/**
|
|
@@ -775,9 +771,7 @@ export interface TagResourceRequest {
|
|
|
775
771
|
/**
|
|
776
772
|
* <p>Tags to add to this resource.</p>
|
|
777
773
|
*/
|
|
778
|
-
TagsToAdd:
|
|
779
|
-
[key: string]: string;
|
|
780
|
-
} | undefined;
|
|
774
|
+
TagsToAdd: Record<string, string> | undefined;
|
|
781
775
|
}
|
|
782
776
|
export declare namespace TagResourceRequest {
|
|
783
777
|
/**
|
|
@@ -1355,9 +1349,7 @@ export interface UpdateDevEndpointRequest {
|
|
|
1355
1349
|
*
|
|
1356
1350
|
* <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
|
|
1357
1351
|
*/
|
|
1358
|
-
AddArguments?:
|
|
1359
|
-
[key: string]: string;
|
|
1360
|
-
};
|
|
1352
|
+
AddArguments?: Record<string, string>;
|
|
1361
1353
|
}
|
|
1362
1354
|
export declare namespace UpdateDevEndpointRequest {
|
|
1363
1355
|
/**
|
|
@@ -1748,9 +1740,7 @@ export interface UpdateWorkflowRequest {
|
|
|
1748
1740
|
/**
|
|
1749
1741
|
* <p>A collection of properties to be used as part of each execution of the workflow.</p>
|
|
1750
1742
|
*/
|
|
1751
|
-
DefaultRunProperties?:
|
|
1752
|
-
[key: string]: string;
|
|
1753
|
-
};
|
|
1743
|
+
DefaultRunProperties?: Record<string, string>;
|
|
1754
1744
|
/**
|
|
1755
1745
|
* <p>You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.</p>
|
|
1756
1746
|
*/
|
|
@@ -2112,15 +2102,11 @@ export interface CreateJobRequest {
|
|
|
2112
2102
|
* <p>For information about how to specify and consume your own Job arguments, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html">Calling Glue APIs in Python</a> topic in the developer guide.</p>
|
|
2113
2103
|
* <p>For information about the key-value pairs that Glue consumes to set up your job, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Special Parameters Used by Glue</a> topic in the developer guide.</p>
|
|
2114
2104
|
*/
|
|
2115
|
-
DefaultArguments?:
|
|
2116
|
-
[key: string]: string;
|
|
2117
|
-
};
|
|
2105
|
+
DefaultArguments?: Record<string, string>;
|
|
2118
2106
|
/**
|
|
2119
2107
|
* <p>Non-overridable arguments for this job, specified as name-value pairs.</p>
|
|
2120
2108
|
*/
|
|
2121
|
-
NonOverridableArguments?:
|
|
2122
|
-
[key: string]: string;
|
|
2123
|
-
};
|
|
2109
|
+
NonOverridableArguments?: Record<string, string>;
|
|
2124
2110
|
/**
|
|
2125
2111
|
* <p>The connections used for this job.</p>
|
|
2126
2112
|
*/
|
|
@@ -2179,9 +2165,7 @@ export interface CreateJobRequest {
|
|
|
2179
2165
|
/**
|
|
2180
2166
|
* <p>The tags to use with this job. You may use tags to limit access to the job. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide.</p>
|
|
2181
2167
|
*/
|
|
2182
|
-
Tags?:
|
|
2183
|
-
[key: string]: string;
|
|
2184
|
-
};
|
|
2168
|
+
Tags?: Record<string, string>;
|
|
2185
2169
|
/**
|
|
2186
2170
|
* <p>Specifies configuration properties of a job notification.</p>
|
|
2187
2171
|
*/
|
|
@@ -2218,9 +2202,7 @@ export interface CreateJobRequest {
|
|
|
2218
2202
|
/**
|
|
2219
2203
|
* <p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>
|
|
2220
2204
|
*/
|
|
2221
|
-
CodeGenConfigurationNodes?:
|
|
2222
|
-
[key: string]: CodeGenConfigurationNode;
|
|
2223
|
-
};
|
|
2205
|
+
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode>;
|
|
2224
2206
|
}
|
|
2225
2207
|
export declare namespace CreateJobRequest {
|
|
2226
2208
|
/**
|
|
@@ -2272,15 +2254,11 @@ export interface Job {
|
|
|
2272
2254
|
* <p>For information about how to specify and consume your own Job arguments, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html">Calling Glue APIs in Python</a> topic in the developer guide.</p>
|
|
2273
2255
|
* <p>For information about the key-value pairs that Glue consumes to set up your job, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Special Parameters Used by Glue</a> topic in the developer guide.</p>
|
|
2274
2256
|
*/
|
|
2275
|
-
DefaultArguments?:
|
|
2276
|
-
[key: string]: string;
|
|
2277
|
-
};
|
|
2257
|
+
DefaultArguments?: Record<string, string>;
|
|
2278
2258
|
/**
|
|
2279
2259
|
* <p>Non-overridable arguments for this job, specified as name-value pairs.</p>
|
|
2280
2260
|
*/
|
|
2281
|
-
NonOverridableArguments?:
|
|
2282
|
-
[key: string]: string;
|
|
2283
|
-
};
|
|
2261
|
+
NonOverridableArguments?: Record<string, string>;
|
|
2284
2262
|
/**
|
|
2285
2263
|
* <p>The connections used for this job.</p>
|
|
2286
2264
|
*/
|
|
@@ -2374,9 +2352,7 @@ export interface Job {
|
|
|
2374
2352
|
/**
|
|
2375
2353
|
* <p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>
|
|
2376
2354
|
*/
|
|
2377
|
-
CodeGenConfigurationNodes?:
|
|
2378
|
-
[key: string]: CodeGenConfigurationNode;
|
|
2379
|
-
};
|
|
2355
|
+
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode>;
|
|
2380
2356
|
}
|
|
2381
2357
|
export declare namespace Job {
|
|
2382
2358
|
/**
|
|
@@ -2418,15 +2394,11 @@ export interface JobUpdate {
|
|
|
2418
2394
|
* <p>For information about how to specify and consume your own Job arguments, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html">Calling Glue APIs in Python</a> topic in the developer guide.</p>
|
|
2419
2395
|
* <p>For information about the key-value pairs that Glue consumes to set up your job, see the <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Special Parameters Used by Glue</a> topic in the developer guide.</p>
|
|
2420
2396
|
*/
|
|
2421
|
-
DefaultArguments?:
|
|
2422
|
-
[key: string]: string;
|
|
2423
|
-
};
|
|
2397
|
+
DefaultArguments?: Record<string, string>;
|
|
2424
2398
|
/**
|
|
2425
2399
|
* <p>Non-overridable arguments for this job, specified as name-value pairs.</p>
|
|
2426
2400
|
*/
|
|
2427
|
-
NonOverridableArguments?:
|
|
2428
|
-
[key: string]: string;
|
|
2429
|
-
};
|
|
2401
|
+
NonOverridableArguments?: Record<string, string>;
|
|
2430
2402
|
/**
|
|
2431
2403
|
* <p>The connections used for this job.</p>
|
|
2432
2404
|
*/
|
|
@@ -2515,9 +2487,7 @@ export interface JobUpdate {
|
|
|
2515
2487
|
/**
|
|
2516
2488
|
* <p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>
|
|
2517
2489
|
*/
|
|
2518
|
-
CodeGenConfigurationNodes?:
|
|
2519
|
-
[key: string]: CodeGenConfigurationNode;
|
|
2520
|
-
};
|
|
2490
|
+
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode>;
|
|
2521
2491
|
}
|
|
2522
2492
|
export declare namespace JobUpdate {
|
|
2523
2493
|
/**
|
|
@@ -23,9 +23,7 @@ export interface Action {
|
|
|
23
23
|
|
|
24
24
|
JobName?: string;
|
|
25
25
|
|
|
26
|
-
Arguments?:
|
|
27
|
-
[key: string]: string;
|
|
28
|
-
};
|
|
26
|
+
Arguments?: Record<string, string>;
|
|
29
27
|
|
|
30
28
|
Timeout?: number;
|
|
31
29
|
|
|
@@ -154,9 +152,7 @@ export interface Column {
|
|
|
154
152
|
|
|
155
153
|
Comment?: string;
|
|
156
154
|
|
|
157
|
-
Parameters?:
|
|
158
|
-
[key: string]: string;
|
|
159
|
-
};
|
|
155
|
+
Parameters?: Record<string, string>;
|
|
160
156
|
}
|
|
161
157
|
export declare namespace Column {
|
|
162
158
|
|
|
@@ -195,9 +191,7 @@ export interface SerDeInfo {
|
|
|
195
191
|
|
|
196
192
|
SerializationLibrary?: string;
|
|
197
193
|
|
|
198
|
-
Parameters?:
|
|
199
|
-
[key: string]: string;
|
|
200
|
-
};
|
|
194
|
+
Parameters?: Record<string, string>;
|
|
201
195
|
}
|
|
202
196
|
export declare namespace SerDeInfo {
|
|
203
197
|
|
|
@@ -210,9 +204,7 @@ export interface SkewedInfo {
|
|
|
210
204
|
|
|
211
205
|
SkewedColumnValues?: string[];
|
|
212
206
|
|
|
213
|
-
SkewedColumnValueLocationMaps?:
|
|
214
|
-
[key: string]: string;
|
|
215
|
-
};
|
|
207
|
+
SkewedColumnValueLocationMaps?: Record<string, string>;
|
|
216
208
|
}
|
|
217
209
|
export declare namespace SkewedInfo {
|
|
218
210
|
|
|
@@ -251,9 +243,7 @@ export interface StorageDescriptor {
|
|
|
251
243
|
|
|
252
244
|
SortColumns?: Order[];
|
|
253
245
|
|
|
254
|
-
Parameters?:
|
|
255
|
-
[key: string]: string;
|
|
256
|
-
};
|
|
246
|
+
Parameters?: Record<string, string>;
|
|
257
247
|
|
|
258
248
|
SkewedInfo?: SkewedInfo;
|
|
259
249
|
|
|
@@ -274,9 +264,7 @@ export interface PartitionInput {
|
|
|
274
264
|
|
|
275
265
|
StorageDescriptor?: StorageDescriptor;
|
|
276
266
|
|
|
277
|
-
Parameters?:
|
|
278
|
-
[key: string]: string;
|
|
279
|
-
};
|
|
267
|
+
Parameters?: Record<string, string>;
|
|
280
268
|
|
|
281
269
|
LastAnalyzedTime?: Date;
|
|
282
270
|
}
|
|
@@ -396,9 +384,7 @@ export interface BatchDeleteConnectionResponse {
|
|
|
396
384
|
|
|
397
385
|
Succeeded?: string[];
|
|
398
386
|
|
|
399
|
-
Errors?:
|
|
400
|
-
[key: string]: ErrorDetail;
|
|
401
|
-
};
|
|
387
|
+
Errors?: Record<string, ErrorDetail>;
|
|
402
388
|
}
|
|
403
389
|
export declare namespace BatchDeleteConnectionResponse {
|
|
404
390
|
|
|
@@ -946,9 +932,7 @@ export interface DevEndpoint {
|
|
|
946
932
|
|
|
947
933
|
SecurityConfiguration?: string;
|
|
948
934
|
|
|
949
|
-
Arguments?:
|
|
950
|
-
[key: string]: string;
|
|
951
|
-
};
|
|
935
|
+
Arguments?: Record<string, string>;
|
|
952
936
|
}
|
|
953
937
|
export declare namespace DevEndpoint {
|
|
954
938
|
|
|
@@ -1481,9 +1465,7 @@ export interface JDBCConnectorOptions {
|
|
|
1481
1465
|
|
|
1482
1466
|
JobBookmarkKeysSortOrder?: string;
|
|
1483
1467
|
|
|
1484
|
-
DataTypeMapping?:
|
|
1485
|
-
[key: string]: GlueRecordType | string;
|
|
1486
|
-
};
|
|
1468
|
+
DataTypeMapping?: Record<string, GlueRecordType | string>;
|
|
1487
1469
|
}
|
|
1488
1470
|
export declare namespace JDBCConnectorOptions {
|
|
1489
1471
|
|
|
@@ -1527,9 +1509,7 @@ export interface JDBCConnectorTarget {
|
|
|
1527
1509
|
|
|
1528
1510
|
ConnectionType: string | undefined;
|
|
1529
1511
|
|
|
1530
|
-
AdditionalOptions?:
|
|
1531
|
-
[key: string]: string;
|
|
1532
|
-
};
|
|
1512
|
+
AdditionalOptions?: Record<string, string>;
|
|
1533
1513
|
|
|
1534
1514
|
OutputSchemas?: GlueSchema[];
|
|
1535
1515
|
}
|
|
@@ -2087,9 +2067,7 @@ export interface SparkConnectorSource {
|
|
|
2087
2067
|
|
|
2088
2068
|
ConnectionType: string | undefined;
|
|
2089
2069
|
|
|
2090
|
-
AdditionalOptions?:
|
|
2091
|
-
[key: string]: string;
|
|
2092
|
-
};
|
|
2070
|
+
AdditionalOptions?: Record<string, string>;
|
|
2093
2071
|
|
|
2094
2072
|
OutputSchemas?: GlueSchema[];
|
|
2095
2073
|
}
|
|
@@ -2110,9 +2088,7 @@ export interface SparkConnectorTarget {
|
|
|
2110
2088
|
|
|
2111
2089
|
ConnectionType: string | undefined;
|
|
2112
2090
|
|
|
2113
|
-
AdditionalOptions?:
|
|
2114
|
-
[key: string]: string;
|
|
2115
|
-
};
|
|
2091
|
+
AdditionalOptions?: Record<string, string>;
|
|
2116
2092
|
|
|
2117
2093
|
OutputSchemas?: GlueSchema[];
|
|
2118
2094
|
}
|
|
@@ -2255,9 +2231,7 @@ export interface Partition {
|
|
|
2255
2231
|
|
|
2256
2232
|
StorageDescriptor?: StorageDescriptor;
|
|
2257
2233
|
|
|
2258
|
-
Parameters?:
|
|
2259
|
-
[key: string]: string;
|
|
2260
|
-
};
|
|
2234
|
+
Parameters?: Record<string, string>;
|
|
2261
2235
|
|
|
2262
2236
|
LastAnalyzedTime?: Date;
|
|
2263
2237
|
|
|
@@ -2501,9 +2475,7 @@ export interface JobRun {
|
|
|
2501
2475
|
|
|
2502
2476
|
JobRunState?: JobRunState | string;
|
|
2503
2477
|
|
|
2504
|
-
Arguments?:
|
|
2505
|
-
[key: string]: string;
|
|
2506
|
-
};
|
|
2478
|
+
Arguments?: Record<string, string>;
|
|
2507
2479
|
|
|
2508
2480
|
ErrorMessage?: string;
|
|
2509
2481
|
|
|
@@ -2634,9 +2606,7 @@ export interface WorkflowRun {
|
|
|
2634
2606
|
|
|
2635
2607
|
PreviousRunId?: string;
|
|
2636
2608
|
|
|
2637
|
-
WorkflowRunProperties?:
|
|
2638
|
-
[key: string]: string;
|
|
2639
|
-
};
|
|
2609
|
+
WorkflowRunProperties?: Record<string, string>;
|
|
2640
2610
|
|
|
2641
2611
|
StartedOn?: Date;
|
|
2642
2612
|
|
|
@@ -2663,9 +2633,7 @@ export interface Workflow {
|
|
|
2663
2633
|
|
|
2664
2634
|
Description?: string;
|
|
2665
2635
|
|
|
2666
|
-
DefaultRunProperties?:
|
|
2667
|
-
[key: string]: string;
|
|
2668
|
-
};
|
|
2636
|
+
DefaultRunProperties?: Record<string, string>;
|
|
2669
2637
|
|
|
2670
2638
|
CreatedOn?: Date;
|
|
2671
2639
|
|
|
@@ -2872,9 +2840,7 @@ export interface CreateBlueprintRequest {
|
|
|
2872
2840
|
|
|
2873
2841
|
BlueprintLocation: string | undefined;
|
|
2874
2842
|
|
|
2875
|
-
Tags?:
|
|
2876
|
-
[key: string]: string;
|
|
2877
|
-
};
|
|
2843
|
+
Tags?: Record<string, string>;
|
|
2878
2844
|
}
|
|
2879
2845
|
export declare namespace CreateBlueprintRequest {
|
|
2880
2846
|
|
|
@@ -3038,9 +3004,7 @@ export interface ConnectionInput {
|
|
|
3038
3004
|
|
|
3039
3005
|
MatchCriteria?: string[];
|
|
3040
3006
|
|
|
3041
|
-
ConnectionProperties:
|
|
3042
|
-
[key: string]: string;
|
|
3043
|
-
} | undefined;
|
|
3007
|
+
ConnectionProperties: Record<string, string> | undefined;
|
|
3044
3008
|
|
|
3045
3009
|
PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
|
|
3046
3010
|
}
|
|
@@ -3054,9 +3018,7 @@ export interface CreateConnectionRequest {
|
|
|
3054
3018
|
|
|
3055
3019
|
ConnectionInput: ConnectionInput | undefined;
|
|
3056
3020
|
|
|
3057
|
-
Tags?:
|
|
3058
|
-
[key: string]: string;
|
|
3059
|
-
};
|
|
3021
|
+
Tags?: Record<string, string>;
|
|
3060
3022
|
}
|
|
3061
3023
|
export declare namespace CreateConnectionRequest {
|
|
3062
3024
|
|
|
@@ -955,9 +955,7 @@ export interface Connection {
|
|
|
955
955
|
|
|
956
956
|
MatchCriteria?: string[];
|
|
957
957
|
|
|
958
|
-
ConnectionProperties?:
|
|
959
|
-
[key: string]: string;
|
|
960
|
-
};
|
|
958
|
+
ConnectionProperties?: Record<string, string>;
|
|
961
959
|
|
|
962
960
|
PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
|
|
963
961
|
|
|
@@ -1136,9 +1134,7 @@ export interface Database {
|
|
|
1136
1134
|
|
|
1137
1135
|
LocationUri?: string;
|
|
1138
1136
|
|
|
1139
|
-
Parameters?:
|
|
1140
|
-
[key: string]: string;
|
|
1141
|
-
};
|
|
1137
|
+
Parameters?: Record<string, string>;
|
|
1142
1138
|
|
|
1143
1139
|
CreateTime?: Date;
|
|
1144
1140
|
|
|
@@ -2038,9 +2034,7 @@ export interface GetPlanRequest {
|
|
|
2038
2034
|
|
|
2039
2035
|
Language?: Language | string;
|
|
2040
2036
|
|
|
2041
|
-
AdditionalPlanOptionsMap?:
|
|
2042
|
-
[key: string]: string;
|
|
2043
|
-
};
|
|
2037
|
+
AdditionalPlanOptionsMap?: Record<string, string>;
|
|
2044
2038
|
}
|
|
2045
2039
|
export declare namespace GetPlanRequest {
|
|
2046
2040
|
|
|
@@ -2464,9 +2458,7 @@ export interface Table {
|
|
|
2464
2458
|
|
|
2465
2459
|
TableType?: string;
|
|
2466
2460
|
|
|
2467
|
-
Parameters?:
|
|
2468
|
-
[key: string]: string;
|
|
2469
|
-
};
|
|
2461
|
+
Parameters?: Record<string, string>;
|
|
2470
2462
|
|
|
2471
2463
|
CreatedBy?: string;
|
|
2472
2464
|
|
|
@@ -2588,9 +2580,7 @@ export declare namespace GetTagsRequest {
|
|
|
2588
2580
|
}
|
|
2589
2581
|
export interface GetTagsResponse {
|
|
2590
2582
|
|
|
2591
|
-
Tags?:
|
|
2592
|
-
[key: string]: string;
|
|
2593
|
-
};
|
|
2583
|
+
Tags?: Record<string, string>;
|
|
2594
2584
|
}
|
|
2595
2585
|
export declare namespace GetTagsResponse {
|
|
2596
2586
|
|
|
@@ -2853,9 +2843,7 @@ export declare namespace GetWorkflowRunPropertiesRequest {
|
|
|
2853
2843
|
}
|
|
2854
2844
|
export interface GetWorkflowRunPropertiesResponse {
|
|
2855
2845
|
|
|
2856
|
-
RunProperties?:
|
|
2857
|
-
[key: string]: string;
|
|
2858
|
-
};
|
|
2846
|
+
RunProperties?: Record<string, string>;
|
|
2859
2847
|
}
|
|
2860
2848
|
export declare namespace GetWorkflowRunPropertiesResponse {
|
|
2861
2849
|
|
|
@@ -2905,9 +2893,7 @@ export interface ListBlueprintsRequest {
|
|
|
2905
2893
|
|
|
2906
2894
|
MaxResults?: number;
|
|
2907
2895
|
|
|
2908
|
-
Tags?:
|
|
2909
|
-
[key: string]: string;
|
|
2910
|
-
};
|
|
2896
|
+
Tags?: Record<string, string>;
|
|
2911
2897
|
}
|
|
2912
2898
|
export declare namespace ListBlueprintsRequest {
|
|
2913
2899
|
|
|
@@ -2929,9 +2915,7 @@ export interface ListCrawlersRequest {
|
|
|
2929
2915
|
|
|
2930
2916
|
NextToken?: string;
|
|
2931
2917
|
|
|
2932
|
-
Tags?:
|
|
2933
|
-
[key: string]: string;
|
|
2934
|
-
};
|
|
2918
|
+
Tags?: Record<string, string>;
|
|
2935
2919
|
}
|
|
2936
2920
|
export declare namespace ListCrawlersRequest {
|
|
2937
2921
|
|
|
@@ -2973,9 +2957,7 @@ export interface ListDevEndpointsRequest {
|
|
|
2973
2957
|
|
|
2974
2958
|
MaxResults?: number;
|
|
2975
2959
|
|
|
2976
|
-
Tags?:
|
|
2977
|
-
[key: string]: string;
|
|
2978
|
-
};
|
|
2960
|
+
Tags?: Record<string, string>;
|
|
2979
2961
|
}
|
|
2980
2962
|
export declare namespace ListDevEndpointsRequest {
|
|
2981
2963
|
|
|
@@ -2997,9 +2979,7 @@ export interface ListJobsRequest {
|
|
|
2997
2979
|
|
|
2998
2980
|
MaxResults?: number;
|
|
2999
2981
|
|
|
3000
|
-
Tags?:
|
|
3001
|
-
[key: string]: string;
|
|
3002
|
-
};
|
|
2982
|
+
Tags?: Record<string, string>;
|
|
3003
2983
|
}
|
|
3004
2984
|
export declare namespace ListJobsRequest {
|
|
3005
2985
|
|
|
@@ -3025,9 +3005,7 @@ export interface ListMLTransformsRequest {
|
|
|
3025
3005
|
|
|
3026
3006
|
Sort?: TransformSortCriteria;
|
|
3027
3007
|
|
|
3028
|
-
Tags?:
|
|
3029
|
-
[key: string]: string;
|
|
3030
|
-
};
|
|
3008
|
+
Tags?: Record<string, string>;
|
|
3031
3009
|
}
|
|
3032
3010
|
export declare namespace ListMLTransformsRequest {
|
|
3033
3011
|
|
|
@@ -3170,9 +3148,7 @@ export interface ListSessionsRequest {
|
|
|
3170
3148
|
|
|
3171
3149
|
MaxResults?: number;
|
|
3172
3150
|
|
|
3173
|
-
Tags?:
|
|
3174
|
-
[key: string]: string;
|
|
3175
|
-
};
|
|
3151
|
+
Tags?: Record<string, string>;
|
|
3176
3152
|
|
|
3177
3153
|
RequestOrigin?: string;
|
|
3178
3154
|
}
|
|
@@ -3220,9 +3196,7 @@ export interface ListTriggersRequest {
|
|
|
3220
3196
|
|
|
3221
3197
|
MaxResults?: number;
|
|
3222
3198
|
|
|
3223
|
-
Tags?:
|
|
3224
|
-
[key: string]: string;
|
|
3225
|
-
};
|
|
3199
|
+
Tags?: Record<string, string>;
|
|
3226
3200
|
}
|
|
3227
3201
|
export declare namespace ListTriggersRequest {
|
|
3228
3202
|
|
|
@@ -3360,9 +3334,7 @@ export interface PutWorkflowRunPropertiesRequest {
|
|
|
3360
3334
|
|
|
3361
3335
|
RunId: string | undefined;
|
|
3362
3336
|
|
|
3363
|
-
RunProperties:
|
|
3364
|
-
[key: string]: string;
|
|
3365
|
-
} | undefined;
|
|
3337
|
+
RunProperties: Record<string, string> | undefined;
|
|
3366
3338
|
}
|
|
3367
3339
|
export declare namespace PutWorkflowRunPropertiesRequest {
|
|
3368
3340
|
|
|
@@ -3418,9 +3390,7 @@ export declare namespace MetadataInfo {
|
|
|
3418
3390
|
}
|
|
3419
3391
|
export interface QuerySchemaVersionMetadataResponse {
|
|
3420
3392
|
|
|
3421
|
-
MetadataInfoMap?:
|
|
3422
|
-
[key: string]: MetadataInfo;
|
|
3423
|
-
};
|
|
3393
|
+
MetadataInfoMap?: Record<string, MetadataInfo>;
|
|
3424
3394
|
|
|
3425
3395
|
SchemaVersionId?: string;
|
|
3426
3396
|
|
|
@@ -235,9 +235,7 @@ export interface StartJobRunRequest {
|
|
|
235
235
|
|
|
236
236
|
JobRunId?: string;
|
|
237
237
|
|
|
238
|
-
Arguments?:
|
|
239
|
-
[key: string]: string;
|
|
240
|
-
};
|
|
238
|
+
Arguments?: Record<string, string>;
|
|
241
239
|
|
|
242
240
|
AllocatedCapacity?: number;
|
|
243
241
|
|
|
@@ -328,9 +326,7 @@ export interface StartWorkflowRunRequest {
|
|
|
328
326
|
|
|
329
327
|
Name: string | undefined;
|
|
330
328
|
|
|
331
|
-
RunProperties?:
|
|
332
|
-
[key: string]: string;
|
|
333
|
-
};
|
|
329
|
+
RunProperties?: Record<string, string>;
|
|
334
330
|
}
|
|
335
331
|
export declare namespace StartWorkflowRunRequest {
|
|
336
332
|
|
|
@@ -453,9 +449,7 @@ export interface TagResourceRequest {
|
|
|
453
449
|
|
|
454
450
|
ResourceArn: string | undefined;
|
|
455
451
|
|
|
456
|
-
TagsToAdd:
|
|
457
|
-
[key: string]: string;
|
|
458
|
-
} | undefined;
|
|
452
|
+
TagsToAdd: Record<string, string> | undefined;
|
|
459
453
|
}
|
|
460
454
|
export declare namespace TagResourceRequest {
|
|
461
455
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,15 +18,16 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|