@aws-sdk/client-glue 3.110.0 → 3.118.1
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 +27 -0
- package/dist-cjs/Glue.js +15 -0
- package/dist-cjs/commands/ListCrawlsCommand.js +36 -0
- package/dist-cjs/commands/RegisterSchemaVersionCommand.js +3 -3
- package/dist-cjs/commands/RemoveSchemaVersionMetadataCommand.js +3 -3
- package/dist-cjs/commands/ResetJobBookmarkCommand.js +3 -3
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_1.js +49 -51
- package/dist-cjs/models/models_2.js +53 -3
- package/dist-cjs/protocols/Aws_json1_1.js +123 -7
- package/dist-es/Glue.js +15 -0
- package/dist-es/commands/ListCrawlsCommand.js +39 -0
- package/dist-es/commands/RegisterSchemaVersionCommand.js +1 -1
- package/dist-es/commands/RemoveSchemaVersionMetadataCommand.js +1 -1
- package/dist-es/commands/ResetJobBookmarkCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +40 -37
- package/dist-es/models/models_2.js +37 -0
- package/dist-es/protocols/Aws_json1_1.js +126 -2
- package/dist-types/Glue.d.ts +23 -0
- package/dist-types/GlueClient.d.ts +3 -2
- package/dist-types/commands/ListCrawlsCommand.d.ts +51 -0
- package/dist-types/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/commands/RemoveSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/ResetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4 -4
- package/dist-types/models/models_1.d.ts +179 -151
- package/dist-types/models/models_2.d.ts +154 -3
- package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
- package/dist-types/ts3.4/Glue.d.ts +5 -0
- package/dist-types/ts3.4/GlueClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ListCrawlsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemoveSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +85 -85
- package/dist-types/ts3.4/models/models_2.d.ts +87 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +3 -0
- package/package.json +6 -6
|
@@ -1045,11 +1045,11 @@ export declare namespace BatchGetCrawlersRequest {
|
|
|
1045
1045
|
const filterSensitiveLog: (obj: BatchGetCrawlersRequest) => any;
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
1048
|
-
* <p>Specifies
|
|
1048
|
+
* <p>Specifies Lake Formation configuration settings for the crawler.</p>
|
|
1049
1049
|
*/
|
|
1050
1050
|
export interface LakeFormationConfiguration {
|
|
1051
1051
|
/**
|
|
1052
|
-
* <p>Specifies whether to use
|
|
1052
|
+
* <p>Specifies whether to use Lake Formation credentials for the crawler instead of the IAM role credentials.</p>
|
|
1053
1053
|
*/
|
|
1054
1054
|
UseLakeFormationCredentials?: boolean;
|
|
1055
1055
|
/**
|
|
@@ -1499,7 +1499,7 @@ export interface Crawler {
|
|
|
1499
1499
|
*/
|
|
1500
1500
|
CrawlerSecurityConfiguration?: string;
|
|
1501
1501
|
/**
|
|
1502
|
-
* <p>Specifies whether the crawler should use
|
|
1502
|
+
* <p>Specifies whether the crawler should use Lake Formation credentials for the crawler instead of the IAM role credentials.</p>
|
|
1503
1503
|
*/
|
|
1504
1504
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
1505
1505
|
}
|
|
@@ -5532,7 +5532,7 @@ export interface CreateCrawlerRequest {
|
|
|
5532
5532
|
*/
|
|
5533
5533
|
LineageConfiguration?: LineageConfiguration;
|
|
5534
5534
|
/**
|
|
5535
|
-
* <p>Specifies
|
|
5535
|
+
* <p>Specifies Lake Formation configuration settings for the crawler.</p>
|
|
5536
5536
|
*/
|
|
5537
5537
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
5538
5538
|
/**
|
|
@@ -5460,6 +5460,185 @@ export declare namespace ListCrawlersResponse {
|
|
|
5460
5460
|
*/
|
|
5461
5461
|
const filterSensitiveLog: (obj: ListCrawlersResponse) => any;
|
|
5462
5462
|
}
|
|
5463
|
+
export declare enum FieldName {
|
|
5464
|
+
CRAWL_ID = "CRAWL_ID",
|
|
5465
|
+
DPU_HOUR = "DPU_HOUR",
|
|
5466
|
+
END_TIME = "END_TIME",
|
|
5467
|
+
START_TIME = "START_TIME",
|
|
5468
|
+
STATE = "STATE"
|
|
5469
|
+
}
|
|
5470
|
+
export declare enum FilterOperator {
|
|
5471
|
+
EQ = "EQ",
|
|
5472
|
+
GE = "GE",
|
|
5473
|
+
GT = "GT",
|
|
5474
|
+
LE = "LE",
|
|
5475
|
+
LT = "LT",
|
|
5476
|
+
NE = "NE"
|
|
5477
|
+
}
|
|
5478
|
+
/**
|
|
5479
|
+
* <p>A list of fields, comparators and value that you can use to filter the crawler runs for a specified crawler.</p>
|
|
5480
|
+
*/
|
|
5481
|
+
export interface CrawlsFilter {
|
|
5482
|
+
/**
|
|
5483
|
+
* <p>A key used to filter the crawler runs for a specified crawler. Valid values for each of the field names are:</p>
|
|
5484
|
+
* <ul>
|
|
5485
|
+
* <li>
|
|
5486
|
+
* <p>
|
|
5487
|
+
* <code>CRAWL_ID</code>: A string representing the UUID identifier for a crawl.</p>
|
|
5488
|
+
* </li>
|
|
5489
|
+
* <li>
|
|
5490
|
+
* <p>
|
|
5491
|
+
* <code>STATE</code>: A string representing the state of the crawl.</p>
|
|
5492
|
+
* </li>
|
|
5493
|
+
* <li>
|
|
5494
|
+
* <p>
|
|
5495
|
+
* <code>START_TIME</code> and <code>END_TIME</code>: The epoch timestamp in milliseconds.</p>
|
|
5496
|
+
* </li>
|
|
5497
|
+
* <li>
|
|
5498
|
+
* <p>
|
|
5499
|
+
* <code>DPU_HOUR</code>: The number of data processing unit (DPU) hours used for the crawl.</p>
|
|
5500
|
+
* </li>
|
|
5501
|
+
* </ul>
|
|
5502
|
+
*/
|
|
5503
|
+
FieldName?: FieldName | string;
|
|
5504
|
+
/**
|
|
5505
|
+
* <p>A defined comparator that operates on the value. The available operators are:</p>
|
|
5506
|
+
* <ul>
|
|
5507
|
+
* <li>
|
|
5508
|
+
* <p>
|
|
5509
|
+
* <code>GT</code>: Greater than.</p>
|
|
5510
|
+
* </li>
|
|
5511
|
+
* <li>
|
|
5512
|
+
* <p>
|
|
5513
|
+
* <code>GE</code>: Greater than or equal to.</p>
|
|
5514
|
+
* </li>
|
|
5515
|
+
* <li>
|
|
5516
|
+
* <p>
|
|
5517
|
+
* <code>LT</code>: Less than.</p>
|
|
5518
|
+
* </li>
|
|
5519
|
+
* <li>
|
|
5520
|
+
* <p>
|
|
5521
|
+
* <code>LE</code>: Less than or equal to.</p>
|
|
5522
|
+
* </li>
|
|
5523
|
+
* <li>
|
|
5524
|
+
* <p>
|
|
5525
|
+
* <code>EQ</code>: Equal to.</p>
|
|
5526
|
+
* </li>
|
|
5527
|
+
* <li>
|
|
5528
|
+
* <p>
|
|
5529
|
+
* <code>NE</code>: Not equal to.</p>
|
|
5530
|
+
* </li>
|
|
5531
|
+
* </ul>
|
|
5532
|
+
*/
|
|
5533
|
+
FilterOperator?: FilterOperator | string;
|
|
5534
|
+
/**
|
|
5535
|
+
* <p>The value provided for comparison on the crawl field. </p>
|
|
5536
|
+
*/
|
|
5537
|
+
FieldValue?: string;
|
|
5538
|
+
}
|
|
5539
|
+
export declare namespace CrawlsFilter {
|
|
5540
|
+
/**
|
|
5541
|
+
* @internal
|
|
5542
|
+
*/
|
|
5543
|
+
const filterSensitiveLog: (obj: CrawlsFilter) => any;
|
|
5544
|
+
}
|
|
5545
|
+
export interface ListCrawlsRequest {
|
|
5546
|
+
/**
|
|
5547
|
+
* <p>The name of the crawler whose runs you want to retrieve.</p>
|
|
5548
|
+
*/
|
|
5549
|
+
CrawlerName: string | undefined;
|
|
5550
|
+
/**
|
|
5551
|
+
* <p>The maximum number of results to return. The default is 20, and maximum is 100.</p>
|
|
5552
|
+
*/
|
|
5553
|
+
MaxResults?: number;
|
|
5554
|
+
/**
|
|
5555
|
+
* <p>Filters the crawls by the criteria you specify in a list of <code>CrawlsFilter</code> objects.</p>
|
|
5556
|
+
*/
|
|
5557
|
+
Filters?: CrawlsFilter[];
|
|
5558
|
+
/**
|
|
5559
|
+
* <p>A continuation token, if this is a continuation call.</p>
|
|
5560
|
+
*/
|
|
5561
|
+
NextToken?: string;
|
|
5562
|
+
}
|
|
5563
|
+
export declare namespace ListCrawlsRequest {
|
|
5564
|
+
/**
|
|
5565
|
+
* @internal
|
|
5566
|
+
*/
|
|
5567
|
+
const filterSensitiveLog: (obj: ListCrawlsRequest) => any;
|
|
5568
|
+
}
|
|
5569
|
+
export declare enum CrawlerHistoryState {
|
|
5570
|
+
COMPLETED = "COMPLETED",
|
|
5571
|
+
FAILED = "FAILED",
|
|
5572
|
+
RUNNING = "RUNNING",
|
|
5573
|
+
STOPPED = "STOPPED"
|
|
5574
|
+
}
|
|
5575
|
+
/**
|
|
5576
|
+
* <p>Contains the information for a run of a crawler.</p>
|
|
5577
|
+
*/
|
|
5578
|
+
export interface CrawlerHistory {
|
|
5579
|
+
/**
|
|
5580
|
+
* <p>A UUID identifier for each crawl.</p>
|
|
5581
|
+
*/
|
|
5582
|
+
CrawlId?: string;
|
|
5583
|
+
/**
|
|
5584
|
+
* <p>The state of the crawl.</p>
|
|
5585
|
+
*/
|
|
5586
|
+
State?: CrawlerHistoryState | string;
|
|
5587
|
+
/**
|
|
5588
|
+
* <p>The date and time on which the crawl started.</p>
|
|
5589
|
+
*/
|
|
5590
|
+
StartTime?: Date;
|
|
5591
|
+
/**
|
|
5592
|
+
* <p>The date and time on which the crawl ended.</p>
|
|
5593
|
+
*/
|
|
5594
|
+
EndTime?: Date;
|
|
5595
|
+
/**
|
|
5596
|
+
* <p>A run summary for the specific crawl in JSON. Contains the catalog tables and partitions that were added, updated, or deleted.</p>
|
|
5597
|
+
*/
|
|
5598
|
+
Summary?: string;
|
|
5599
|
+
/**
|
|
5600
|
+
* <p>If an error occurred, the error message associated with the crawl.</p>
|
|
5601
|
+
*/
|
|
5602
|
+
ErrorMessage?: string;
|
|
5603
|
+
/**
|
|
5604
|
+
* <p>The log group associated with the crawl.</p>
|
|
5605
|
+
*/
|
|
5606
|
+
LogGroup?: string;
|
|
5607
|
+
/**
|
|
5608
|
+
* <p>The log stream associated with the crawl.</p>
|
|
5609
|
+
*/
|
|
5610
|
+
LogStream?: string;
|
|
5611
|
+
/**
|
|
5612
|
+
* <p>The prefix for a CloudWatch message about this crawl.</p>
|
|
5613
|
+
*/
|
|
5614
|
+
MessagePrefix?: string;
|
|
5615
|
+
/**
|
|
5616
|
+
* <p>The number of data processing units (DPU) used in hours for the crawl.</p>
|
|
5617
|
+
*/
|
|
5618
|
+
DPUHour?: number;
|
|
5619
|
+
}
|
|
5620
|
+
export declare namespace CrawlerHistory {
|
|
5621
|
+
/**
|
|
5622
|
+
* @internal
|
|
5623
|
+
*/
|
|
5624
|
+
const filterSensitiveLog: (obj: CrawlerHistory) => any;
|
|
5625
|
+
}
|
|
5626
|
+
export interface ListCrawlsResponse {
|
|
5627
|
+
/**
|
|
5628
|
+
* <p>A list of <code>CrawlerHistory</code> objects representing the crawl runs that meet your criteria.</p>
|
|
5629
|
+
*/
|
|
5630
|
+
Crawls?: CrawlerHistory[];
|
|
5631
|
+
/**
|
|
5632
|
+
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
5633
|
+
*/
|
|
5634
|
+
NextToken?: string;
|
|
5635
|
+
}
|
|
5636
|
+
export declare namespace ListCrawlsResponse {
|
|
5637
|
+
/**
|
|
5638
|
+
* @internal
|
|
5639
|
+
*/
|
|
5640
|
+
const filterSensitiveLog: (obj: ListCrawlsResponse) => any;
|
|
5641
|
+
}
|
|
5463
5642
|
export interface ListCustomEntityTypesRequest {
|
|
5464
5643
|
/**
|
|
5465
5644
|
* <p>A paginated token to offset the results.</p>
|
|
@@ -6275,154 +6454,3 @@ export declare namespace QuerySchemaVersionMetadataResponse {
|
|
|
6275
6454
|
*/
|
|
6276
6455
|
const filterSensitiveLog: (obj: QuerySchemaVersionMetadataResponse) => any;
|
|
6277
6456
|
}
|
|
6278
|
-
export interface RegisterSchemaVersionInput {
|
|
6279
|
-
/**
|
|
6280
|
-
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
6281
|
-
* <ul>
|
|
6282
|
-
* <li>
|
|
6283
|
-
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
6284
|
-
* </li>
|
|
6285
|
-
* <li>
|
|
6286
|
-
* <p>SchemaId$SchemaName: The name of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
6287
|
-
* </li>
|
|
6288
|
-
* </ul>
|
|
6289
|
-
*/
|
|
6290
|
-
SchemaId: SchemaId | undefined;
|
|
6291
|
-
/**
|
|
6292
|
-
* <p>The schema definition using the <code>DataFormat</code> setting for the <code>SchemaName</code>.</p>
|
|
6293
|
-
*/
|
|
6294
|
-
SchemaDefinition: string | undefined;
|
|
6295
|
-
}
|
|
6296
|
-
export declare namespace RegisterSchemaVersionInput {
|
|
6297
|
-
/**
|
|
6298
|
-
* @internal
|
|
6299
|
-
*/
|
|
6300
|
-
const filterSensitiveLog: (obj: RegisterSchemaVersionInput) => any;
|
|
6301
|
-
}
|
|
6302
|
-
export interface RegisterSchemaVersionResponse {
|
|
6303
|
-
/**
|
|
6304
|
-
* <p>The unique ID that represents the version of this schema.</p>
|
|
6305
|
-
*/
|
|
6306
|
-
SchemaVersionId?: string;
|
|
6307
|
-
/**
|
|
6308
|
-
* <p>The version of this schema (for sync flow only, in case this is the first version).</p>
|
|
6309
|
-
*/
|
|
6310
|
-
VersionNumber?: number;
|
|
6311
|
-
/**
|
|
6312
|
-
* <p>The status of the schema version.</p>
|
|
6313
|
-
*/
|
|
6314
|
-
Status?: SchemaVersionStatus | string;
|
|
6315
|
-
}
|
|
6316
|
-
export declare namespace RegisterSchemaVersionResponse {
|
|
6317
|
-
/**
|
|
6318
|
-
* @internal
|
|
6319
|
-
*/
|
|
6320
|
-
const filterSensitiveLog: (obj: RegisterSchemaVersionResponse) => any;
|
|
6321
|
-
}
|
|
6322
|
-
export interface RemoveSchemaVersionMetadataInput {
|
|
6323
|
-
/**
|
|
6324
|
-
* <p>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).</p>
|
|
6325
|
-
*/
|
|
6326
|
-
SchemaId?: SchemaId;
|
|
6327
|
-
/**
|
|
6328
|
-
* <p>The version number of the schema.</p>
|
|
6329
|
-
*/
|
|
6330
|
-
SchemaVersionNumber?: SchemaVersionNumber;
|
|
6331
|
-
/**
|
|
6332
|
-
* <p>The unique version ID of the schema version.</p>
|
|
6333
|
-
*/
|
|
6334
|
-
SchemaVersionId?: string;
|
|
6335
|
-
/**
|
|
6336
|
-
* <p>The value of the metadata key.</p>
|
|
6337
|
-
*/
|
|
6338
|
-
MetadataKeyValue: MetadataKeyValuePair | undefined;
|
|
6339
|
-
}
|
|
6340
|
-
export declare namespace RemoveSchemaVersionMetadataInput {
|
|
6341
|
-
/**
|
|
6342
|
-
* @internal
|
|
6343
|
-
*/
|
|
6344
|
-
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataInput) => any;
|
|
6345
|
-
}
|
|
6346
|
-
export interface RemoveSchemaVersionMetadataResponse {
|
|
6347
|
-
/**
|
|
6348
|
-
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
6349
|
-
*/
|
|
6350
|
-
SchemaArn?: string;
|
|
6351
|
-
/**
|
|
6352
|
-
* <p>The name of the schema.</p>
|
|
6353
|
-
*/
|
|
6354
|
-
SchemaName?: string;
|
|
6355
|
-
/**
|
|
6356
|
-
* <p>The name of the registry.</p>
|
|
6357
|
-
*/
|
|
6358
|
-
RegistryName?: string;
|
|
6359
|
-
/**
|
|
6360
|
-
* <p>The latest version of the schema.</p>
|
|
6361
|
-
*/
|
|
6362
|
-
LatestVersion?: boolean;
|
|
6363
|
-
/**
|
|
6364
|
-
* <p>The version number of the schema.</p>
|
|
6365
|
-
*/
|
|
6366
|
-
VersionNumber?: number;
|
|
6367
|
-
/**
|
|
6368
|
-
* <p>The version ID for the schema version.</p>
|
|
6369
|
-
*/
|
|
6370
|
-
SchemaVersionId?: string;
|
|
6371
|
-
/**
|
|
6372
|
-
* <p>The metadata key.</p>
|
|
6373
|
-
*/
|
|
6374
|
-
MetadataKey?: string;
|
|
6375
|
-
/**
|
|
6376
|
-
* <p>The value of the metadata key.</p>
|
|
6377
|
-
*/
|
|
6378
|
-
MetadataValue?: string;
|
|
6379
|
-
}
|
|
6380
|
-
export declare namespace RemoveSchemaVersionMetadataResponse {
|
|
6381
|
-
/**
|
|
6382
|
-
* @internal
|
|
6383
|
-
*/
|
|
6384
|
-
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataResponse) => any;
|
|
6385
|
-
}
|
|
6386
|
-
export interface ResetJobBookmarkRequest {
|
|
6387
|
-
/**
|
|
6388
|
-
* <p>The name of the job in question.</p>
|
|
6389
|
-
*/
|
|
6390
|
-
JobName: string | undefined;
|
|
6391
|
-
/**
|
|
6392
|
-
* <p>The unique run identifier associated with this job run.</p>
|
|
6393
|
-
*/
|
|
6394
|
-
RunId?: string;
|
|
6395
|
-
}
|
|
6396
|
-
export declare namespace ResetJobBookmarkRequest {
|
|
6397
|
-
/**
|
|
6398
|
-
* @internal
|
|
6399
|
-
*/
|
|
6400
|
-
const filterSensitiveLog: (obj: ResetJobBookmarkRequest) => any;
|
|
6401
|
-
}
|
|
6402
|
-
export interface ResetJobBookmarkResponse {
|
|
6403
|
-
/**
|
|
6404
|
-
* <p>The reset bookmark entry.</p>
|
|
6405
|
-
*/
|
|
6406
|
-
JobBookmarkEntry?: JobBookmarkEntry;
|
|
6407
|
-
}
|
|
6408
|
-
export declare namespace ResetJobBookmarkResponse {
|
|
6409
|
-
/**
|
|
6410
|
-
* @internal
|
|
6411
|
-
*/
|
|
6412
|
-
const filterSensitiveLog: (obj: ResetJobBookmarkResponse) => any;
|
|
6413
|
-
}
|
|
6414
|
-
/**
|
|
6415
|
-
* <p>Too many jobs are being run concurrently.</p>
|
|
6416
|
-
*/
|
|
6417
|
-
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
6418
|
-
readonly name: "ConcurrentRunsExceededException";
|
|
6419
|
-
readonly $fault: "client";
|
|
6420
|
-
/**
|
|
6421
|
-
* <p>A message describing the problem.</p>
|
|
6422
|
-
*/
|
|
6423
|
-
Message?: string;
|
|
6424
|
-
/**
|
|
6425
|
-
* @internal
|
|
6426
|
-
*/
|
|
6427
|
-
constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
|
|
6428
|
-
}
|
|
@@ -1,7 +1,158 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, Aggregate, AthenaConnectorSource, BasicCatalogTarget, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, CustomCode, DatabaseInput, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamoDBCatalogSource, ErrorDetail, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, RecrawlPolicy, RedshiftSource, RedshiftTarget, RegistryId, RelationalCatalogSource, RenameField, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DirectTarget, S3GlueParquetTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, TableInput, TransformParameters, Trigger, Union, UserDefinedFunctionInput, WorkerType } from "./models_0";
|
|
4
|
-
import { ColumnStatistics, ResourceShareType, SchemaVersionNumber, Table } from "./models_1";
|
|
3
|
+
import { Action, Aggregate, AthenaConnectorSource, BasicCatalogTarget, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, CustomCode, DatabaseInput, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamoDBCatalogSource, ErrorDetail, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, RecrawlPolicy, RedshiftSource, RedshiftTarget, RegistryId, RelationalCatalogSource, RenameField, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DirectTarget, S3GlueParquetTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SchemaVersionStatus, SelectFields, SelectFromCollection, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, TableInput, TransformParameters, Trigger, Union, UserDefinedFunctionInput, WorkerType } from "./models_0";
|
|
4
|
+
import { ColumnStatistics, JobBookmarkEntry, MetadataKeyValuePair, ResourceShareType, SchemaVersionNumber, Table } from "./models_1";
|
|
5
|
+
export interface RegisterSchemaVersionInput {
|
|
6
|
+
/**
|
|
7
|
+
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
8
|
+
* <ul>
|
|
9
|
+
* <li>
|
|
10
|
+
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
11
|
+
* </li>
|
|
12
|
+
* <li>
|
|
13
|
+
* <p>SchemaId$SchemaName: The name of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
14
|
+
* </li>
|
|
15
|
+
* </ul>
|
|
16
|
+
*/
|
|
17
|
+
SchemaId: SchemaId | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The schema definition using the <code>DataFormat</code> setting for the <code>SchemaName</code>.</p>
|
|
20
|
+
*/
|
|
21
|
+
SchemaDefinition: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace RegisterSchemaVersionInput {
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
const filterSensitiveLog: (obj: RegisterSchemaVersionInput) => any;
|
|
28
|
+
}
|
|
29
|
+
export interface RegisterSchemaVersionResponse {
|
|
30
|
+
/**
|
|
31
|
+
* <p>The unique ID that represents the version of this schema.</p>
|
|
32
|
+
*/
|
|
33
|
+
SchemaVersionId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The version of this schema (for sync flow only, in case this is the first version).</p>
|
|
36
|
+
*/
|
|
37
|
+
VersionNumber?: number;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The status of the schema version.</p>
|
|
40
|
+
*/
|
|
41
|
+
Status?: SchemaVersionStatus | string;
|
|
42
|
+
}
|
|
43
|
+
export declare namespace RegisterSchemaVersionResponse {
|
|
44
|
+
/**
|
|
45
|
+
* @internal
|
|
46
|
+
*/
|
|
47
|
+
const filterSensitiveLog: (obj: RegisterSchemaVersionResponse) => any;
|
|
48
|
+
}
|
|
49
|
+
export interface RemoveSchemaVersionMetadataInput {
|
|
50
|
+
/**
|
|
51
|
+
* <p>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).</p>
|
|
52
|
+
*/
|
|
53
|
+
SchemaId?: SchemaId;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The version number of the schema.</p>
|
|
56
|
+
*/
|
|
57
|
+
SchemaVersionNumber?: SchemaVersionNumber;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The unique version ID of the schema version.</p>
|
|
60
|
+
*/
|
|
61
|
+
SchemaVersionId?: string;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The value of the metadata key.</p>
|
|
64
|
+
*/
|
|
65
|
+
MetadataKeyValue: MetadataKeyValuePair | undefined;
|
|
66
|
+
}
|
|
67
|
+
export declare namespace RemoveSchemaVersionMetadataInput {
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataInput) => any;
|
|
72
|
+
}
|
|
73
|
+
export interface RemoveSchemaVersionMetadataResponse {
|
|
74
|
+
/**
|
|
75
|
+
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
76
|
+
*/
|
|
77
|
+
SchemaArn?: string;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The name of the schema.</p>
|
|
80
|
+
*/
|
|
81
|
+
SchemaName?: string;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The name of the registry.</p>
|
|
84
|
+
*/
|
|
85
|
+
RegistryName?: string;
|
|
86
|
+
/**
|
|
87
|
+
* <p>The latest version of the schema.</p>
|
|
88
|
+
*/
|
|
89
|
+
LatestVersion?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The version number of the schema.</p>
|
|
92
|
+
*/
|
|
93
|
+
VersionNumber?: number;
|
|
94
|
+
/**
|
|
95
|
+
* <p>The version ID for the schema version.</p>
|
|
96
|
+
*/
|
|
97
|
+
SchemaVersionId?: string;
|
|
98
|
+
/**
|
|
99
|
+
* <p>The metadata key.</p>
|
|
100
|
+
*/
|
|
101
|
+
MetadataKey?: string;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The value of the metadata key.</p>
|
|
104
|
+
*/
|
|
105
|
+
MetadataValue?: string;
|
|
106
|
+
}
|
|
107
|
+
export declare namespace RemoveSchemaVersionMetadataResponse {
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataResponse) => any;
|
|
112
|
+
}
|
|
113
|
+
export interface ResetJobBookmarkRequest {
|
|
114
|
+
/**
|
|
115
|
+
* <p>The name of the job in question.</p>
|
|
116
|
+
*/
|
|
117
|
+
JobName: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The unique run identifier associated with this job run.</p>
|
|
120
|
+
*/
|
|
121
|
+
RunId?: string;
|
|
122
|
+
}
|
|
123
|
+
export declare namespace ResetJobBookmarkRequest {
|
|
124
|
+
/**
|
|
125
|
+
* @internal
|
|
126
|
+
*/
|
|
127
|
+
const filterSensitiveLog: (obj: ResetJobBookmarkRequest) => any;
|
|
128
|
+
}
|
|
129
|
+
export interface ResetJobBookmarkResponse {
|
|
130
|
+
/**
|
|
131
|
+
* <p>The reset bookmark entry.</p>
|
|
132
|
+
*/
|
|
133
|
+
JobBookmarkEntry?: JobBookmarkEntry;
|
|
134
|
+
}
|
|
135
|
+
export declare namespace ResetJobBookmarkResponse {
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
139
|
+
const filterSensitiveLog: (obj: ResetJobBookmarkResponse) => any;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* <p>Too many jobs are being run concurrently.</p>
|
|
143
|
+
*/
|
|
144
|
+
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
145
|
+
readonly name: "ConcurrentRunsExceededException";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
/**
|
|
148
|
+
* <p>A message describing the problem.</p>
|
|
149
|
+
*/
|
|
150
|
+
Message?: string;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
|
|
155
|
+
}
|
|
5
156
|
/**
|
|
6
157
|
* <p>The workflow is in an invalid state to perform a requested operation.</p>
|
|
7
158
|
*/
|
|
@@ -1186,7 +1337,7 @@ export interface UpdateCrawlerRequest {
|
|
|
1186
1337
|
*/
|
|
1187
1338
|
LineageConfiguration?: LineageConfiguration;
|
|
1188
1339
|
/**
|
|
1189
|
-
* <p>Specifies
|
|
1340
|
+
* <p>Specifies Lake Formation configuration settings for the crawler.</p>
|
|
1190
1341
|
*/
|
|
1191
1342
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
1192
1343
|
/**
|
|
@@ -126,6 +126,7 @@ import { GetWorkflowRunsCommandInput, GetWorkflowRunsCommandOutput } from "../co
|
|
|
126
126
|
import { ImportCatalogToGlueCommandInput, ImportCatalogToGlueCommandOutput } from "../commands/ImportCatalogToGlueCommand";
|
|
127
127
|
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "../commands/ListBlueprintsCommand";
|
|
128
128
|
import { ListCrawlersCommandInput, ListCrawlersCommandOutput } from "../commands/ListCrawlersCommand";
|
|
129
|
+
import { ListCrawlsCommandInput, ListCrawlsCommandOutput } from "../commands/ListCrawlsCommand";
|
|
129
130
|
import { ListCustomEntityTypesCommandInput, ListCustomEntityTypesCommandOutput } from "../commands/ListCustomEntityTypesCommand";
|
|
130
131
|
import { ListDevEndpointsCommandInput, ListDevEndpointsCommandOutput } from "../commands/ListDevEndpointsCommand";
|
|
131
132
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
@@ -309,6 +310,7 @@ export declare const serializeAws_json1_1GetWorkflowRunsCommand: (input: GetWork
|
|
|
309
310
|
export declare const serializeAws_json1_1ImportCatalogToGlueCommand: (input: ImportCatalogToGlueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
310
311
|
export declare const serializeAws_json1_1ListBlueprintsCommand: (input: ListBlueprintsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
311
312
|
export declare const serializeAws_json1_1ListCrawlersCommand: (input: ListCrawlersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
313
|
+
export declare const serializeAws_json1_1ListCrawlsCommand: (input: ListCrawlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
312
314
|
export declare const serializeAws_json1_1ListCustomEntityTypesCommand: (input: ListCustomEntityTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
313
315
|
export declare const serializeAws_json1_1ListDevEndpointsCommand: (input: ListDevEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
314
316
|
export declare const serializeAws_json1_1ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -492,6 +494,7 @@ export declare const deserializeAws_json1_1GetWorkflowRunsCommand: (output: __Ht
|
|
|
492
494
|
export declare const deserializeAws_json1_1ImportCatalogToGlueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportCatalogToGlueCommandOutput>;
|
|
493
495
|
export declare const deserializeAws_json1_1ListBlueprintsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBlueprintsCommandOutput>;
|
|
494
496
|
export declare const deserializeAws_json1_1ListCrawlersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCrawlersCommandOutput>;
|
|
497
|
+
export declare const deserializeAws_json1_1ListCrawlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCrawlsCommandOutput>;
|
|
495
498
|
export declare const deserializeAws_json1_1ListCustomEntityTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCustomEntityTypesCommandOutput>;
|
|
496
499
|
export declare const deserializeAws_json1_1ListDevEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDevEndpointsCommandOutput>;
|
|
497
500
|
export declare const deserializeAws_json1_1ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
|
|
@@ -125,6 +125,7 @@ import { GetWorkflowRunsCommandInput, GetWorkflowRunsCommandOutput } from "./com
|
|
|
125
125
|
import { ImportCatalogToGlueCommandInput, ImportCatalogToGlueCommandOutput } from "./commands/ImportCatalogToGlueCommand";
|
|
126
126
|
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "./commands/ListBlueprintsCommand";
|
|
127
127
|
import { ListCrawlersCommandInput, ListCrawlersCommandOutput } from "./commands/ListCrawlersCommand";
|
|
128
|
+
import { ListCrawlsCommandInput, ListCrawlsCommandOutput } from "./commands/ListCrawlsCommand";
|
|
128
129
|
import { ListCustomEntityTypesCommandInput, ListCustomEntityTypesCommandOutput } from "./commands/ListCustomEntityTypesCommand";
|
|
129
130
|
import { ListDevEndpointsCommandInput, ListDevEndpointsCommandOutput } from "./commands/ListDevEndpointsCommand";
|
|
130
131
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
@@ -687,6 +688,10 @@ export declare class Glue extends GlueClient {
|
|
|
687
688
|
listCrawlers(args: ListCrawlersCommandInput, cb: (err: any, data?: ListCrawlersCommandOutput) => void): void;
|
|
688
689
|
listCrawlers(args: ListCrawlersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrawlersCommandOutput) => void): void;
|
|
689
690
|
|
|
691
|
+
listCrawls(args: ListCrawlsCommandInput, options?: __HttpHandlerOptions): Promise<ListCrawlsCommandOutput>;
|
|
692
|
+
listCrawls(args: ListCrawlsCommandInput, cb: (err: any, data?: ListCrawlsCommandOutput) => void): void;
|
|
693
|
+
listCrawls(args: ListCrawlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrawlsCommandOutput) => void): void;
|
|
694
|
+
|
|
690
695
|
listCustomEntityTypes(args: ListCustomEntityTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomEntityTypesCommandOutput>;
|
|
691
696
|
listCustomEntityTypes(args: ListCustomEntityTypesCommandInput, cb: (err: any, data?: ListCustomEntityTypesCommandOutput) => void): void;
|
|
692
697
|
listCustomEntityTypes(args: ListCustomEntityTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomEntityTypesCommandOutput) => void): void;
|
|
@@ -132,6 +132,7 @@ import { GetWorkflowRunsCommandInput, GetWorkflowRunsCommandOutput } from "./com
|
|
|
132
132
|
import { ImportCatalogToGlueCommandInput, ImportCatalogToGlueCommandOutput } from "./commands/ImportCatalogToGlueCommand";
|
|
133
133
|
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "./commands/ListBlueprintsCommand";
|
|
134
134
|
import { ListCrawlersCommandInput, ListCrawlersCommandOutput } from "./commands/ListCrawlersCommand";
|
|
135
|
+
import { ListCrawlsCommandInput, ListCrawlsCommandOutput } from "./commands/ListCrawlsCommand";
|
|
135
136
|
import { ListCustomEntityTypesCommandInput, ListCustomEntityTypesCommandOutput } from "./commands/ListCustomEntityTypesCommand";
|
|
136
137
|
import { ListDevEndpointsCommandInput, ListDevEndpointsCommandOutput } from "./commands/ListDevEndpointsCommand";
|
|
137
138
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
@@ -189,8 +190,8 @@ import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/Up
|
|
|
189
190
|
import { UpdateTriggerCommandInput, UpdateTriggerCommandOutput } from "./commands/UpdateTriggerCommand";
|
|
190
191
|
import { UpdateUserDefinedFunctionCommandInput, UpdateUserDefinedFunctionCommandOutput } from "./commands/UpdateUserDefinedFunctionCommand";
|
|
191
192
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
192
|
-
export declare type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTriggerCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListCrawlersCommandInput | ListCustomEntityTypesCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTriggersCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateTableCommandInput | UpdateTriggerCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
193
|
-
export declare type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTriggerCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListCrawlersCommandOutput | ListCustomEntityTypesCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTriggersCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateTableCommandOutput | UpdateTriggerCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
193
|
+
export declare type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTriggerCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTriggersCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateTableCommandInput | UpdateTriggerCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
194
|
+
export declare type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTriggerCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTriggersCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateTableCommandOutput | UpdateTriggerCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
194
195
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
195
196
|
|
|
196
197
|
requestHandler?: __HttpHandler;
|