@aws-sdk/client-glue 3.687.0 → 3.692.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-types/models/models_0.d.ts +751 -751
- package/dist-types/models/models_1.d.ts +610 -610
- package/dist-types/models/models_2.d.ts +701 -701
- package/dist-types/models/models_3.d.ts +275 -275
- package/dist-types/ts3.4/models/models_0.d.ts +751 -751
- package/dist-types/ts3.4/models/models_1.d.ts +614 -610
- package/dist-types/ts3.4/models/models_2.d.ts +705 -701
- package/dist-types/ts3.4/models/models_3.d.ts +281 -275
- package/package.json +35 -35
|
@@ -14,35 +14,35 @@ export interface UpdateDevEndpointRequest {
|
|
|
14
14
|
* <p>The public key for the <code>DevEndpoint</code> to use.</p>
|
|
15
15
|
* @public
|
|
16
16
|
*/
|
|
17
|
-
PublicKey?: string;
|
|
17
|
+
PublicKey?: string | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* <p>The list of public keys for the <code>DevEndpoint</code> to use.</p>
|
|
20
20
|
* @public
|
|
21
21
|
*/
|
|
22
|
-
AddPublicKeys?: string[];
|
|
22
|
+
AddPublicKeys?: string[] | undefined;
|
|
23
23
|
/**
|
|
24
24
|
* <p>The list of public keys to be deleted from the <code>DevEndpoint</code>.</p>
|
|
25
25
|
* @public
|
|
26
26
|
*/
|
|
27
|
-
DeletePublicKeys?: string[];
|
|
27
|
+
DeletePublicKeys?: string[] | undefined;
|
|
28
28
|
/**
|
|
29
29
|
* <p>Custom Python or Java libraries to be loaded in the <code>DevEndpoint</code>.</p>
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
|
-
CustomLibraries?: DevEndpointCustomLibraries;
|
|
32
|
+
CustomLibraries?: DevEndpointCustomLibraries | undefined;
|
|
33
33
|
/**
|
|
34
34
|
* <p>
|
|
35
35
|
* <code>True</code> if the list of custom libraries to be loaded in the development endpoint
|
|
36
36
|
* needs to be updated, or <code>False</code> if otherwise.</p>
|
|
37
37
|
* @public
|
|
38
38
|
*/
|
|
39
|
-
UpdateEtlLibraries?: boolean;
|
|
39
|
+
UpdateEtlLibraries?: boolean | undefined;
|
|
40
40
|
/**
|
|
41
41
|
* <p>The list of argument keys to be deleted from the map of arguments used to configure the
|
|
42
42
|
* <code>DevEndpoint</code>.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
DeleteArguments?: string[];
|
|
45
|
+
DeleteArguments?: string[] | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* <p>The map of arguments to add the map of arguments used to configure the
|
|
48
48
|
* <code>DevEndpoint</code>.</p>
|
|
@@ -57,7 +57,7 @@ export interface UpdateDevEndpointRequest {
|
|
|
57
57
|
* <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>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
AddArguments?: Record<string, string
|
|
60
|
+
AddArguments?: Record<string, string> | undefined;
|
|
61
61
|
}
|
|
62
62
|
/**
|
|
63
63
|
* @public
|
|
@@ -72,7 +72,7 @@ export interface UpdateJobResponse {
|
|
|
72
72
|
* <p>Returns the name of the updated job definition.</p>
|
|
73
73
|
* @public
|
|
74
74
|
*/
|
|
75
|
-
JobName?: string;
|
|
75
|
+
JobName?: string | undefined;
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* @public
|
|
@@ -82,14 +82,14 @@ export interface UpdateJobFromSourceControlRequest {
|
|
|
82
82
|
* <p>The name of the Glue job to be synchronized to or from the remote repository.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
JobName?: string;
|
|
85
|
+
JobName?: string | undefined;
|
|
86
86
|
/**
|
|
87
87
|
* <p>
|
|
88
88
|
* The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
|
|
89
89
|
* </p>
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
|
-
Provider?: SourceControlProvider;
|
|
92
|
+
Provider?: SourceControlProvider | undefined;
|
|
93
93
|
/**
|
|
94
94
|
* <p>The name of the remote repository that contains the job artifacts.
|
|
95
95
|
* For BitBucket providers, <code>RepositoryName</code> should include <code>WorkspaceName</code>.
|
|
@@ -97,37 +97,37 @@ export interface UpdateJobFromSourceControlRequest {
|
|
|
97
97
|
* </p>
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
|
-
RepositoryName?: string;
|
|
100
|
+
RepositoryName?: string | undefined;
|
|
101
101
|
/**
|
|
102
102
|
* <p>The owner of the remote repository that contains the job artifacts.</p>
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
|
-
RepositoryOwner?: string;
|
|
105
|
+
RepositoryOwner?: string | undefined;
|
|
106
106
|
/**
|
|
107
107
|
* <p>An optional branch in the remote repository.</p>
|
|
108
108
|
* @public
|
|
109
109
|
*/
|
|
110
|
-
BranchName?: string;
|
|
110
|
+
BranchName?: string | undefined;
|
|
111
111
|
/**
|
|
112
112
|
* <p>An optional folder in the remote repository.</p>
|
|
113
113
|
* @public
|
|
114
114
|
*/
|
|
115
|
-
Folder?: string;
|
|
115
|
+
Folder?: string | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* <p>A commit ID for a commit in the remote repository.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
CommitId?: string;
|
|
120
|
+
CommitId?: string | undefined;
|
|
121
121
|
/**
|
|
122
122
|
* <p>The type of authentication, which can be an authentication token stored in Amazon Web Services Secrets Manager, or a personal access token.</p>
|
|
123
123
|
* @public
|
|
124
124
|
*/
|
|
125
|
-
AuthStrategy?: SourceControlAuthStrategy;
|
|
125
|
+
AuthStrategy?: SourceControlAuthStrategy | undefined;
|
|
126
126
|
/**
|
|
127
127
|
* <p>The value of the authorization token.</p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
AuthToken?: string;
|
|
130
|
+
AuthToken?: string | undefined;
|
|
131
131
|
}
|
|
132
132
|
/**
|
|
133
133
|
* @public
|
|
@@ -137,7 +137,7 @@ export interface UpdateJobFromSourceControlResponse {
|
|
|
137
137
|
* <p>The name of the Glue job.</p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
JobName?: string;
|
|
140
|
+
JobName?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
143
|
* @public
|
|
@@ -152,29 +152,29 @@ export interface UpdateMLTransformRequest {
|
|
|
152
152
|
* <p>The unique name that you gave the transform when you created it.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
Name?: string;
|
|
155
|
+
Name?: string | undefined;
|
|
156
156
|
/**
|
|
157
157
|
* <p>A description of the transform. The default is an empty string.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
Description?: string;
|
|
160
|
+
Description?: string | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>The configuration parameters that are specific to the transform type (algorithm) used.
|
|
163
163
|
* Conditionally dependent on the transform type.</p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
Parameters?: TransformParameters;
|
|
166
|
+
Parameters?: TransformParameters | undefined;
|
|
167
167
|
/**
|
|
168
168
|
* <p>The name or Amazon Resource Name (ARN) of the IAM role with the required
|
|
169
169
|
* permissions.</p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
Role?: string;
|
|
172
|
+
Role?: string | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/release-notes.html#release-notes-versions">Glue Versions</a> in the developer guide.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
GlueVersion?: string;
|
|
177
|
+
GlueVersion?: string | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* <p>The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of
|
|
180
180
|
* processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
|
|
@@ -183,7 +183,7 @@ export interface UpdateMLTransformRequest {
|
|
|
183
183
|
* <p>When the <code>WorkerType</code> field is set to a value other than <code>Standard</code>, the <code>MaxCapacity</code> field is set automatically and becomes read-only.</p>
|
|
184
184
|
* @public
|
|
185
185
|
*/
|
|
186
|
-
MaxCapacity?: number;
|
|
186
|
+
MaxCapacity?: number | undefined;
|
|
187
187
|
/**
|
|
188
188
|
* <p>The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
189
189
|
* <ul>
|
|
@@ -199,22 +199,22 @@ export interface UpdateMLTransformRequest {
|
|
|
199
199
|
* </ul>
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
WorkerType?: WorkerType;
|
|
202
|
+
WorkerType?: WorkerType | undefined;
|
|
203
203
|
/**
|
|
204
204
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when this task runs.</p>
|
|
205
205
|
* @public
|
|
206
206
|
*/
|
|
207
|
-
NumberOfWorkers?: number;
|
|
207
|
+
NumberOfWorkers?: number | undefined;
|
|
208
208
|
/**
|
|
209
209
|
* <p>The timeout for a task run for this transform in minutes. This is the maximum time that a task run for this transform can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
Timeout?: number;
|
|
212
|
+
Timeout?: number | undefined;
|
|
213
213
|
/**
|
|
214
214
|
* <p>The maximum number of times to retry a task for this transform after a task run fails.</p>
|
|
215
215
|
* @public
|
|
216
216
|
*/
|
|
217
|
-
MaxRetries?: number;
|
|
217
|
+
MaxRetries?: number | undefined;
|
|
218
218
|
}
|
|
219
219
|
/**
|
|
220
220
|
* @public
|
|
@@ -224,7 +224,7 @@ export interface UpdateMLTransformResponse {
|
|
|
224
224
|
* <p>The unique identifier for the transform that was updated.</p>
|
|
225
225
|
* @public
|
|
226
226
|
*/
|
|
227
|
-
TransformId?: string;
|
|
227
|
+
TransformId?: string | undefined;
|
|
228
228
|
}
|
|
229
229
|
/**
|
|
230
230
|
* @public
|
|
@@ -235,7 +235,7 @@ export interface UpdatePartitionRequest {
|
|
|
235
235
|
* the Amazon Web Services account ID is used by default.</p>
|
|
236
236
|
* @public
|
|
237
237
|
*/
|
|
238
|
-
CatalogId?: string;
|
|
238
|
+
CatalogId?: string | undefined;
|
|
239
239
|
/**
|
|
240
240
|
* <p>The name of the catalog database in which the table in question
|
|
241
241
|
* resides.</p>
|
|
@@ -287,12 +287,12 @@ export interface UpdateRegistryResponse {
|
|
|
287
287
|
* <p>The name of the updated registry.</p>
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
RegistryName?: string;
|
|
290
|
+
RegistryName?: string | undefined;
|
|
291
291
|
/**
|
|
292
292
|
* <p>The Amazon Resource name (ARN) of the updated registry.</p>
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
|
-
RegistryArn?: string;
|
|
295
|
+
RegistryArn?: string | undefined;
|
|
296
296
|
}
|
|
297
297
|
/**
|
|
298
298
|
* @public
|
|
@@ -315,17 +315,17 @@ export interface UpdateSchemaInput {
|
|
|
315
315
|
* <p>Version number required for check pointing. One of <code>VersionNumber</code> or <code>Compatibility</code> has to be provided.</p>
|
|
316
316
|
* @public
|
|
317
317
|
*/
|
|
318
|
-
SchemaVersionNumber?: SchemaVersionNumber;
|
|
318
|
+
SchemaVersionNumber?: SchemaVersionNumber | undefined;
|
|
319
319
|
/**
|
|
320
320
|
* <p>The new compatibility setting for the schema.</p>
|
|
321
321
|
* @public
|
|
322
322
|
*/
|
|
323
|
-
Compatibility?: Compatibility;
|
|
323
|
+
Compatibility?: Compatibility | undefined;
|
|
324
324
|
/**
|
|
325
325
|
* <p>The new description for the schema.</p>
|
|
326
326
|
* @public
|
|
327
327
|
*/
|
|
328
|
-
Description?: string;
|
|
328
|
+
Description?: string | undefined;
|
|
329
329
|
}
|
|
330
330
|
/**
|
|
331
331
|
* @public
|
|
@@ -335,17 +335,17 @@ export interface UpdateSchemaResponse {
|
|
|
335
335
|
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
336
336
|
* @public
|
|
337
337
|
*/
|
|
338
|
-
SchemaArn?: string;
|
|
338
|
+
SchemaArn?: string | undefined;
|
|
339
339
|
/**
|
|
340
340
|
* <p>The name of the schema.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
SchemaName?: string;
|
|
343
|
+
SchemaName?: string | undefined;
|
|
344
344
|
/**
|
|
345
345
|
* <p>The name of the registry that contains the schema.</p>
|
|
346
346
|
* @public
|
|
347
347
|
*/
|
|
348
|
-
RegistryName?: string;
|
|
348
|
+
RegistryName?: string | undefined;
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
351
|
* @public
|
|
@@ -355,14 +355,14 @@ export interface UpdateSourceControlFromJobRequest {
|
|
|
355
355
|
* <p>The name of the Glue job to be synchronized to or from the remote repository.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
JobName?: string;
|
|
358
|
+
JobName?: string | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>
|
|
361
361
|
* The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
|
|
362
362
|
* </p>
|
|
363
363
|
* @public
|
|
364
364
|
*/
|
|
365
|
-
Provider?: SourceControlProvider;
|
|
365
|
+
Provider?: SourceControlProvider | undefined;
|
|
366
366
|
/**
|
|
367
367
|
* <p>The name of the remote repository that contains the job artifacts.
|
|
368
368
|
* For BitBucket providers, <code>RepositoryName</code> should include <code>WorkspaceName</code>.
|
|
@@ -370,37 +370,37 @@ export interface UpdateSourceControlFromJobRequest {
|
|
|
370
370
|
* </p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
RepositoryName?: string;
|
|
373
|
+
RepositoryName?: string | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* <p>The owner of the remote repository that contains the job artifacts.</p>
|
|
376
376
|
* @public
|
|
377
377
|
*/
|
|
378
|
-
RepositoryOwner?: string;
|
|
378
|
+
RepositoryOwner?: string | undefined;
|
|
379
379
|
/**
|
|
380
380
|
* <p>An optional branch in the remote repository.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
BranchName?: string;
|
|
383
|
+
BranchName?: string | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* <p>An optional folder in the remote repository.</p>
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
Folder?: string;
|
|
388
|
+
Folder?: string | undefined;
|
|
389
389
|
/**
|
|
390
390
|
* <p>A commit ID for a commit in the remote repository.</p>
|
|
391
391
|
* @public
|
|
392
392
|
*/
|
|
393
|
-
CommitId?: string;
|
|
393
|
+
CommitId?: string | undefined;
|
|
394
394
|
/**
|
|
395
395
|
* <p>The type of authentication, which can be an authentication token stored in Amazon Web Services Secrets Manager, or a personal access token.</p>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
AuthStrategy?: SourceControlAuthStrategy;
|
|
398
|
+
AuthStrategy?: SourceControlAuthStrategy | undefined;
|
|
399
399
|
/**
|
|
400
400
|
* <p>The value of the authorization token.</p>
|
|
401
401
|
* @public
|
|
402
402
|
*/
|
|
403
|
-
AuthToken?: string;
|
|
403
|
+
AuthToken?: string | undefined;
|
|
404
404
|
}
|
|
405
405
|
/**
|
|
406
406
|
* @public
|
|
@@ -410,7 +410,7 @@ export interface UpdateSourceControlFromJobResponse {
|
|
|
410
410
|
* <p>The name of the Glue job.</p>
|
|
411
411
|
* @public
|
|
412
412
|
*/
|
|
413
|
-
JobName?: string;
|
|
413
|
+
JobName?: string | undefined;
|
|
414
414
|
}
|
|
415
415
|
/**
|
|
416
416
|
* @public
|
|
@@ -435,7 +435,7 @@ export interface UpdateTableRequest {
|
|
|
435
435
|
* ID is used by default.</p>
|
|
436
436
|
* @public
|
|
437
437
|
*/
|
|
438
|
-
CatalogId?: string;
|
|
438
|
+
CatalogId?: string | undefined;
|
|
439
439
|
/**
|
|
440
440
|
* <p>The name of the catalog database in which the table resides. For Hive
|
|
441
441
|
* compatibility, this name is entirely lowercase.</p>
|
|
@@ -454,27 +454,27 @@ export interface UpdateTableRequest {
|
|
|
454
454
|
* <code>UpdateTable</code> does not create the archived version.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
SkipArchive?: boolean;
|
|
457
|
+
SkipArchive?: boolean | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>The transaction ID at which to update the table contents. </p>
|
|
460
460
|
* @public
|
|
461
461
|
*/
|
|
462
|
-
TransactionId?: string;
|
|
462
|
+
TransactionId?: string | undefined;
|
|
463
463
|
/**
|
|
464
464
|
* <p>The version ID at which to update the table contents. </p>
|
|
465
465
|
* @public
|
|
466
466
|
*/
|
|
467
|
-
VersionId?: string;
|
|
467
|
+
VersionId?: string | undefined;
|
|
468
468
|
/**
|
|
469
469
|
* <p>The operation to be performed when updating the view.</p>
|
|
470
470
|
* @public
|
|
471
471
|
*/
|
|
472
|
-
ViewUpdateAction?: ViewUpdateAction;
|
|
472
|
+
ViewUpdateAction?: ViewUpdateAction | undefined;
|
|
473
473
|
/**
|
|
474
474
|
* <p>A flag that can be set to true to ignore matching storage descriptor and subobject matching requirements.</p>
|
|
475
475
|
* @public
|
|
476
476
|
*/
|
|
477
|
-
Force?: boolean;
|
|
477
|
+
Force?: boolean | undefined;
|
|
478
478
|
}
|
|
479
479
|
/**
|
|
480
480
|
* @public
|
|
@@ -526,12 +526,12 @@ export interface TriggerUpdate {
|
|
|
526
526
|
* <p>Reserved for future use.</p>
|
|
527
527
|
* @public
|
|
528
528
|
*/
|
|
529
|
-
Name?: string;
|
|
529
|
+
Name?: string | undefined;
|
|
530
530
|
/**
|
|
531
531
|
* <p>A description of this trigger.</p>
|
|
532
532
|
* @public
|
|
533
533
|
*/
|
|
534
|
-
Description?: string;
|
|
534
|
+
Description?: string | undefined;
|
|
535
535
|
/**
|
|
536
536
|
* <p>A <code>cron</code> expression used to specify the schedule (see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|
537
537
|
* Schedules for Jobs and Crawlers</a>. For example, to run
|
|
@@ -539,23 +539,23 @@ export interface TriggerUpdate {
|
|
|
539
539
|
* <code>cron(15 12 * * ? *)</code>.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
Schedule?: string;
|
|
542
|
+
Schedule?: string | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>The actions initiated by this trigger.</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
Actions?: Action[];
|
|
547
|
+
Actions?: Action[] | undefined;
|
|
548
548
|
/**
|
|
549
549
|
* <p>The predicate of this trigger, which defines when it will fire.</p>
|
|
550
550
|
* @public
|
|
551
551
|
*/
|
|
552
|
-
Predicate?: Predicate;
|
|
552
|
+
Predicate?: Predicate | undefined;
|
|
553
553
|
/**
|
|
554
554
|
* <p>Batch condition that must be met (specified number of events received or batch time window expired)
|
|
555
555
|
* before EventBridge event trigger fires.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
EventBatchingCondition?: EventBatchingCondition;
|
|
558
|
+
EventBatchingCondition?: EventBatchingCondition | undefined;
|
|
559
559
|
}
|
|
560
560
|
/**
|
|
561
561
|
* @public
|
|
@@ -580,7 +580,7 @@ export interface UpdateTriggerResponse {
|
|
|
580
580
|
* <p>The resulting trigger definition.</p>
|
|
581
581
|
* @public
|
|
582
582
|
*/
|
|
583
|
-
Trigger?: Trigger;
|
|
583
|
+
Trigger?: Trigger | undefined;
|
|
584
584
|
}
|
|
585
585
|
/**
|
|
586
586
|
* @public
|
|
@@ -595,7 +595,7 @@ export interface UpdateUsageProfileRequest {
|
|
|
595
595
|
* <p>A description of the usage profile.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
Description?: string;
|
|
598
|
+
Description?: string | undefined;
|
|
599
599
|
/**
|
|
600
600
|
* <p>A <code>ProfileConfiguration</code> object specifying the job and session values for the profile.</p>
|
|
601
601
|
* @public
|
|
@@ -610,7 +610,7 @@ export interface UpdateUsageProfileResponse {
|
|
|
610
610
|
* <p>The name of the usage profile that was updated.</p>
|
|
611
611
|
* @public
|
|
612
612
|
*/
|
|
613
|
-
Name?: string;
|
|
613
|
+
Name?: string | undefined;
|
|
614
614
|
}
|
|
615
615
|
/**
|
|
616
616
|
* @public
|
|
@@ -621,7 +621,7 @@ export interface UpdateUserDefinedFunctionRequest {
|
|
|
621
621
|
* provided, the Amazon Web Services account ID is used by default.</p>
|
|
622
622
|
* @public
|
|
623
623
|
*/
|
|
624
|
-
CatalogId?: string;
|
|
624
|
+
CatalogId?: string | undefined;
|
|
625
625
|
/**
|
|
626
626
|
* <p>The name of the catalog database where the function to be updated is
|
|
627
627
|
* located.</p>
|
|
@@ -658,17 +658,17 @@ export interface UpdateWorkflowRequest {
|
|
|
658
658
|
* <p>The description of the workflow.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
Description?: string;
|
|
661
|
+
Description?: string | undefined;
|
|
662
662
|
/**
|
|
663
663
|
* <p>A collection of properties to be used as part of each execution of the workflow.</p>
|
|
664
664
|
* @public
|
|
665
665
|
*/
|
|
666
|
-
DefaultRunProperties?: Record<string, string
|
|
666
|
+
DefaultRunProperties?: Record<string, string> | undefined;
|
|
667
667
|
/**
|
|
668
668
|
* <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>
|
|
669
669
|
* @public
|
|
670
670
|
*/
|
|
671
|
-
MaxConcurrentRuns?: number;
|
|
671
|
+
MaxConcurrentRuns?: number | undefined;
|
|
672
672
|
}
|
|
673
673
|
/**
|
|
674
674
|
* @public
|
|
@@ -678,7 +678,7 @@ export interface UpdateWorkflowResponse {
|
|
|
678
678
|
* <p>The name of the workflow which was specified in input.</p>
|
|
679
679
|
* @public
|
|
680
680
|
*/
|
|
681
|
-
Name?: string;
|
|
681
|
+
Name?: string | undefined;
|
|
682
682
|
}
|
|
683
683
|
/**
|
|
684
684
|
* <p>Specifies the mapping of data property keys.</p>
|
|
@@ -689,27 +689,27 @@ export interface Mapping {
|
|
|
689
689
|
* <p>After the apply mapping, what the name of the column should be. Can be the same as <code>FromPath</code>.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
ToKey?: string;
|
|
692
|
+
ToKey?: string | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>The table or column to be modified.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
FromPath?: string[];
|
|
697
|
+
FromPath?: string[] | undefined;
|
|
698
698
|
/**
|
|
699
699
|
* <p>The type of the data to be modified.</p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
FromType?: string;
|
|
702
|
+
FromType?: string | undefined;
|
|
703
703
|
/**
|
|
704
704
|
* <p>The data type that the data is to be modified to.</p>
|
|
705
705
|
* @public
|
|
706
706
|
*/
|
|
707
|
-
ToType?: string;
|
|
707
|
+
ToType?: string | undefined;
|
|
708
708
|
/**
|
|
709
709
|
* <p>If true, then the column is removed.</p>
|
|
710
710
|
* @public
|
|
711
711
|
*/
|
|
712
|
-
Dropped?: boolean;
|
|
712
|
+
Dropped?: boolean | undefined;
|
|
713
713
|
/**
|
|
714
714
|
* <p>Only applicable to nested data structures. If you want to change the parent structure, but also one of its children, you can fill out this data strucutre. It is also <code>Mapping</code>, but its <code>FromPath</code> will be the parent's <code>FromPath</code> plus the <code>FromPath</code> from this structure.</p>
|
|
715
715
|
* <p>For the children part, suppose you have the structure:</p>
|
|
@@ -744,7 +744,7 @@ export interface Mapping {
|
|
|
744
744
|
* </p>
|
|
745
745
|
* @public
|
|
746
746
|
*/
|
|
747
|
-
Children?: Mapping[];
|
|
747
|
+
Children?: Mapping[] | undefined;
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
* <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
|
|
@@ -776,12 +776,12 @@ export interface StatusDetails {
|
|
|
776
776
|
* <p>A <code>Table</code> object representing the requested changes.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
RequestedChange?: Table;
|
|
779
|
+
RequestedChange?: Table | undefined;
|
|
780
780
|
/**
|
|
781
781
|
* <p>A list of <code>ViewValidation</code> objects that contain information for an analytical engine to validate a view.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
ViewValidations?: ViewValidation[];
|
|
784
|
+
ViewValidations?: ViewValidation[] | undefined;
|
|
785
785
|
}
|
|
786
786
|
/**
|
|
787
787
|
* <p>Represents a collection of related data organized in columns and rows.</p>
|
|
@@ -799,49 +799,49 @@ export interface Table {
|
|
|
799
799
|
* For Hive compatibility, this must be all lowercase.</p>
|
|
800
800
|
* @public
|
|
801
801
|
*/
|
|
802
|
-
DatabaseName?: string;
|
|
802
|
+
DatabaseName?: string | undefined;
|
|
803
803
|
/**
|
|
804
804
|
* <p>A description of the table.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
Description?: string;
|
|
807
|
+
Description?: string | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* <p>The owner of the table.</p>
|
|
810
810
|
* @public
|
|
811
811
|
*/
|
|
812
|
-
Owner?: string;
|
|
812
|
+
Owner?: string | undefined;
|
|
813
813
|
/**
|
|
814
814
|
* <p>The time when the table definition was created in the Data Catalog.</p>
|
|
815
815
|
* @public
|
|
816
816
|
*/
|
|
817
|
-
CreateTime?: Date;
|
|
817
|
+
CreateTime?: Date | undefined;
|
|
818
818
|
/**
|
|
819
819
|
* <p>The last time that the table was updated.</p>
|
|
820
820
|
* @public
|
|
821
821
|
*/
|
|
822
|
-
UpdateTime?: Date;
|
|
822
|
+
UpdateTime?: Date | undefined;
|
|
823
823
|
/**
|
|
824
824
|
* <p>The last time that the table was accessed. This is usually taken from HDFS, and might not
|
|
825
825
|
* be reliable.</p>
|
|
826
826
|
* @public
|
|
827
827
|
*/
|
|
828
|
-
LastAccessTime?: Date;
|
|
828
|
+
LastAccessTime?: Date | undefined;
|
|
829
829
|
/**
|
|
830
830
|
* <p>The last time that column statistics were computed for this table.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
LastAnalyzedTime?: Date;
|
|
833
|
+
LastAnalyzedTime?: Date | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* <p>The retention time for this table.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
Retention?: number;
|
|
838
|
+
Retention?: number | undefined;
|
|
839
839
|
/**
|
|
840
840
|
* <p>A storage descriptor containing information about the physical storage
|
|
841
841
|
* of this table.</p>
|
|
842
842
|
* @public
|
|
843
843
|
*/
|
|
844
|
-
StorageDescriptor?: StorageDescriptor;
|
|
844
|
+
StorageDescriptor?: StorageDescriptor | undefined;
|
|
845
845
|
/**
|
|
846
846
|
* <p>A list of columns by which the table is partitioned. Only primitive
|
|
847
847
|
* types are supported as partition keys.</p>
|
|
@@ -853,18 +853,18 @@ export interface Table {
|
|
|
853
853
|
* </p>
|
|
854
854
|
* @public
|
|
855
855
|
*/
|
|
856
|
-
PartitionKeys?: Column[];
|
|
856
|
+
PartitionKeys?: Column[] | undefined;
|
|
857
857
|
/**
|
|
858
858
|
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.
|
|
859
859
|
* If the table is a <code>VIRTUAL_VIEW</code>, certain Athena configuration encoded in base64.</p>
|
|
860
860
|
* @public
|
|
861
861
|
*/
|
|
862
|
-
ViewOriginalText?: string;
|
|
862
|
+
ViewOriginalText?: string | undefined;
|
|
863
863
|
/**
|
|
864
864
|
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
|
|
865
865
|
* @public
|
|
866
866
|
*/
|
|
867
|
-
ViewExpandedText?: string;
|
|
867
|
+
ViewExpandedText?: string | undefined;
|
|
868
868
|
/**
|
|
869
869
|
* <p>The type of this table.
|
|
870
870
|
* Glue will create tables with the <code>EXTERNAL_TABLE</code> type.
|
|
@@ -884,57 +884,57 @@ export interface Table {
|
|
|
884
884
|
* </dl>
|
|
885
885
|
* @public
|
|
886
886
|
*/
|
|
887
|
-
TableType?: string;
|
|
887
|
+
TableType?: string | undefined;
|
|
888
888
|
/**
|
|
889
889
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
890
890
|
* @public
|
|
891
891
|
*/
|
|
892
|
-
Parameters?: Record<string, string
|
|
892
|
+
Parameters?: Record<string, string> | undefined;
|
|
893
893
|
/**
|
|
894
894
|
* <p>The person or entity who created the table.</p>
|
|
895
895
|
* @public
|
|
896
896
|
*/
|
|
897
|
-
CreatedBy?: string;
|
|
897
|
+
CreatedBy?: string | undefined;
|
|
898
898
|
/**
|
|
899
899
|
* <p>Indicates whether the table has been registered with Lake Formation.</p>
|
|
900
900
|
* @public
|
|
901
901
|
*/
|
|
902
|
-
IsRegisteredWithLakeFormation?: boolean;
|
|
902
|
+
IsRegisteredWithLakeFormation?: boolean | undefined;
|
|
903
903
|
/**
|
|
904
904
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for resource linking.</p>
|
|
905
905
|
* @public
|
|
906
906
|
*/
|
|
907
|
-
TargetTable?: TableIdentifier;
|
|
907
|
+
TargetTable?: TableIdentifier | undefined;
|
|
908
908
|
/**
|
|
909
909
|
* <p>The ID of the Data Catalog in which the table resides.</p>
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
CatalogId?: string;
|
|
912
|
+
CatalogId?: string | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* <p>The ID of the table version.</p>
|
|
915
915
|
* @public
|
|
916
916
|
*/
|
|
917
|
-
VersionId?: string;
|
|
917
|
+
VersionId?: string | undefined;
|
|
918
918
|
/**
|
|
919
919
|
* <p>A <code>FederatedTable</code> structure that references an entity outside the Glue Data Catalog.</p>
|
|
920
920
|
* @public
|
|
921
921
|
*/
|
|
922
|
-
FederatedTable?: FederatedTable;
|
|
922
|
+
FederatedTable?: FederatedTable | undefined;
|
|
923
923
|
/**
|
|
924
924
|
* <p>A structure that contains all the information that defines the view, including the dialect or dialects for the view, and the query.</p>
|
|
925
925
|
* @public
|
|
926
926
|
*/
|
|
927
|
-
ViewDefinition?: ViewDefinition;
|
|
927
|
+
ViewDefinition?: ViewDefinition | undefined;
|
|
928
928
|
/**
|
|
929
929
|
* <p>Specifies whether the view supports the SQL dialects of one or more different query engines and can therefore be read by those engines.</p>
|
|
930
930
|
* @public
|
|
931
931
|
*/
|
|
932
|
-
IsMultiDialectView?: boolean;
|
|
932
|
+
IsMultiDialectView?: boolean | undefined;
|
|
933
933
|
/**
|
|
934
934
|
* <p>A structure containing information about the state of an asynchronous change to a table.</p>
|
|
935
935
|
* @public
|
|
936
936
|
*/
|
|
937
|
-
Status?: TableStatus;
|
|
937
|
+
Status?: TableStatus | undefined;
|
|
938
938
|
}
|
|
939
939
|
/**
|
|
940
940
|
* <p>A structure containing information about the state of an asynchronous change to a table.</p>
|
|
@@ -945,42 +945,42 @@ export interface TableStatus {
|
|
|
945
945
|
* <p>The ARN of the user who requested the asynchronous change.</p>
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
|
-
RequestedBy?: string;
|
|
948
|
+
RequestedBy?: string | undefined;
|
|
949
949
|
/**
|
|
950
950
|
* <p>The ARN of the user to last manually alter the asynchronous change (requesting cancellation, etc).</p>
|
|
951
951
|
* @public
|
|
952
952
|
*/
|
|
953
|
-
UpdatedBy?: string;
|
|
953
|
+
UpdatedBy?: string | undefined;
|
|
954
954
|
/**
|
|
955
955
|
* <p>An ISO 8601 formatted date string indicating the time that the change was initiated.</p>
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
RequestTime?: Date;
|
|
958
|
+
RequestTime?: Date | undefined;
|
|
959
959
|
/**
|
|
960
960
|
* <p>An ISO 8601 formatted date string indicating the time that the state was last updated.</p>
|
|
961
961
|
* @public
|
|
962
962
|
*/
|
|
963
|
-
UpdateTime?: Date;
|
|
963
|
+
UpdateTime?: Date | undefined;
|
|
964
964
|
/**
|
|
965
965
|
* <p>Indicates which action was called on the table, currently only <code>CREATE</code> or <code>UPDATE</code>.</p>
|
|
966
966
|
* @public
|
|
967
967
|
*/
|
|
968
|
-
Action?: ResourceAction;
|
|
968
|
+
Action?: ResourceAction | undefined;
|
|
969
969
|
/**
|
|
970
970
|
* <p>A generic status for the change in progress, such as QUEUED, IN_PROGRESS, SUCCESS, or FAILED.</p>
|
|
971
971
|
* @public
|
|
972
972
|
*/
|
|
973
|
-
State?: ResourceState;
|
|
973
|
+
State?: ResourceState | undefined;
|
|
974
974
|
/**
|
|
975
975
|
* <p>An error that will only appear when the state is "FAILED". This is a parent level exception message, there may be different <code>Error</code>s for each dialect.</p>
|
|
976
976
|
* @public
|
|
977
977
|
*/
|
|
978
|
-
Error?: ErrorDetail;
|
|
978
|
+
Error?: ErrorDetail | undefined;
|
|
979
979
|
/**
|
|
980
980
|
* <p>A <code>StatusDetails</code> object with information about the requested change.</p>
|
|
981
981
|
* @public
|
|
982
982
|
*/
|
|
983
|
-
Details?: StatusDetails;
|
|
983
|
+
Details?: StatusDetails | undefined;
|
|
984
984
|
}
|
|
985
985
|
/**
|
|
986
986
|
* <p>
|
|
@@ -992,358 +992,358 @@ export interface CodeGenConfigurationNode {
|
|
|
992
992
|
* <p>Specifies a connector to an Amazon Athena data source.</p>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
AthenaConnectorSource?: AthenaConnectorSource;
|
|
995
|
+
AthenaConnectorSource?: AthenaConnectorSource | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* <p>Specifies a connector to a JDBC data source.</p>
|
|
998
998
|
* @public
|
|
999
999
|
*/
|
|
1000
|
-
JDBCConnectorSource?: JDBCConnectorSource;
|
|
1000
|
+
JDBCConnectorSource?: JDBCConnectorSource | undefined;
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>Specifies a connector to an Apache Spark data source.</p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
SparkConnectorSource?: SparkConnectorSource;
|
|
1005
|
+
SparkConnectorSource?: SparkConnectorSource | undefined;
|
|
1006
1006
|
/**
|
|
1007
1007
|
* <p>Specifies a data store in the Glue Data Catalog.</p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
CatalogSource?: CatalogSource;
|
|
1010
|
+
CatalogSource?: CatalogSource | undefined;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* <p>Specifies an Amazon Redshift data store.</p>
|
|
1013
1013
|
* @public
|
|
1014
1014
|
*/
|
|
1015
|
-
RedshiftSource?: RedshiftSource;
|
|
1015
|
+
RedshiftSource?: RedshiftSource | undefined;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* <p>Specifies an Amazon S3 data store in the Glue Data Catalog.</p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
S3CatalogSource?: S3CatalogSource;
|
|
1020
|
+
S3CatalogSource?: S3CatalogSource | undefined;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>Specifies a command-separated value (CSV) data store stored in Amazon S3.</p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
S3CsvSource?: S3CsvSource;
|
|
1025
|
+
S3CsvSource?: S3CsvSource | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>Specifies a JSON data store stored in Amazon S3.</p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
S3JsonSource?: S3JsonSource;
|
|
1030
|
+
S3JsonSource?: S3JsonSource | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* <p>Specifies an Apache Parquet data store stored in Amazon S3.</p>
|
|
1033
1033
|
* @public
|
|
1034
1034
|
*/
|
|
1035
|
-
S3ParquetSource?: S3ParquetSource;
|
|
1035
|
+
S3ParquetSource?: S3ParquetSource | undefined;
|
|
1036
1036
|
/**
|
|
1037
1037
|
* <p>Specifies a relational catalog data store in the Glue Data Catalog.</p>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
RelationalCatalogSource?: RelationalCatalogSource;
|
|
1040
|
+
RelationalCatalogSource?: RelationalCatalogSource | undefined;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>Specifies a DynamoDBC Catalog data store in the Glue Data Catalog.</p>
|
|
1043
1043
|
* @public
|
|
1044
1044
|
*/
|
|
1045
|
-
DynamoDBCatalogSource?: DynamoDBCatalogSource;
|
|
1045
|
+
DynamoDBCatalogSource?: DynamoDBCatalogSource | undefined;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
|
|
1048
1048
|
* @public
|
|
1049
1049
|
*/
|
|
1050
|
-
JDBCConnectorTarget?: JDBCConnectorTarget;
|
|
1050
|
+
JDBCConnectorTarget?: JDBCConnectorTarget | undefined;
|
|
1051
1051
|
/**
|
|
1052
1052
|
* <p>Specifies a target that uses an Apache Spark connector.</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
SparkConnectorTarget?: SparkConnectorTarget;
|
|
1055
|
+
SparkConnectorTarget?: SparkConnectorTarget | undefined;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* <p>Specifies a target that uses a Glue Data Catalog table.</p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
CatalogTarget?: BasicCatalogTarget;
|
|
1060
|
+
CatalogTarget?: BasicCatalogTarget | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>Specifies a target that uses Amazon Redshift.</p>
|
|
1063
1063
|
* @public
|
|
1064
1064
|
*/
|
|
1065
|
-
RedshiftTarget?: RedshiftTarget;
|
|
1065
|
+
RedshiftTarget?: RedshiftTarget | undefined;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* <p>Specifies a data target that writes to Amazon S3 using the Glue Data Catalog.</p>
|
|
1068
1068
|
* @public
|
|
1069
1069
|
*/
|
|
1070
|
-
S3CatalogTarget?: S3CatalogTarget;
|
|
1070
|
+
S3CatalogTarget?: S3CatalogTarget | undefined;
|
|
1071
1071
|
/**
|
|
1072
1072
|
* <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
|
|
1073
1073
|
* @public
|
|
1074
1074
|
*/
|
|
1075
|
-
S3GlueParquetTarget?: S3GlueParquetTarget;
|
|
1075
|
+
S3GlueParquetTarget?: S3GlueParquetTarget | undefined;
|
|
1076
1076
|
/**
|
|
1077
1077
|
* <p>Specifies a data target that writes to Amazon S3.</p>
|
|
1078
1078
|
* @public
|
|
1079
1079
|
*/
|
|
1080
|
-
S3DirectTarget?: S3DirectTarget;
|
|
1080
|
+
S3DirectTarget?: S3DirectTarget | undefined;
|
|
1081
1081
|
/**
|
|
1082
1082
|
* <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
ApplyMapping?: ApplyMapping;
|
|
1085
|
+
ApplyMapping?: ApplyMapping | undefined;
|
|
1086
1086
|
/**
|
|
1087
1087
|
* <p>Specifies a transform that chooses the data property keys that you want to keep.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
SelectFields?: SelectFields;
|
|
1090
|
+
SelectFields?: SelectFields | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>Specifies a transform that chooses the data property keys that you want to drop.</p>
|
|
1093
1093
|
* @public
|
|
1094
1094
|
*/
|
|
1095
|
-
DropFields?: DropFields;
|
|
1095
|
+
DropFields?: DropFields | undefined;
|
|
1096
1096
|
/**
|
|
1097
1097
|
* <p>Specifies a transform that renames a single data property key.</p>
|
|
1098
1098
|
* @public
|
|
1099
1099
|
*/
|
|
1100
|
-
RenameField?: RenameField;
|
|
1100
|
+
RenameField?: RenameField | undefined;
|
|
1101
1101
|
/**
|
|
1102
1102
|
* <p>Specifies a transform that writes samples of the data to an Amazon S3 bucket.</p>
|
|
1103
1103
|
* @public
|
|
1104
1104
|
*/
|
|
1105
|
-
Spigot?: Spigot;
|
|
1105
|
+
Spigot?: Spigot | undefined;
|
|
1106
1106
|
/**
|
|
1107
1107
|
* <p>Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.</p>
|
|
1108
1108
|
* @public
|
|
1109
1109
|
*/
|
|
1110
|
-
Join?: Join;
|
|
1110
|
+
Join?: Join | undefined;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* <p>Specifies a transform that splits data property keys into two <code>DynamicFrames</code>. The output is a collection of <code>DynamicFrames</code>: one with selected data property keys, and one with the remaining data property keys.</p>
|
|
1113
1113
|
* @public
|
|
1114
1114
|
*/
|
|
1115
|
-
SplitFields?: SplitFields;
|
|
1115
|
+
SplitFields?: SplitFields | undefined;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* <p>Specifies a transform that chooses one <code>DynamicFrame</code> from a collection of <code>DynamicFrames</code>. The output is the selected <code>DynamicFrame</code>
|
|
1118
1118
|
* </p>
|
|
1119
1119
|
* @public
|
|
1120
1120
|
*/
|
|
1121
|
-
SelectFromCollection?: SelectFromCollection;
|
|
1121
|
+
SelectFromCollection?: SelectFromCollection | undefined;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* <p>Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
FillMissingValues?: FillMissingValues;
|
|
1126
|
+
FillMissingValues?: FillMissingValues | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* <p>Specifies a transform that splits a dataset into two, based on a filter condition.</p>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
Filter?: Filter;
|
|
1131
|
+
Filter?: Filter | undefined;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* <p>Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.</p>
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
CustomCode?: CustomCode;
|
|
1136
|
+
CustomCode?: CustomCode | undefined;
|
|
1137
1137
|
/**
|
|
1138
1138
|
* <p>Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single <code>DynamicFrame</code>.</p>
|
|
1139
1139
|
* @public
|
|
1140
1140
|
*/
|
|
1141
|
-
SparkSQL?: SparkSQL;
|
|
1141
|
+
SparkSQL?: SparkSQL | undefined;
|
|
1142
1142
|
/**
|
|
1143
1143
|
* <p>Specifies a direct Amazon Kinesis data source.</p>
|
|
1144
1144
|
* @public
|
|
1145
1145
|
*/
|
|
1146
|
-
DirectKinesisSource?: DirectKinesisSource;
|
|
1146
|
+
DirectKinesisSource?: DirectKinesisSource | undefined;
|
|
1147
1147
|
/**
|
|
1148
1148
|
* <p>Specifies an Apache Kafka data store.</p>
|
|
1149
1149
|
* @public
|
|
1150
1150
|
*/
|
|
1151
|
-
DirectKafkaSource?: DirectKafkaSource;
|
|
1151
|
+
DirectKafkaSource?: DirectKafkaSource | undefined;
|
|
1152
1152
|
/**
|
|
1153
1153
|
* <p>Specifies a Kinesis data source in the Glue Data Catalog.</p>
|
|
1154
1154
|
* @public
|
|
1155
1155
|
*/
|
|
1156
|
-
CatalogKinesisSource?: CatalogKinesisSource;
|
|
1156
|
+
CatalogKinesisSource?: CatalogKinesisSource | undefined;
|
|
1157
1157
|
/**
|
|
1158
1158
|
* <p>Specifies an Apache Kafka data store in the Data Catalog.</p>
|
|
1159
1159
|
* @public
|
|
1160
1160
|
*/
|
|
1161
|
-
CatalogKafkaSource?: CatalogKafkaSource;
|
|
1161
|
+
CatalogKafkaSource?: CatalogKafkaSource | undefined;
|
|
1162
1162
|
/**
|
|
1163
1163
|
* <p>Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.</p>
|
|
1164
1164
|
* @public
|
|
1165
1165
|
*/
|
|
1166
|
-
DropNullFields?: DropNullFields;
|
|
1166
|
+
DropNullFields?: DropNullFields | undefined;
|
|
1167
1167
|
/**
|
|
1168
1168
|
* <p>Specifies a transform that merges a <code>DynamicFrame</code> with a staging <code>DynamicFrame</code> based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated. </p>
|
|
1169
1169
|
* @public
|
|
1170
1170
|
*/
|
|
1171
|
-
Merge?: Merge;
|
|
1171
|
+
Merge?: Merge | undefined;
|
|
1172
1172
|
/**
|
|
1173
1173
|
* <p>Specifies a transform that combines the rows from two or more datasets into a single result.</p>
|
|
1174
1174
|
* @public
|
|
1175
1175
|
*/
|
|
1176
|
-
Union?: Union;
|
|
1176
|
+
Union?: Union | undefined;
|
|
1177
1177
|
/**
|
|
1178
1178
|
* <p>Specifies a transform that identifies, removes or masks PII data.</p>
|
|
1179
1179
|
* @public
|
|
1180
1180
|
*/
|
|
1181
|
-
PIIDetection?: PIIDetection;
|
|
1181
|
+
PIIDetection?: PIIDetection | undefined;
|
|
1182
1182
|
/**
|
|
1183
1183
|
* <p>Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.</p>
|
|
1184
1184
|
* @public
|
|
1185
1185
|
*/
|
|
1186
|
-
Aggregate?: Aggregate;
|
|
1186
|
+
Aggregate?: Aggregate | undefined;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>Specifies a transform that removes rows of repeating data from a data set.</p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
DropDuplicates?: DropDuplicates;
|
|
1191
|
+
DropDuplicates?: DropDuplicates | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p>Specifies a data target that writes to a goverened catalog.</p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
GovernedCatalogTarget?: GovernedCatalogTarget;
|
|
1196
|
+
GovernedCatalogTarget?: GovernedCatalogTarget | undefined;
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>Specifies a data source in a goverened Data Catalog.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
GovernedCatalogSource?: GovernedCatalogSource;
|
|
1201
|
+
GovernedCatalogSource?: GovernedCatalogSource | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>Specifies a Microsoft SQL server data source in the Glue Data Catalog.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
MicrosoftSQLServerCatalogSource?: MicrosoftSQLServerCatalogSource;
|
|
1206
|
+
MicrosoftSQLServerCatalogSource?: MicrosoftSQLServerCatalogSource | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>Specifies a MySQL data source in the Glue Data Catalog.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
MySQLCatalogSource?: MySQLCatalogSource;
|
|
1211
|
+
MySQLCatalogSource?: MySQLCatalogSource | undefined;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* <p>Specifies an Oracle data source in the Glue Data Catalog.</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
OracleSQLCatalogSource?: OracleSQLCatalogSource;
|
|
1216
|
+
OracleSQLCatalogSource?: OracleSQLCatalogSource | undefined;
|
|
1217
1217
|
/**
|
|
1218
1218
|
* <p>Specifies a PostgresSQL data source in the Glue Data Catalog.</p>
|
|
1219
1219
|
* @public
|
|
1220
1220
|
*/
|
|
1221
|
-
PostgreSQLCatalogSource?: PostgreSQLCatalogSource;
|
|
1221
|
+
PostgreSQLCatalogSource?: PostgreSQLCatalogSource | undefined;
|
|
1222
1222
|
/**
|
|
1223
1223
|
* <p>Specifies a target that uses Microsoft SQL.</p>
|
|
1224
1224
|
* @public
|
|
1225
1225
|
*/
|
|
1226
|
-
MicrosoftSQLServerCatalogTarget?: MicrosoftSQLServerCatalogTarget;
|
|
1226
|
+
MicrosoftSQLServerCatalogTarget?: MicrosoftSQLServerCatalogTarget | undefined;
|
|
1227
1227
|
/**
|
|
1228
1228
|
* <p>Specifies a target that uses MySQL.</p>
|
|
1229
1229
|
* @public
|
|
1230
1230
|
*/
|
|
1231
|
-
MySQLCatalogTarget?: MySQLCatalogTarget;
|
|
1231
|
+
MySQLCatalogTarget?: MySQLCatalogTarget | undefined;
|
|
1232
1232
|
/**
|
|
1233
1233
|
* <p>Specifies a target that uses Oracle SQL.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
OracleSQLCatalogTarget?: OracleSQLCatalogTarget;
|
|
1236
|
+
OracleSQLCatalogTarget?: OracleSQLCatalogTarget | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>Specifies a target that uses Postgres SQL.</p>
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
|
-
PostgreSQLCatalogTarget?: PostgreSQLCatalogTarget;
|
|
1241
|
+
PostgreSQLCatalogTarget?: PostgreSQLCatalogTarget | undefined;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* <p>Specifies a custom visual transform created by a user.</p>
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
|
-
DynamicTransform?: DynamicTransform;
|
|
1246
|
+
DynamicTransform?: DynamicTransform | undefined;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>Specifies your data quality evaluation criteria.</p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
EvaluateDataQuality?: EvaluateDataQuality;
|
|
1251
|
+
EvaluateDataQuality?: EvaluateDataQuality | undefined;
|
|
1252
1252
|
/**
|
|
1253
1253
|
* <p>Specifies a Hudi data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
|
|
1254
1254
|
* @public
|
|
1255
1255
|
*/
|
|
1256
|
-
S3CatalogHudiSource?: S3CatalogHudiSource;
|
|
1256
|
+
S3CatalogHudiSource?: S3CatalogHudiSource | undefined;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* <p>Specifies a Hudi data source that is registered in the Glue Data Catalog.</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
CatalogHudiSource?: CatalogHudiSource;
|
|
1261
|
+
CatalogHudiSource?: CatalogHudiSource | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* <p>Specifies a Hudi data source stored in Amazon S3.</p>
|
|
1264
1264
|
* @public
|
|
1265
1265
|
*/
|
|
1266
|
-
S3HudiSource?: S3HudiSource;
|
|
1266
|
+
S3HudiSource?: S3HudiSource | undefined;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* <p>Specifies a target that writes to a Hudi data source in the Glue Data Catalog.</p>
|
|
1269
1269
|
* @public
|
|
1270
1270
|
*/
|
|
1271
|
-
S3HudiCatalogTarget?: S3HudiCatalogTarget;
|
|
1271
|
+
S3HudiCatalogTarget?: S3HudiCatalogTarget | undefined;
|
|
1272
1272
|
/**
|
|
1273
1273
|
* <p>Specifies a target that writes to a Hudi data source in Amazon S3.</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
S3HudiDirectTarget?: S3HudiDirectTarget;
|
|
1276
|
+
S3HudiDirectTarget?: S3HudiDirectTarget | undefined;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p>Specifies the direct JDBC source connection.</p>
|
|
1279
1279
|
* @public
|
|
1280
1280
|
*/
|
|
1281
|
-
DirectJDBCSource?: DirectJDBCSource;
|
|
1281
|
+
DirectJDBCSource?: DirectJDBCSource | undefined;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
|
|
1284
1284
|
* @public
|
|
1285
1285
|
*/
|
|
1286
|
-
S3CatalogDeltaSource?: S3CatalogDeltaSource;
|
|
1286
|
+
S3CatalogDeltaSource?: S3CatalogDeltaSource | undefined;
|
|
1287
1287
|
/**
|
|
1288
1288
|
* <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog.</p>
|
|
1289
1289
|
* @public
|
|
1290
1290
|
*/
|
|
1291
|
-
CatalogDeltaSource?: CatalogDeltaSource;
|
|
1291
|
+
CatalogDeltaSource?: CatalogDeltaSource | undefined;
|
|
1292
1292
|
/**
|
|
1293
1293
|
* <p>Specifies a Delta Lake data source stored in Amazon S3.</p>
|
|
1294
1294
|
* @public
|
|
1295
1295
|
*/
|
|
1296
|
-
S3DeltaSource?: S3DeltaSource;
|
|
1296
|
+
S3DeltaSource?: S3DeltaSource | undefined;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* <p>Specifies a target that writes to a Delta Lake data source in the Glue Data Catalog.</p>
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
S3DeltaCatalogTarget?: S3DeltaCatalogTarget;
|
|
1301
|
+
S3DeltaCatalogTarget?: S3DeltaCatalogTarget | undefined;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* <p>Specifies a target that writes to a Delta Lake data source in Amazon S3.</p>
|
|
1304
1304
|
* @public
|
|
1305
1305
|
*/
|
|
1306
|
-
S3DeltaDirectTarget?: S3DeltaDirectTarget;
|
|
1306
|
+
S3DeltaDirectTarget?: S3DeltaDirectTarget | undefined;
|
|
1307
1307
|
/**
|
|
1308
1308
|
* <p>Specifies a target that writes to a data source in Amazon Redshift.</p>
|
|
1309
1309
|
* @public
|
|
1310
1310
|
*/
|
|
1311
|
-
AmazonRedshiftSource?: AmazonRedshiftSource;
|
|
1311
|
+
AmazonRedshiftSource?: AmazonRedshiftSource | undefined;
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p>Specifies a target that writes to a data target in Amazon Redshift.</p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
AmazonRedshiftTarget?: AmazonRedshiftTarget;
|
|
1316
|
+
AmazonRedshiftTarget?: AmazonRedshiftTarget | undefined;
|
|
1317
1317
|
/**
|
|
1318
1318
|
* <p>Specifies your data quality evaluation criteria. Allows multiple input data and returns a collection of Dynamic Frames.</p>
|
|
1319
1319
|
* @public
|
|
1320
1320
|
*/
|
|
1321
|
-
EvaluateDataQualityMultiFrame?: EvaluateDataQualityMultiFrame;
|
|
1321
|
+
EvaluateDataQualityMultiFrame?: EvaluateDataQualityMultiFrame | undefined;
|
|
1322
1322
|
/**
|
|
1323
1323
|
* <p>Specifies a Glue DataBrew recipe node.</p>
|
|
1324
1324
|
* @public
|
|
1325
1325
|
*/
|
|
1326
|
-
Recipe?: Recipe;
|
|
1326
|
+
Recipe?: Recipe | undefined;
|
|
1327
1327
|
/**
|
|
1328
1328
|
* <p>Specifies a Snowflake data source.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
SnowflakeSource?: SnowflakeSource;
|
|
1331
|
+
SnowflakeSource?: SnowflakeSource | undefined;
|
|
1332
1332
|
/**
|
|
1333
1333
|
* <p>Specifies a target that writes to a Snowflake data source.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
SnowflakeTarget?: SnowflakeTarget;
|
|
1336
|
+
SnowflakeTarget?: SnowflakeTarget | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>Specifies a source generated with standard connection options.</p>
|
|
1339
1339
|
* @public
|
|
1340
1340
|
*/
|
|
1341
|
-
ConnectorDataSource?: ConnectorDataSource;
|
|
1341
|
+
ConnectorDataSource?: ConnectorDataSource | undefined;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* <p>Specifies a target generated with standard connection options.</p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
ConnectorDataTarget?: ConnectorDataTarget;
|
|
1346
|
+
ConnectorDataTarget?: ConnectorDataTarget | undefined;
|
|
1347
1347
|
}
|
|
1348
1348
|
/**
|
|
1349
1349
|
* @public
|
|
@@ -1353,7 +1353,7 @@ export interface GetTableResponse {
|
|
|
1353
1353
|
* <p>The <code>Table</code> object that defines the specified table.</p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
Table?: Table;
|
|
1356
|
+
Table?: Table | undefined;
|
|
1357
1357
|
}
|
|
1358
1358
|
/**
|
|
1359
1359
|
* @public
|
|
@@ -1363,53 +1363,53 @@ export interface GetUnfilteredTableMetadataResponse {
|
|
|
1363
1363
|
* <p>A Table object containing the table metadata.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
Table?: Table;
|
|
1366
|
+
Table?: Table | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>A list of column names that the user has been granted access to.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
AuthorizedColumns?: string[];
|
|
1371
|
+
AuthorizedColumns?: string[] | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p>A Boolean value that indicates whether the partition location is registered
|
|
1374
1374
|
* with Lake Formation.</p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
IsRegisteredWithLakeFormation?: boolean;
|
|
1377
|
+
IsRegisteredWithLakeFormation?: boolean | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* <p>A list of column row filters.</p>
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
CellFilters?: ColumnRowFilter[];
|
|
1382
|
+
CellFilters?: ColumnRowFilter[] | undefined;
|
|
1383
1383
|
/**
|
|
1384
1384
|
* <p>A cryptographically generated query identifier generated by Glue or Lake Formation.</p>
|
|
1385
1385
|
* @public
|
|
1386
1386
|
*/
|
|
1387
|
-
QueryAuthorizationId?: string;
|
|
1387
|
+
QueryAuthorizationId?: string | undefined;
|
|
1388
1388
|
/**
|
|
1389
1389
|
* <p>Specifies whether the view supports the SQL dialects of one or more different query engines and can therefore be read by those engines.</p>
|
|
1390
1390
|
* @public
|
|
1391
1391
|
*/
|
|
1392
|
-
IsMultiDialectView?: boolean;
|
|
1392
|
+
IsMultiDialectView?: boolean | undefined;
|
|
1393
1393
|
/**
|
|
1394
1394
|
* <p>The resource ARN of the parent resource extracted from the request.</p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
ResourceArn?: string;
|
|
1397
|
+
ResourceArn?: string | undefined;
|
|
1398
1398
|
/**
|
|
1399
1399
|
* <p>A flag that instructs the engine not to push user-provided operations into the logical plan of the view during query planning. However, if set this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.</p>
|
|
1400
1400
|
* @public
|
|
1401
1401
|
*/
|
|
1402
|
-
IsProtected?: boolean;
|
|
1402
|
+
IsProtected?: boolean | undefined;
|
|
1403
1403
|
/**
|
|
1404
1404
|
* <p>The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.</p>
|
|
1405
1405
|
* @public
|
|
1406
1406
|
*/
|
|
1407
|
-
Permissions?: Permission[];
|
|
1407
|
+
Permissions?: Permission[] | undefined;
|
|
1408
1408
|
/**
|
|
1409
1409
|
* <p>The filter that applies to the table. For example when applying the filter in SQL, it would go in the <code>WHERE</code> clause and can be evaluated by using an <code>AND</code> operator with any other predicates applied by the user querying the table.</p>
|
|
1410
1410
|
* @public
|
|
1411
1411
|
*/
|
|
1412
|
-
RowFilter?: string;
|
|
1412
|
+
RowFilter?: string | undefined;
|
|
1413
1413
|
}
|
|
1414
1414
|
/**
|
|
1415
1415
|
* <p>Specifies a version of a table.</p>
|
|
@@ -1420,12 +1420,12 @@ export interface TableVersion {
|
|
|
1420
1420
|
* <p>The table in question.</p>
|
|
1421
1421
|
* @public
|
|
1422
1422
|
*/
|
|
1423
|
-
Table?: Table;
|
|
1423
|
+
Table?: Table | undefined;
|
|
1424
1424
|
/**
|
|
1425
1425
|
* <p>The ID value that identifies this table version. A <code>VersionId</code> is a string representation of an integer. Each version is incremented by 1.</p>
|
|
1426
1426
|
* @public
|
|
1427
1427
|
*/
|
|
1428
|
-
VersionId?: string;
|
|
1428
|
+
VersionId?: string | undefined;
|
|
1429
1429
|
}
|
|
1430
1430
|
/**
|
|
1431
1431
|
* @public
|
|
@@ -1435,12 +1435,12 @@ export interface GetTablesResponse {
|
|
|
1435
1435
|
* <p>A list of the requested <code>Table</code> objects.</p>
|
|
1436
1436
|
* @public
|
|
1437
1437
|
*/
|
|
1438
|
-
TableList?: Table[];
|
|
1438
|
+
TableList?: Table[] | undefined;
|
|
1439
1439
|
/**
|
|
1440
1440
|
* <p>A continuation token, present if the current list segment is not the last.</p>
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
NextToken?: string;
|
|
1443
|
+
NextToken?: string | undefined;
|
|
1444
1444
|
}
|
|
1445
1445
|
/**
|
|
1446
1446
|
* @public
|
|
@@ -1450,7 +1450,7 @@ export interface GetTableVersionResponse {
|
|
|
1450
1450
|
* <p>The requested table version.</p>
|
|
1451
1451
|
* @public
|
|
1452
1452
|
*/
|
|
1453
|
-
TableVersion?: TableVersion;
|
|
1453
|
+
TableVersion?: TableVersion | undefined;
|
|
1454
1454
|
}
|
|
1455
1455
|
/**
|
|
1456
1456
|
* @public
|
|
@@ -1460,12 +1460,12 @@ export interface SearchTablesResponse {
|
|
|
1460
1460
|
* <p>A continuation token, present if the current list segment is not the last.</p>
|
|
1461
1461
|
* @public
|
|
1462
1462
|
*/
|
|
1463
|
-
NextToken?: string;
|
|
1463
|
+
NextToken?: string | undefined;
|
|
1464
1464
|
/**
|
|
1465
1465
|
* <p>A list of the requested <code>Table</code> objects. The <code>SearchTables</code> response returns only the tables that you have access to.</p>
|
|
1466
1466
|
* @public
|
|
1467
1467
|
*/
|
|
1468
|
-
TableList?: Table[];
|
|
1468
|
+
TableList?: Table[] | undefined;
|
|
1469
1469
|
}
|
|
1470
1470
|
/**
|
|
1471
1471
|
* @public
|
|
@@ -1495,24 +1495,24 @@ export interface CreateJobRequest {
|
|
|
1495
1495
|
* <p>When the <code>JobMode</code> field is missing or null, <code>SCRIPT</code> is assigned as the default value.</p>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
JobMode?: JobMode;
|
|
1498
|
+
JobMode?: JobMode | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p>Specifies whether job run queuing is enabled for the job runs for this job.</p>
|
|
1501
1501
|
* <p>A value of true means job run queuing is enabled for the job runs. If false or not populated, the job runs will not be considered for queueing.</p>
|
|
1502
1502
|
* <p>If this field does not match the value set in the job run, then the value from the job run field will be used.</p>
|
|
1503
1503
|
* @public
|
|
1504
1504
|
*/
|
|
1505
|
-
JobRunQueuingEnabled?: boolean;
|
|
1505
|
+
JobRunQueuingEnabled?: boolean | undefined;
|
|
1506
1506
|
/**
|
|
1507
1507
|
* <p>Description of the job being defined.</p>
|
|
1508
1508
|
* @public
|
|
1509
1509
|
*/
|
|
1510
|
-
Description?: string;
|
|
1510
|
+
Description?: string | undefined;
|
|
1511
1511
|
/**
|
|
1512
1512
|
* <p>This field is reserved for future use.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
LogUri?: string;
|
|
1515
|
+
LogUri?: string | undefined;
|
|
1516
1516
|
/**
|
|
1517
1517
|
* <p>The name or Amazon Resource Name (ARN) of the IAM role associated with this job.</p>
|
|
1518
1518
|
* @public
|
|
@@ -1523,7 +1523,7 @@ export interface CreateJobRequest {
|
|
|
1523
1523
|
* for this job.</p>
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
ExecutionProperty?: ExecutionProperty;
|
|
1526
|
+
ExecutionProperty?: ExecutionProperty | undefined;
|
|
1527
1527
|
/**
|
|
1528
1528
|
* <p>The <code>JobCommand</code> that runs this job.</p>
|
|
1529
1529
|
* @public
|
|
@@ -1544,23 +1544,23 @@ export interface CreateJobRequest {
|
|
|
1544
1544
|
* job parameters in Ray jobs</a> in the developer guide.</p>
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
DefaultArguments?: Record<string, string
|
|
1547
|
+
DefaultArguments?: Record<string, string> | undefined;
|
|
1548
1548
|
/**
|
|
1549
1549
|
* <p>Arguments for this job that are not overridden when providing job arguments
|
|
1550
1550
|
* in a job run, specified as name-value pairs.</p>
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
NonOverridableArguments?: Record<string, string
|
|
1553
|
+
NonOverridableArguments?: Record<string, string> | undefined;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* <p>The connections used for this job.</p>
|
|
1556
1556
|
* @public
|
|
1557
1557
|
*/
|
|
1558
|
-
Connections?: ConnectionsList;
|
|
1558
|
+
Connections?: ConnectionsList | undefined;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* <p>The maximum number of times to retry this job if it fails.</p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
MaxRetries?: number;
|
|
1563
|
+
MaxRetries?: number | undefined;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* @deprecated
|
|
1566
1566
|
*
|
|
@@ -1572,7 +1572,7 @@ export interface CreateJobRequest {
|
|
|
1572
1572
|
* page</a>.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
AllocatedCapacity?: number;
|
|
1575
|
+
AllocatedCapacity?: number | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p>The job timeout in minutes. This is the maximum time that a job run
|
|
1578
1578
|
* can consume resources before it is terminated and enters <code>TIMEOUT</code>
|
|
@@ -1580,7 +1580,7 @@ export interface CreateJobRequest {
|
|
|
1580
1580
|
* <p>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
1581
1581
|
* @public
|
|
1582
1582
|
*/
|
|
1583
|
-
Timeout?: number;
|
|
1583
|
+
Timeout?: number | undefined;
|
|
1584
1584
|
/**
|
|
1585
1585
|
* <p>For Glue version 1.0 or earlier jobs, using the standard worker type, the number of
|
|
1586
1586
|
* Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is
|
|
@@ -1606,23 +1606,23 @@ export interface CreateJobRequest {
|
|
|
1606
1606
|
* </ul>
|
|
1607
1607
|
* @public
|
|
1608
1608
|
*/
|
|
1609
|
-
MaxCapacity?: number;
|
|
1609
|
+
MaxCapacity?: number | undefined;
|
|
1610
1610
|
/**
|
|
1611
1611
|
* <p>The name of the <code>SecurityConfiguration</code> structure to be used with this
|
|
1612
1612
|
* job.</p>
|
|
1613
1613
|
* @public
|
|
1614
1614
|
*/
|
|
1615
|
-
SecurityConfiguration?: string;
|
|
1615
|
+
SecurityConfiguration?: string | undefined;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* <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>
|
|
1618
1618
|
* @public
|
|
1619
1619
|
*/
|
|
1620
|
-
Tags?: Record<string, string
|
|
1620
|
+
Tags?: Record<string, string> | undefined;
|
|
1621
1621
|
/**
|
|
1622
1622
|
* <p>Specifies configuration properties of a job notification.</p>
|
|
1623
1623
|
* @public
|
|
1624
1624
|
*/
|
|
1625
|
-
NotificationProperty?: NotificationProperty;
|
|
1625
|
+
NotificationProperty?: NotificationProperty | undefined;
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>In Spark jobs, <code>GlueVersion</code> determines the versions of Apache Spark and Python
|
|
1628
1628
|
* that Glue available in a job. The Python version indicates the version
|
|
@@ -1636,12 +1636,12 @@ export interface CreateJobRequest {
|
|
|
1636
1636
|
* <p>Jobs that are created without specifying a Glue version default to Glue 0.9.</p>
|
|
1637
1637
|
* @public
|
|
1638
1638
|
*/
|
|
1639
|
-
GlueVersion?: string;
|
|
1639
|
+
GlueVersion?: string | undefined;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when a job runs.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
NumberOfWorkers?: number;
|
|
1644
|
+
NumberOfWorkers?: number | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>The type of predefined worker that is allocated when a job runs. Accepts a value of
|
|
1647
1647
|
* G.1X, G.2X, G.4X, G.8X or G.025X for Spark jobs. Accepts the value Z.2X for Ray jobs.</p>
|
|
@@ -1667,30 +1667,30 @@ export interface CreateJobRequest {
|
|
|
1667
1667
|
* </ul>
|
|
1668
1668
|
* @public
|
|
1669
1669
|
*/
|
|
1670
|
-
WorkerType?: WorkerType;
|
|
1670
|
+
WorkerType?: WorkerType | undefined;
|
|
1671
1671
|
/**
|
|
1672
1672
|
* <p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>
|
|
1673
1673
|
* @public
|
|
1674
1674
|
*/
|
|
1675
|
-
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode
|
|
1675
|
+
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode> | undefined;
|
|
1676
1676
|
/**
|
|
1677
1677
|
* <p>Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p>
|
|
1678
1678
|
* <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p>
|
|
1679
1679
|
* <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
ExecutionClass?: ExecutionClass;
|
|
1682
|
+
ExecutionClass?: ExecutionClass | undefined;
|
|
1683
1683
|
/**
|
|
1684
1684
|
* <p>The details for a source control configuration for a job, allowing synchronization of job artifacts to or from a remote repository.</p>
|
|
1685
1685
|
* @public
|
|
1686
1686
|
*/
|
|
1687
|
-
SourceControlDetails?: SourceControlDetails;
|
|
1687
|
+
SourceControlDetails?: SourceControlDetails | undefined;
|
|
1688
1688
|
/**
|
|
1689
1689
|
* <p>This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs.</p>
|
|
1690
1690
|
* <p>Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT.</p>
|
|
1691
1691
|
* @public
|
|
1692
1692
|
*/
|
|
1693
|
-
MaintenanceWindow?: string;
|
|
1693
|
+
MaintenanceWindow?: string | undefined;
|
|
1694
1694
|
}
|
|
1695
1695
|
/**
|
|
1696
1696
|
* @public
|
|
@@ -1701,13 +1701,13 @@ export interface GetTableVersionsResponse {
|
|
|
1701
1701
|
* specified table.</p>
|
|
1702
1702
|
* @public
|
|
1703
1703
|
*/
|
|
1704
|
-
TableVersions?: TableVersion[];
|
|
1704
|
+
TableVersions?: TableVersion[] | undefined;
|
|
1705
1705
|
/**
|
|
1706
1706
|
* <p>A continuation token, if the list of available versions does
|
|
1707
1707
|
* not include the last one.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
NextToken?: string;
|
|
1710
|
+
NextToken?: string | undefined;
|
|
1711
1711
|
}
|
|
1712
1712
|
/**
|
|
1713
1713
|
* <p>Specifies a job definition.</p>
|
|
@@ -1718,7 +1718,7 @@ export interface Job {
|
|
|
1718
1718
|
* <p>The name you assign to this job definition.</p>
|
|
1719
1719
|
* @public
|
|
1720
1720
|
*/
|
|
1721
|
-
Name?: string;
|
|
1721
|
+
Name?: string | undefined;
|
|
1722
1722
|
/**
|
|
1723
1723
|
* <p>A mode that describes how a job was created. Valid values are:</p>
|
|
1724
1724
|
* <ul>
|
|
@@ -1738,50 +1738,50 @@ export interface Job {
|
|
|
1738
1738
|
* <p>When the <code>JobMode</code> field is missing or null, <code>SCRIPT</code> is assigned as the default value.</p>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
JobMode?: JobMode;
|
|
1741
|
+
JobMode?: JobMode | undefined;
|
|
1742
1742
|
/**
|
|
1743
1743
|
* <p>Specifies whether job run queuing is enabled for the job runs for this job.</p>
|
|
1744
1744
|
* <p>A value of true means job run queuing is enabled for the job runs. If false or not populated, the job runs will not be considered for queueing.</p>
|
|
1745
1745
|
* <p>If this field does not match the value set in the job run, then the value from the job run field will be used.</p>
|
|
1746
1746
|
* @public
|
|
1747
1747
|
*/
|
|
1748
|
-
JobRunQueuingEnabled?: boolean;
|
|
1748
|
+
JobRunQueuingEnabled?: boolean | undefined;
|
|
1749
1749
|
/**
|
|
1750
1750
|
* <p>A description of the job.</p>
|
|
1751
1751
|
* @public
|
|
1752
1752
|
*/
|
|
1753
|
-
Description?: string;
|
|
1753
|
+
Description?: string | undefined;
|
|
1754
1754
|
/**
|
|
1755
1755
|
* <p>This field is reserved for future use.</p>
|
|
1756
1756
|
* @public
|
|
1757
1757
|
*/
|
|
1758
|
-
LogUri?: string;
|
|
1758
|
+
LogUri?: string | undefined;
|
|
1759
1759
|
/**
|
|
1760
1760
|
* <p>The name or Amazon Resource Name (ARN) of the IAM role associated with this job.</p>
|
|
1761
1761
|
* @public
|
|
1762
1762
|
*/
|
|
1763
|
-
Role?: string;
|
|
1763
|
+
Role?: string | undefined;
|
|
1764
1764
|
/**
|
|
1765
1765
|
* <p>The time and date that this job definition was created.</p>
|
|
1766
1766
|
* @public
|
|
1767
1767
|
*/
|
|
1768
|
-
CreatedOn?: Date;
|
|
1768
|
+
CreatedOn?: Date | undefined;
|
|
1769
1769
|
/**
|
|
1770
1770
|
* <p>The last point in time when this job definition was modified.</p>
|
|
1771
1771
|
* @public
|
|
1772
1772
|
*/
|
|
1773
|
-
LastModifiedOn?: Date;
|
|
1773
|
+
LastModifiedOn?: Date | undefined;
|
|
1774
1774
|
/**
|
|
1775
1775
|
* <p>An <code>ExecutionProperty</code> specifying the maximum number of concurrent runs allowed
|
|
1776
1776
|
* for this job.</p>
|
|
1777
1777
|
* @public
|
|
1778
1778
|
*/
|
|
1779
|
-
ExecutionProperty?: ExecutionProperty;
|
|
1779
|
+
ExecutionProperty?: ExecutionProperty | undefined;
|
|
1780
1780
|
/**
|
|
1781
1781
|
* <p>The <code>JobCommand</code> that runs this job.</p>
|
|
1782
1782
|
* @public
|
|
1783
1783
|
*/
|
|
1784
|
-
Command?: JobCommand;
|
|
1784
|
+
Command?: JobCommand | undefined;
|
|
1785
1785
|
/**
|
|
1786
1786
|
* <p>The default arguments for every run of this job, specified as name-value pairs.</p>
|
|
1787
1787
|
* <p>You can specify arguments here that your own job-execution script
|
|
@@ -1797,23 +1797,23 @@ export interface Job {
|
|
|
1797
1797
|
* job parameters in Ray jobs</a> in the developer guide.</p>
|
|
1798
1798
|
* @public
|
|
1799
1799
|
*/
|
|
1800
|
-
DefaultArguments?: Record<string, string
|
|
1800
|
+
DefaultArguments?: Record<string, string> | undefined;
|
|
1801
1801
|
/**
|
|
1802
1802
|
* <p>Arguments for this job that are not overridden when providing job arguments
|
|
1803
1803
|
* in a job run, specified as name-value pairs.</p>
|
|
1804
1804
|
* @public
|
|
1805
1805
|
*/
|
|
1806
|
-
NonOverridableArguments?: Record<string, string
|
|
1806
|
+
NonOverridableArguments?: Record<string, string> | undefined;
|
|
1807
1807
|
/**
|
|
1808
1808
|
* <p>The connections used for this job.</p>
|
|
1809
1809
|
* @public
|
|
1810
1810
|
*/
|
|
1811
|
-
Connections?: ConnectionsList;
|
|
1811
|
+
Connections?: ConnectionsList | undefined;
|
|
1812
1812
|
/**
|
|
1813
1813
|
* <p>The maximum number of times to retry this job after a JobRun fails.</p>
|
|
1814
1814
|
* @public
|
|
1815
1815
|
*/
|
|
1816
|
-
MaxRetries?: number;
|
|
1816
|
+
MaxRetries?: number | undefined;
|
|
1817
1817
|
/**
|
|
1818
1818
|
* @deprecated
|
|
1819
1819
|
*
|
|
@@ -1826,7 +1826,7 @@ export interface Job {
|
|
|
1826
1826
|
* <p></p>
|
|
1827
1827
|
* @public
|
|
1828
1828
|
*/
|
|
1829
|
-
AllocatedCapacity?: number;
|
|
1829
|
+
AllocatedCapacity?: number | undefined;
|
|
1830
1830
|
/**
|
|
1831
1831
|
* <p>The job timeout in minutes. This is the maximum time that a job run
|
|
1832
1832
|
* can consume resources before it is terminated and enters <code>TIMEOUT</code>
|
|
@@ -1834,7 +1834,7 @@ export interface Job {
|
|
|
1834
1834
|
* <p>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
1835
1835
|
* @public
|
|
1836
1836
|
*/
|
|
1837
|
-
Timeout?: number;
|
|
1837
|
+
Timeout?: number | undefined;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* <p>For Glue version 1.0 or earlier jobs, using the standard worker type, the number of
|
|
1840
1840
|
* Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is
|
|
@@ -1860,7 +1860,7 @@ export interface Job {
|
|
|
1860
1860
|
* </ul>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
MaxCapacity?: number;
|
|
1863
|
+
MaxCapacity?: number | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>The type of predefined worker that is allocated when a job runs. Accepts a value of
|
|
1866
1866
|
* G.1X, G.2X, G.4X, G.8X or G.025X for Spark jobs. Accepts the value Z.2X for Ray jobs.</p>
|
|
@@ -1886,23 +1886,23 @@ export interface Job {
|
|
|
1886
1886
|
* </ul>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
WorkerType?: WorkerType;
|
|
1889
|
+
WorkerType?: WorkerType | undefined;
|
|
1890
1890
|
/**
|
|
1891
1891
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when a job runs.</p>
|
|
1892
1892
|
* @public
|
|
1893
1893
|
*/
|
|
1894
|
-
NumberOfWorkers?: number;
|
|
1894
|
+
NumberOfWorkers?: number | undefined;
|
|
1895
1895
|
/**
|
|
1896
1896
|
* <p>The name of the <code>SecurityConfiguration</code> structure to be used with this
|
|
1897
1897
|
* job.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
SecurityConfiguration?: string;
|
|
1900
|
+
SecurityConfiguration?: string | undefined;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* <p>Specifies configuration properties of a job notification.</p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
NotificationProperty?: NotificationProperty;
|
|
1905
|
+
NotificationProperty?: NotificationProperty | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>In Spark jobs, <code>GlueVersion</code> determines the versions of Apache Spark and Python
|
|
1908
1908
|
* that Glue available in a job. The Python version indicates the version
|
|
@@ -1916,35 +1916,35 @@ export interface Job {
|
|
|
1916
1916
|
* <p>Jobs that are created without specifying a Glue version default to Glue 0.9.</p>
|
|
1917
1917
|
* @public
|
|
1918
1918
|
*/
|
|
1919
|
-
GlueVersion?: string;
|
|
1919
|
+
GlueVersion?: string | undefined;
|
|
1920
1920
|
/**
|
|
1921
1921
|
* <p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>
|
|
1922
1922
|
* @public
|
|
1923
1923
|
*/
|
|
1924
|
-
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode
|
|
1924
|
+
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode> | undefined;
|
|
1925
1925
|
/**
|
|
1926
1926
|
* <p>Indicates whether the job is run with a standard or flexible execution class. The standard execution class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p>
|
|
1927
1927
|
* <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p>
|
|
1928
1928
|
* <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>
|
|
1929
1929
|
* @public
|
|
1930
1930
|
*/
|
|
1931
|
-
ExecutionClass?: ExecutionClass;
|
|
1931
|
+
ExecutionClass?: ExecutionClass | undefined;
|
|
1932
1932
|
/**
|
|
1933
1933
|
* <p>The details for a source control configuration for a job, allowing synchronization of job artifacts to or from a remote repository.</p>
|
|
1934
1934
|
* @public
|
|
1935
1935
|
*/
|
|
1936
|
-
SourceControlDetails?: SourceControlDetails;
|
|
1936
|
+
SourceControlDetails?: SourceControlDetails | undefined;
|
|
1937
1937
|
/**
|
|
1938
1938
|
* <p>This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs.</p>
|
|
1939
1939
|
* <p>Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT.</p>
|
|
1940
1940
|
* @public
|
|
1941
1941
|
*/
|
|
1942
|
-
MaintenanceWindow?: string;
|
|
1942
|
+
MaintenanceWindow?: string | undefined;
|
|
1943
1943
|
/**
|
|
1944
1944
|
* <p>The name of an Glue usage profile associated with the job.</p>
|
|
1945
1945
|
* @public
|
|
1946
1946
|
*/
|
|
1947
|
-
ProfileName?: string;
|
|
1947
|
+
ProfileName?: string | undefined;
|
|
1948
1948
|
}
|
|
1949
1949
|
/**
|
|
1950
1950
|
* <p>Specifies information used to update an existing job definition. The previous job
|
|
@@ -1971,41 +1971,41 @@ export interface JobUpdate {
|
|
|
1971
1971
|
* <p>When the <code>JobMode</code> field is missing or null, <code>SCRIPT</code> is assigned as the default value.</p>
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
JobMode?: JobMode;
|
|
1974
|
+
JobMode?: JobMode | undefined;
|
|
1975
1975
|
/**
|
|
1976
1976
|
* <p>Specifies whether job run queuing is enabled for the job runs for this job.</p>
|
|
1977
1977
|
* <p>A value of true means job run queuing is enabled for the job runs. If false or not populated, the job runs will not be considered for queueing.</p>
|
|
1978
1978
|
* <p>If this field does not match the value set in the job run, then the value from the job run field will be used.</p>
|
|
1979
1979
|
* @public
|
|
1980
1980
|
*/
|
|
1981
|
-
JobRunQueuingEnabled?: boolean;
|
|
1981
|
+
JobRunQueuingEnabled?: boolean | undefined;
|
|
1982
1982
|
/**
|
|
1983
1983
|
* <p>Description of the job being defined.</p>
|
|
1984
1984
|
* @public
|
|
1985
1985
|
*/
|
|
1986
|
-
Description?: string;
|
|
1986
|
+
Description?: string | undefined;
|
|
1987
1987
|
/**
|
|
1988
1988
|
* <p>This field is reserved for future use.</p>
|
|
1989
1989
|
* @public
|
|
1990
1990
|
*/
|
|
1991
|
-
LogUri?: string;
|
|
1991
|
+
LogUri?: string | undefined;
|
|
1992
1992
|
/**
|
|
1993
1993
|
* <p>The name or Amazon Resource Name (ARN) of the IAM role associated with this job
|
|
1994
1994
|
* (required).</p>
|
|
1995
1995
|
* @public
|
|
1996
1996
|
*/
|
|
1997
|
-
Role?: string;
|
|
1997
|
+
Role?: string | undefined;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* <p>An <code>ExecutionProperty</code> specifying the maximum number of concurrent runs allowed
|
|
2000
2000
|
* for this job.</p>
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
ExecutionProperty?: ExecutionProperty;
|
|
2003
|
+
ExecutionProperty?: ExecutionProperty | undefined;
|
|
2004
2004
|
/**
|
|
2005
2005
|
* <p>The <code>JobCommand</code> that runs this job (required).</p>
|
|
2006
2006
|
* @public
|
|
2007
2007
|
*/
|
|
2008
|
-
Command?: JobCommand;
|
|
2008
|
+
Command?: JobCommand | undefined;
|
|
2009
2009
|
/**
|
|
2010
2010
|
* <p>The default arguments for every run of this job, specified as name-value pairs.</p>
|
|
2011
2011
|
* <p>You can specify arguments here that your own job-execution script
|
|
@@ -2021,23 +2021,23 @@ export interface JobUpdate {
|
|
|
2021
2021
|
* job parameters in Ray jobs</a> in the developer guide.</p>
|
|
2022
2022
|
* @public
|
|
2023
2023
|
*/
|
|
2024
|
-
DefaultArguments?: Record<string, string
|
|
2024
|
+
DefaultArguments?: Record<string, string> | undefined;
|
|
2025
2025
|
/**
|
|
2026
2026
|
* <p>Arguments for this job that are not overridden when providing job arguments
|
|
2027
2027
|
* in a job run, specified as name-value pairs.</p>
|
|
2028
2028
|
* @public
|
|
2029
2029
|
*/
|
|
2030
|
-
NonOverridableArguments?: Record<string, string
|
|
2030
|
+
NonOverridableArguments?: Record<string, string> | undefined;
|
|
2031
2031
|
/**
|
|
2032
2032
|
* <p>The connections used for this job.</p>
|
|
2033
2033
|
* @public
|
|
2034
2034
|
*/
|
|
2035
|
-
Connections?: ConnectionsList;
|
|
2035
|
+
Connections?: ConnectionsList | undefined;
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p>The maximum number of times to retry this job if it fails.</p>
|
|
2038
2038
|
* @public
|
|
2039
2039
|
*/
|
|
2040
|
-
MaxRetries?: number;
|
|
2040
|
+
MaxRetries?: number | undefined;
|
|
2041
2041
|
/**
|
|
2042
2042
|
* @deprecated
|
|
2043
2043
|
*
|
|
@@ -2049,7 +2049,7 @@ export interface JobUpdate {
|
|
|
2049
2049
|
* page</a>.</p>
|
|
2050
2050
|
* @public
|
|
2051
2051
|
*/
|
|
2052
|
-
AllocatedCapacity?: number;
|
|
2052
|
+
AllocatedCapacity?: number | undefined;
|
|
2053
2053
|
/**
|
|
2054
2054
|
* <p>The job timeout in minutes. This is the maximum time that a job run
|
|
2055
2055
|
* can consume resources before it is terminated and enters <code>TIMEOUT</code>
|
|
@@ -2057,7 +2057,7 @@ export interface JobUpdate {
|
|
|
2057
2057
|
* <p>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
Timeout?: number;
|
|
2060
|
+
Timeout?: number | undefined;
|
|
2061
2061
|
/**
|
|
2062
2062
|
* <p>For Glue version 1.0 or earlier jobs, using the standard worker type, the number of
|
|
2063
2063
|
* Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is
|
|
@@ -2083,7 +2083,7 @@ export interface JobUpdate {
|
|
|
2083
2083
|
* </ul>
|
|
2084
2084
|
* @public
|
|
2085
2085
|
*/
|
|
2086
|
-
MaxCapacity?: number;
|
|
2086
|
+
MaxCapacity?: number | undefined;
|
|
2087
2087
|
/**
|
|
2088
2088
|
* <p>The type of predefined worker that is allocated when a job runs. Accepts a value of
|
|
2089
2089
|
* G.1X, G.2X, G.4X, G.8X or G.025X for Spark jobs. Accepts the value Z.2X for Ray jobs.</p>
|
|
@@ -2109,23 +2109,23 @@ export interface JobUpdate {
|
|
|
2109
2109
|
* </ul>
|
|
2110
2110
|
* @public
|
|
2111
2111
|
*/
|
|
2112
|
-
WorkerType?: WorkerType;
|
|
2112
|
+
WorkerType?: WorkerType | undefined;
|
|
2113
2113
|
/**
|
|
2114
2114
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when a job runs.</p>
|
|
2115
2115
|
* @public
|
|
2116
2116
|
*/
|
|
2117
|
-
NumberOfWorkers?: number;
|
|
2117
|
+
NumberOfWorkers?: number | undefined;
|
|
2118
2118
|
/**
|
|
2119
2119
|
* <p>The name of the <code>SecurityConfiguration</code> structure to be used with this
|
|
2120
2120
|
* job.</p>
|
|
2121
2121
|
* @public
|
|
2122
2122
|
*/
|
|
2123
|
-
SecurityConfiguration?: string;
|
|
2123
|
+
SecurityConfiguration?: string | undefined;
|
|
2124
2124
|
/**
|
|
2125
2125
|
* <p>Specifies the configuration properties of a job notification.</p>
|
|
2126
2126
|
* @public
|
|
2127
2127
|
*/
|
|
2128
|
-
NotificationProperty?: NotificationProperty;
|
|
2128
|
+
NotificationProperty?: NotificationProperty | undefined;
|
|
2129
2129
|
/**
|
|
2130
2130
|
* <p>In Spark jobs, <code>GlueVersion</code> determines the versions of Apache Spark and Python
|
|
2131
2131
|
* that Glue available in a job. The Python version indicates the version
|
|
@@ -2139,30 +2139,30 @@ export interface JobUpdate {
|
|
|
2139
2139
|
* <p>Jobs that are created without specifying a Glue version default to Glue 0.9.</p>
|
|
2140
2140
|
* @public
|
|
2141
2141
|
*/
|
|
2142
|
-
GlueVersion?: string;
|
|
2142
|
+
GlueVersion?: string | undefined;
|
|
2143
2143
|
/**
|
|
2144
2144
|
* <p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>
|
|
2145
2145
|
* @public
|
|
2146
2146
|
*/
|
|
2147
|
-
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode
|
|
2147
|
+
CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode> | undefined;
|
|
2148
2148
|
/**
|
|
2149
2149
|
* <p>Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p>
|
|
2150
2150
|
* <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p>
|
|
2151
2151
|
* <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>
|
|
2152
2152
|
* @public
|
|
2153
2153
|
*/
|
|
2154
|
-
ExecutionClass?: ExecutionClass;
|
|
2154
|
+
ExecutionClass?: ExecutionClass | undefined;
|
|
2155
2155
|
/**
|
|
2156
2156
|
* <p>The details for a source control configuration for a job, allowing synchronization of job artifacts to or from a remote repository.</p>
|
|
2157
2157
|
* @public
|
|
2158
2158
|
*/
|
|
2159
|
-
SourceControlDetails?: SourceControlDetails;
|
|
2159
|
+
SourceControlDetails?: SourceControlDetails | undefined;
|
|
2160
2160
|
/**
|
|
2161
2161
|
* <p>This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs.</p>
|
|
2162
2162
|
* <p>Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
MaintenanceWindow?: string;
|
|
2165
|
+
MaintenanceWindow?: string | undefined;
|
|
2166
2166
|
}
|
|
2167
2167
|
/**
|
|
2168
2168
|
* @public
|
|
@@ -2172,7 +2172,7 @@ export interface GetJobResponse {
|
|
|
2172
2172
|
* <p>The requested job definition.</p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
Job?: Job;
|
|
2175
|
+
Job?: Job | undefined;
|
|
2176
2176
|
}
|
|
2177
2177
|
/**
|
|
2178
2178
|
* @public
|
|
@@ -2197,12 +2197,12 @@ export interface BatchGetJobsResponse {
|
|
|
2197
2197
|
* <p>A list of job definitions.</p>
|
|
2198
2198
|
* @public
|
|
2199
2199
|
*/
|
|
2200
|
-
Jobs?: Job[];
|
|
2200
|
+
Jobs?: Job[] | undefined;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* <p>A list of names of jobs not found.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
JobsNotFound?: string[];
|
|
2205
|
+
JobsNotFound?: string[] | undefined;
|
|
2206
2206
|
}
|
|
2207
2207
|
/**
|
|
2208
2208
|
* @public
|
|
@@ -2212,12 +2212,12 @@ export interface GetJobsResponse {
|
|
|
2212
2212
|
* <p>A list of job definitions.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
Jobs?: Job[];
|
|
2215
|
+
Jobs?: Job[] | undefined;
|
|
2216
2216
|
/**
|
|
2217
2217
|
* <p>A continuation token, if not all job definitions have yet been returned.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
NextToken?: string;
|
|
2220
|
+
NextToken?: string | undefined;
|
|
2221
2221
|
}
|
|
2222
2222
|
/**
|
|
2223
2223
|
* @internal
|