@aws-sdk/client-athena 3.170.0 → 3.178.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/Athena.d.ts +0 -37
  6. package/dist-types/ts3.4/AthenaClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/BatchGetNamedQueryCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/BatchGetPreparedStatementCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/BatchGetQueryExecutionCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/CreateDataCatalogCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/CreateNamedQueryCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/CreatePreparedStatementCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/CreateWorkGroupCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DeleteDataCatalogCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/DeleteNamedQueryCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/DeletePreparedStatementCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/DeleteWorkGroupCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/GetDataCatalogCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/GetNamedQueryCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/GetPreparedStatementCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/GetQueryExecutionCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/GetQueryRuntimeStatisticsCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/GetTableMetadataCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/GetWorkGroupCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/ListDataCatalogsCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/ListEngineVersionsCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/ListNamedQueriesCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/ListPreparedStatementsCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/ListQueryExecutionsCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/ListTableMetadataCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/commands/ListWorkGroupsCommand.d.ts +0 -2
  36. package/dist-types/ts3.4/commands/StartQueryExecutionCommand.d.ts +0 -2
  37. package/dist-types/ts3.4/commands/StopQueryExecutionCommand.d.ts +0 -2
  38. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  39. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  40. package/dist-types/ts3.4/commands/UpdateDataCatalogCommand.d.ts +0 -2
  41. package/dist-types/ts3.4/commands/UpdateNamedQueryCommand.d.ts +0 -2
  42. package/dist-types/ts3.4/commands/UpdatePreparedStatementCommand.d.ts +0 -2
  43. package/dist-types/ts3.4/commands/UpdateWorkGroupCommand.d.ts +0 -2
  44. package/dist-types/ts3.4/models/AthenaServiceException.d.ts +0 -1
  45. package/dist-types/ts3.4/models/models_0.d.ts +0 -350
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  50. package/package.json +26 -26
@@ -3,107 +3,75 @@ import { AthenaServiceException as __BaseException } from "./AthenaServiceExcept
3
3
  export declare enum S3AclOption {
4
4
  BUCKET_OWNER_FULL_CONTROL = "BUCKET_OWNER_FULL_CONTROL",
5
5
  }
6
-
7
6
  export interface AclConfiguration {
8
7
  S3AclOption: S3AclOption | string | undefined;
9
8
  }
10
-
11
9
  export interface BatchGetNamedQueryInput {
12
10
  NamedQueryIds: string[] | undefined;
13
11
  }
14
-
15
12
  export interface NamedQuery {
16
13
  Name: string | undefined;
17
-
18
14
  Description?: string;
19
-
20
15
  Database: string | undefined;
21
-
22
16
  QueryString: string | undefined;
23
-
24
17
  NamedQueryId?: string;
25
-
26
18
  WorkGroup?: string;
27
19
  }
28
-
29
20
  export interface UnprocessedNamedQueryId {
30
21
  NamedQueryId?: string;
31
-
32
22
  ErrorCode?: string;
33
-
34
23
  ErrorMessage?: string;
35
24
  }
36
25
  export interface BatchGetNamedQueryOutput {
37
26
  NamedQueries?: NamedQuery[];
38
-
39
27
  UnprocessedNamedQueryIds?: UnprocessedNamedQueryId[];
40
28
  }
41
-
42
29
  export declare class InternalServerException extends __BaseException {
43
30
  readonly name: "InternalServerException";
44
31
  readonly $fault: "server";
45
32
  Message?: string;
46
-
47
33
  constructor(
48
34
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
49
35
  );
50
36
  }
51
-
52
37
  export declare class InvalidRequestException extends __BaseException {
53
38
  readonly name: "InvalidRequestException";
54
39
  readonly $fault: "client";
55
-
56
40
  AthenaErrorCode?: string;
57
41
  Message?: string;
58
-
59
42
  constructor(
60
43
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
61
44
  );
62
45
  }
63
46
  export interface BatchGetPreparedStatementInput {
64
47
  PreparedStatementNames: string[] | undefined;
65
-
66
48
  WorkGroup: string | undefined;
67
49
  }
68
-
69
50
  export interface PreparedStatement {
70
51
  StatementName?: string;
71
-
72
52
  QueryStatement?: string;
73
-
74
53
  WorkGroupName?: string;
75
-
76
54
  Description?: string;
77
-
78
55
  LastModifiedTime?: Date;
79
56
  }
80
-
81
57
  export interface UnprocessedPreparedStatementName {
82
58
  StatementName?: string;
83
-
84
59
  ErrorCode?: string;
85
-
86
60
  ErrorMessage?: string;
87
61
  }
88
62
  export interface BatchGetPreparedStatementOutput {
89
63
  PreparedStatements?: PreparedStatement[];
90
-
91
64
  UnprocessedPreparedStatementNames?: UnprocessedPreparedStatementName[];
92
65
  }
93
-
94
66
  export interface BatchGetQueryExecutionInput {
95
67
  QueryExecutionIds: string[] | undefined;
96
68
  }
97
-
98
69
  export interface EngineVersion {
99
70
  SelectedEngineVersion?: string;
100
-
101
71
  EffectiveEngineVersion?: string;
102
72
  }
103
-
104
73
  export interface QueryExecutionContext {
105
74
  Database?: string;
106
-
107
75
  Catalog?: string;
108
76
  }
109
77
  export declare enum EncryptionOption {
@@ -111,20 +79,14 @@ export declare enum EncryptionOption {
111
79
  SSE_KMS = "SSE_KMS",
112
80
  SSE_S3 = "SSE_S3",
113
81
  }
114
-
115
82
  export interface EncryptionConfiguration {
116
83
  EncryptionOption: EncryptionOption | string | undefined;
117
-
118
84
  KmsKey?: string;
119
85
  }
120
-
121
86
  export interface ResultConfiguration {
122
87
  OutputLocation?: string;
123
-
124
88
  EncryptionConfiguration?: EncryptionConfiguration;
125
-
126
89
  ExpectedBucketOwner?: string;
127
-
128
90
  AclConfiguration?: AclConfiguration;
129
91
  }
130
92
  export declare enum StatementType {
@@ -132,30 +94,19 @@ export declare enum StatementType {
132
94
  DML = "DML",
133
95
  UTILITY = "UTILITY",
134
96
  }
135
-
136
97
  export interface QueryExecutionStatistics {
137
98
  EngineExecutionTimeInMillis?: number;
138
-
139
99
  DataScannedInBytes?: number;
140
-
141
100
  DataManifestLocation?: string;
142
-
143
101
  TotalExecutionTimeInMillis?: number;
144
-
145
102
  QueryQueueTimeInMillis?: number;
146
-
147
103
  QueryPlanningTimeInMillis?: number;
148
-
149
104
  ServiceProcessingTimeInMillis?: number;
150
105
  }
151
-
152
106
  export interface AthenaError {
153
107
  ErrorCategory?: number;
154
-
155
108
  ErrorType?: number;
156
-
157
109
  Retryable?: boolean;
158
-
159
110
  ErrorMessage?: string;
160
111
  }
161
112
  export declare enum QueryExecutionState {
@@ -165,57 +116,36 @@ export declare enum QueryExecutionState {
165
116
  RUNNING = "RUNNING",
166
117
  SUCCEEDED = "SUCCEEDED",
167
118
  }
168
-
169
119
  export interface QueryExecutionStatus {
170
120
  State?: QueryExecutionState | string;
171
-
172
121
  StateChangeReason?: string;
173
-
174
122
  SubmissionDateTime?: Date;
175
-
176
123
  CompletionDateTime?: Date;
177
-
178
124
  AthenaError?: AthenaError;
179
125
  }
180
-
181
126
  export interface QueryExecution {
182
127
  QueryExecutionId?: string;
183
-
184
128
  Query?: string;
185
-
186
129
  StatementType?: StatementType | string;
187
-
188
130
  ResultConfiguration?: ResultConfiguration;
189
-
190
131
  QueryExecutionContext?: QueryExecutionContext;
191
-
192
132
  Status?: QueryExecutionStatus;
193
-
194
133
  Statistics?: QueryExecutionStatistics;
195
-
196
134
  WorkGroup?: string;
197
-
198
135
  EngineVersion?: EngineVersion;
199
-
200
136
  ExecutionParameters?: string[];
201
137
  }
202
-
203
138
  export interface UnprocessedQueryExecutionId {
204
139
  QueryExecutionId?: string;
205
-
206
140
  ErrorCode?: string;
207
-
208
141
  ErrorMessage?: string;
209
142
  }
210
143
  export interface BatchGetQueryExecutionOutput {
211
144
  QueryExecutions?: QueryExecution[];
212
-
213
145
  UnprocessedQueryExecutionIds?: UnprocessedQueryExecutionId[];
214
146
  }
215
-
216
147
  export interface Tag {
217
148
  Key?: string;
218
-
219
149
  Value?: string;
220
150
  }
221
151
  export declare enum DataCatalogType {
@@ -225,27 +155,18 @@ export declare enum DataCatalogType {
225
155
  }
226
156
  export interface CreateDataCatalogInput {
227
157
  Name: string | undefined;
228
-
229
158
  Type: DataCatalogType | string | undefined;
230
-
231
159
  Description?: string;
232
-
233
160
  Parameters?: Record<string, string>;
234
-
235
161
  Tags?: Tag[];
236
162
  }
237
163
  export interface CreateDataCatalogOutput {}
238
164
  export interface CreateNamedQueryInput {
239
165
  Name: string | undefined;
240
-
241
166
  Description?: string;
242
-
243
167
  Database: string | undefined;
244
-
245
168
  QueryString: string | undefined;
246
-
247
169
  ClientRequestToken?: string;
248
-
249
170
  WorkGroup?: string;
250
171
  }
251
172
  export interface CreateNamedQueryOutput {
@@ -253,35 +174,23 @@ export interface CreateNamedQueryOutput {
253
174
  }
254
175
  export interface CreatePreparedStatementInput {
255
176
  StatementName: string | undefined;
256
-
257
177
  WorkGroup: string | undefined;
258
-
259
178
  QueryStatement: string | undefined;
260
-
261
179
  Description?: string;
262
180
  }
263
181
  export interface CreatePreparedStatementOutput {}
264
-
265
182
  export interface WorkGroupConfiguration {
266
183
  ResultConfiguration?: ResultConfiguration;
267
-
268
184
  EnforceWorkGroupConfiguration?: boolean;
269
-
270
185
  PublishCloudWatchMetricsEnabled?: boolean;
271
-
272
186
  BytesScannedCutoffPerQuery?: number;
273
-
274
187
  RequesterPaysEnabled?: boolean;
275
-
276
188
  EngineVersion?: EngineVersion;
277
189
  }
278
190
  export interface CreateWorkGroupInput {
279
191
  Name: string | undefined;
280
-
281
192
  Configuration?: WorkGroupConfiguration;
282
-
283
193
  Description?: string;
284
-
285
194
  Tags?: Tag[];
286
195
  }
287
196
  export interface CreateWorkGroupOutput {}
@@ -295,63 +204,48 @@ export interface DeleteNamedQueryInput {
295
204
  export interface DeleteNamedQueryOutput {}
296
205
  export interface DeletePreparedStatementInput {
297
206
  StatementName: string | undefined;
298
-
299
207
  WorkGroup: string | undefined;
300
208
  }
301
209
  export interface DeletePreparedStatementOutput {}
302
-
303
210
  export declare class ResourceNotFoundException extends __BaseException {
304
211
  readonly name: "ResourceNotFoundException";
305
212
  readonly $fault: "client";
306
213
  Message?: string;
307
-
308
214
  ResourceName?: string;
309
-
310
215
  constructor(
311
216
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
312
217
  );
313
218
  }
314
219
  export interface DeleteWorkGroupInput {
315
220
  WorkGroup: string | undefined;
316
-
317
221
  RecursiveDeleteOption?: boolean;
318
222
  }
319
223
  export interface DeleteWorkGroupOutput {}
320
224
  export interface GetDatabaseInput {
321
225
  CatalogName: string | undefined;
322
-
323
226
  DatabaseName: string | undefined;
324
227
  }
325
-
326
228
  export interface Database {
327
229
  Name: string | undefined;
328
-
329
230
  Description?: string;
330
-
331
231
  Parameters?: Record<string, string>;
332
232
  }
333
233
  export interface GetDatabaseOutput {
334
234
  Database?: Database;
335
235
  }
336
-
337
236
  export declare class MetadataException extends __BaseException {
338
237
  readonly name: "MetadataException";
339
238
  readonly $fault: "client";
340
239
  Message?: string;
341
-
342
240
  constructor(opts: __ExceptionOptionType<MetadataException, __BaseException>);
343
241
  }
344
242
  export interface GetDataCatalogInput {
345
243
  Name: string | undefined;
346
244
  }
347
-
348
245
  export interface DataCatalog {
349
246
  Name: string | undefined;
350
-
351
247
  Description?: string;
352
-
353
248
  Type: DataCatalogType | string | undefined;
354
-
355
249
  Parameters?: Record<string, string>;
356
250
  }
357
251
  export interface GetDataCatalogOutput {
@@ -365,7 +259,6 @@ export interface GetNamedQueryOutput {
365
259
  }
366
260
  export interface GetPreparedStatementInput {
367
261
  StatementName: string | undefined;
368
-
369
262
  WorkGroup: string | undefined;
370
263
  }
371
264
  export interface GetPreparedStatementOutput {
@@ -379,9 +272,7 @@ export interface GetQueryExecutionOutput {
379
272
  }
380
273
  export interface GetQueryResultsInput {
381
274
  QueryExecutionId: string | undefined;
382
-
383
275
  NextToken?: string;
384
-
385
276
  MaxResults?: number;
386
277
  }
387
278
  export declare enum ColumnNullable {
@@ -389,107 +280,69 @@ export declare enum ColumnNullable {
389
280
  NULLABLE = "NULLABLE",
390
281
  UNKNOWN = "UNKNOWN",
391
282
  }
392
-
393
283
  export interface ColumnInfo {
394
284
  CatalogName?: string;
395
-
396
285
  SchemaName?: string;
397
-
398
286
  TableName?: string;
399
-
400
287
  Name: string | undefined;
401
-
402
288
  Label?: string;
403
-
404
289
  Type: string | undefined;
405
-
406
290
  Precision?: number;
407
-
408
291
  Scale?: number;
409
-
410
292
  Nullable?: ColumnNullable | string;
411
-
412
293
  CaseSensitive?: boolean;
413
294
  }
414
-
415
295
  export interface ResultSetMetadata {
416
296
  ColumnInfo?: ColumnInfo[];
417
297
  }
418
-
419
298
  export interface Datum {
420
299
  VarCharValue?: string;
421
300
  }
422
-
423
301
  export interface Row {
424
302
  Data?: Datum[];
425
303
  }
426
-
427
304
  export interface ResultSet {
428
305
  Rows?: Row[];
429
-
430
306
  ResultSetMetadata?: ResultSetMetadata;
431
307
  }
432
308
  export interface GetQueryResultsOutput {
433
309
  UpdateCount?: number;
434
-
435
310
  ResultSet?: ResultSet;
436
-
437
311
  NextToken?: string;
438
312
  }
439
313
  export interface GetQueryRuntimeStatisticsInput {
440
314
  QueryExecutionId: string | undefined;
441
315
  }
442
-
443
316
  export interface QueryRuntimeStatisticsRows {
444
317
  InputRows?: number;
445
-
446
318
  InputBytes?: number;
447
-
448
319
  OutputBytes?: number;
449
-
450
320
  OutputRows?: number;
451
321
  }
452
-
453
322
  export interface QueryRuntimeStatisticsTimeline {
454
323
  QueryQueueTimeInMillis?: number;
455
-
456
324
  QueryPlanningTimeInMillis?: number;
457
-
458
325
  EngineExecutionTimeInMillis?: number;
459
-
460
326
  ServiceProcessingTimeInMillis?: number;
461
-
462
327
  TotalExecutionTimeInMillis?: number;
463
328
  }
464
329
  export interface GetTableMetadataInput {
465
330
  CatalogName: string | undefined;
466
-
467
331
  DatabaseName: string | undefined;
468
-
469
332
  TableName: string | undefined;
470
333
  }
471
-
472
334
  export interface Column {
473
335
  Name: string | undefined;
474
-
475
336
  Type?: string;
476
-
477
337
  Comment?: string;
478
338
  }
479
-
480
339
  export interface TableMetadata {
481
340
  Name: string | undefined;
482
-
483
341
  CreateTime?: Date;
484
-
485
342
  LastAccessTime?: Date;
486
-
487
343
  TableType?: string;
488
-
489
344
  Columns?: Column[];
490
-
491
345
  PartitionKeys?: Column[];
492
-
493
346
  Parameters?: Record<string, string>;
494
347
  }
495
348
  export interface GetTableMetadataOutput {
@@ -502,16 +355,11 @@ export declare enum WorkGroupState {
502
355
  DISABLED = "DISABLED",
503
356
  ENABLED = "ENABLED",
504
357
  }
505
-
506
358
  export interface WorkGroup {
507
359
  Name: string | undefined;
508
-
509
360
  State?: WorkGroupState | string;
510
-
511
361
  Configuration?: WorkGroupConfiguration;
512
-
513
362
  Description?: string;
514
-
515
363
  CreationTime?: Date;
516
364
  }
517
365
  export interface GetWorkGroupOutput {
@@ -519,145 +367,105 @@ export interface GetWorkGroupOutput {
519
367
  }
520
368
  export interface ListDatabasesInput {
521
369
  CatalogName: string | undefined;
522
-
523
370
  NextToken?: string;
524
-
525
371
  MaxResults?: number;
526
372
  }
527
373
  export interface ListDatabasesOutput {
528
374
  DatabaseList?: Database[];
529
-
530
375
  NextToken?: string;
531
376
  }
532
377
  export interface ListDataCatalogsInput {
533
378
  NextToken?: string;
534
-
535
379
  MaxResults?: number;
536
380
  }
537
-
538
381
  export interface DataCatalogSummary {
539
382
  CatalogName?: string;
540
-
541
383
  Type?: DataCatalogType | string;
542
384
  }
543
385
  export interface ListDataCatalogsOutput {
544
386
  DataCatalogsSummary?: DataCatalogSummary[];
545
-
546
387
  NextToken?: string;
547
388
  }
548
389
  export interface ListEngineVersionsInput {
549
390
  NextToken?: string;
550
-
551
391
  MaxResults?: number;
552
392
  }
553
393
  export interface ListEngineVersionsOutput {
554
394
  EngineVersions?: EngineVersion[];
555
-
556
395
  NextToken?: string;
557
396
  }
558
397
  export interface ListNamedQueriesInput {
559
398
  NextToken?: string;
560
-
561
399
  MaxResults?: number;
562
-
563
400
  WorkGroup?: string;
564
401
  }
565
402
  export interface ListNamedQueriesOutput {
566
403
  NamedQueryIds?: string[];
567
-
568
404
  NextToken?: string;
569
405
  }
570
406
  export interface ListPreparedStatementsInput {
571
407
  WorkGroup: string | undefined;
572
-
573
408
  NextToken?: string;
574
-
575
409
  MaxResults?: number;
576
410
  }
577
-
578
411
  export interface PreparedStatementSummary {
579
412
  StatementName?: string;
580
-
581
413
  LastModifiedTime?: Date;
582
414
  }
583
415
  export interface ListPreparedStatementsOutput {
584
416
  PreparedStatements?: PreparedStatementSummary[];
585
-
586
417
  NextToken?: string;
587
418
  }
588
419
  export interface ListQueryExecutionsInput {
589
420
  NextToken?: string;
590
-
591
421
  MaxResults?: number;
592
-
593
422
  WorkGroup?: string;
594
423
  }
595
424
  export interface ListQueryExecutionsOutput {
596
425
  QueryExecutionIds?: string[];
597
-
598
426
  NextToken?: string;
599
427
  }
600
428
  export interface ListTableMetadataInput {
601
429
  CatalogName: string | undefined;
602
-
603
430
  DatabaseName: string | undefined;
604
-
605
431
  Expression?: string;
606
-
607
432
  NextToken?: string;
608
-
609
433
  MaxResults?: number;
610
434
  }
611
435
  export interface ListTableMetadataOutput {
612
436
  TableMetadataList?: TableMetadata[];
613
-
614
437
  NextToken?: string;
615
438
  }
616
439
  export interface ListTagsForResourceInput {
617
440
  ResourceARN: string | undefined;
618
-
619
441
  NextToken?: string;
620
-
621
442
  MaxResults?: number;
622
443
  }
623
444
  export interface ListTagsForResourceOutput {
624
445
  Tags?: Tag[];
625
-
626
446
  NextToken?: string;
627
447
  }
628
448
  export interface ListWorkGroupsInput {
629
449
  NextToken?: string;
630
-
631
450
  MaxResults?: number;
632
451
  }
633
-
634
452
  export interface WorkGroupSummary {
635
453
  Name?: string;
636
-
637
454
  State?: WorkGroupState | string;
638
-
639
455
  Description?: string;
640
-
641
456
  CreationTime?: Date;
642
-
643
457
  EngineVersion?: EngineVersion;
644
458
  }
645
459
  export interface ListWorkGroupsOutput {
646
460
  WorkGroups?: WorkGroupSummary[];
647
-
648
461
  NextToken?: string;
649
462
  }
650
463
  export interface StartQueryExecutionInput {
651
464
  QueryString: string | undefined;
652
-
653
465
  ClientRequestToken?: string;
654
-
655
466
  QueryExecutionContext?: QueryExecutionContext;
656
-
657
467
  ResultConfiguration?: ResultConfiguration;
658
-
659
468
  WorkGroup?: string;
660
-
661
469
  ExecutionParameters?: string[];
662
470
  }
663
471
  export interface StartQueryExecutionOutput {
@@ -666,14 +474,11 @@ export interface StartQueryExecutionOutput {
666
474
  export declare enum ThrottleReason {
667
475
  CONCURRENT_QUERY_LIMIT_EXCEEDED = "CONCURRENT_QUERY_LIMIT_EXCEEDED",
668
476
  }
669
-
670
477
  export declare class TooManyRequestsException extends __BaseException {
671
478
  readonly name: "TooManyRequestsException";
672
479
  readonly $fault: "client";
673
480
  Message?: string;
674
-
675
481
  Reason?: ThrottleReason | string;
676
-
677
482
  constructor(
678
483
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
679
484
  );
@@ -684,544 +489,389 @@ export interface StopQueryExecutionInput {
684
489
  export interface StopQueryExecutionOutput {}
685
490
  export interface TagResourceInput {
686
491
  ResourceARN: string | undefined;
687
-
688
492
  Tags: Tag[] | undefined;
689
493
  }
690
494
  export interface TagResourceOutput {}
691
495
  export interface UntagResourceInput {
692
496
  ResourceARN: string | undefined;
693
-
694
497
  TagKeys: string[] | undefined;
695
498
  }
696
499
  export interface UntagResourceOutput {}
697
500
  export interface UpdateDataCatalogInput {
698
501
  Name: string | undefined;
699
-
700
502
  Type: DataCatalogType | string | undefined;
701
-
702
503
  Description?: string;
703
-
704
504
  Parameters?: Record<string, string>;
705
505
  }
706
506
  export interface UpdateDataCatalogOutput {}
707
507
  export interface UpdateNamedQueryInput {
708
508
  NamedQueryId: string | undefined;
709
-
710
509
  Name: string | undefined;
711
-
712
510
  Description?: string;
713
-
714
511
  QueryString: string | undefined;
715
512
  }
716
513
  export interface UpdateNamedQueryOutput {}
717
514
  export interface UpdatePreparedStatementInput {
718
515
  StatementName: string | undefined;
719
-
720
516
  WorkGroup: string | undefined;
721
-
722
517
  QueryStatement: string | undefined;
723
-
724
518
  Description?: string;
725
519
  }
726
520
  export interface UpdatePreparedStatementOutput {}
727
-
728
521
  export interface ResultConfigurationUpdates {
729
522
  OutputLocation?: string;
730
-
731
523
  RemoveOutputLocation?: boolean;
732
-
733
524
  EncryptionConfiguration?: EncryptionConfiguration;
734
-
735
525
  RemoveEncryptionConfiguration?: boolean;
736
-
737
526
  ExpectedBucketOwner?: string;
738
-
739
527
  RemoveExpectedBucketOwner?: boolean;
740
-
741
528
  AclConfiguration?: AclConfiguration;
742
-
743
529
  RemoveAclConfiguration?: boolean;
744
530
  }
745
-
746
531
  export interface WorkGroupConfigurationUpdates {
747
532
  EnforceWorkGroupConfiguration?: boolean;
748
-
749
533
  ResultConfigurationUpdates?: ResultConfigurationUpdates;
750
-
751
534
  PublishCloudWatchMetricsEnabled?: boolean;
752
-
753
535
  BytesScannedCutoffPerQuery?: number;
754
-
755
536
  RemoveBytesScannedCutoffPerQuery?: boolean;
756
-
757
537
  RequesterPaysEnabled?: boolean;
758
-
759
538
  EngineVersion?: EngineVersion;
760
539
  }
761
540
  export interface UpdateWorkGroupInput {
762
541
  WorkGroup: string | undefined;
763
-
764
542
  Description?: string;
765
-
766
543
  ConfigurationUpdates?: WorkGroupConfigurationUpdates;
767
-
768
544
  State?: WorkGroupState | string;
769
545
  }
770
546
  export interface UpdateWorkGroupOutput {}
771
-
772
547
  export interface QueryStagePlanNode {
773
548
  Name?: string;
774
-
775
549
  Identifier?: string;
776
-
777
550
  Children?: QueryStagePlanNode[];
778
-
779
551
  RemoteSources?: string[];
780
552
  }
781
-
782
553
  export interface QueryStage {
783
554
  StageId?: number;
784
-
785
555
  State?: string;
786
-
787
556
  OutputBytes?: number;
788
-
789
557
  OutputRows?: number;
790
-
791
558
  InputBytes?: number;
792
-
793
559
  InputRows?: number;
794
-
795
560
  ExecutionTime?: number;
796
-
797
561
  QueryStagePlan?: QueryStagePlanNode;
798
-
799
562
  SubStages?: QueryStage[];
800
563
  }
801
-
802
564
  export interface QueryRuntimeStatistics {
803
565
  Timeline?: QueryRuntimeStatisticsTimeline;
804
-
805
566
  Rows?: QueryRuntimeStatisticsRows;
806
-
807
567
  OutputStage?: QueryStage;
808
568
  }
809
569
  export interface GetQueryRuntimeStatisticsOutput {
810
570
  QueryRuntimeStatistics?: QueryRuntimeStatistics;
811
571
  }
812
-
813
572
  export declare const AclConfigurationFilterSensitiveLog: (
814
573
  obj: AclConfiguration
815
574
  ) => any;
816
-
817
575
  export declare const BatchGetNamedQueryInputFilterSensitiveLog: (
818
576
  obj: BatchGetNamedQueryInput
819
577
  ) => any;
820
-
821
578
  export declare const NamedQueryFilterSensitiveLog: (obj: NamedQuery) => any;
822
-
823
579
  export declare const UnprocessedNamedQueryIdFilterSensitiveLog: (
824
580
  obj: UnprocessedNamedQueryId
825
581
  ) => any;
826
-
827
582
  export declare const BatchGetNamedQueryOutputFilterSensitiveLog: (
828
583
  obj: BatchGetNamedQueryOutput
829
584
  ) => any;
830
-
831
585
  export declare const BatchGetPreparedStatementInputFilterSensitiveLog: (
832
586
  obj: BatchGetPreparedStatementInput
833
587
  ) => any;
834
-
835
588
  export declare const PreparedStatementFilterSensitiveLog: (
836
589
  obj: PreparedStatement
837
590
  ) => any;
838
-
839
591
  export declare const UnprocessedPreparedStatementNameFilterSensitiveLog: (
840
592
  obj: UnprocessedPreparedStatementName
841
593
  ) => any;
842
-
843
594
  export declare const BatchGetPreparedStatementOutputFilterSensitiveLog: (
844
595
  obj: BatchGetPreparedStatementOutput
845
596
  ) => any;
846
-
847
597
  export declare const BatchGetQueryExecutionInputFilterSensitiveLog: (
848
598
  obj: BatchGetQueryExecutionInput
849
599
  ) => any;
850
-
851
600
  export declare const EngineVersionFilterSensitiveLog: (
852
601
  obj: EngineVersion
853
602
  ) => any;
854
-
855
603
  export declare const QueryExecutionContextFilterSensitiveLog: (
856
604
  obj: QueryExecutionContext
857
605
  ) => any;
858
-
859
606
  export declare const EncryptionConfigurationFilterSensitiveLog: (
860
607
  obj: EncryptionConfiguration
861
608
  ) => any;
862
-
863
609
  export declare const ResultConfigurationFilterSensitiveLog: (
864
610
  obj: ResultConfiguration
865
611
  ) => any;
866
-
867
612
  export declare const QueryExecutionStatisticsFilterSensitiveLog: (
868
613
  obj: QueryExecutionStatistics
869
614
  ) => any;
870
-
871
615
  export declare const AthenaErrorFilterSensitiveLog: (obj: AthenaError) => any;
872
-
873
616
  export declare const QueryExecutionStatusFilterSensitiveLog: (
874
617
  obj: QueryExecutionStatus
875
618
  ) => any;
876
-
877
619
  export declare const QueryExecutionFilterSensitiveLog: (
878
620
  obj: QueryExecution
879
621
  ) => any;
880
-
881
622
  export declare const UnprocessedQueryExecutionIdFilterSensitiveLog: (
882
623
  obj: UnprocessedQueryExecutionId
883
624
  ) => any;
884
-
885
625
  export declare const BatchGetQueryExecutionOutputFilterSensitiveLog: (
886
626
  obj: BatchGetQueryExecutionOutput
887
627
  ) => any;
888
-
889
628
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
890
-
891
629
  export declare const CreateDataCatalogInputFilterSensitiveLog: (
892
630
  obj: CreateDataCatalogInput
893
631
  ) => any;
894
-
895
632
  export declare const CreateDataCatalogOutputFilterSensitiveLog: (
896
633
  obj: CreateDataCatalogOutput
897
634
  ) => any;
898
-
899
635
  export declare const CreateNamedQueryInputFilterSensitiveLog: (
900
636
  obj: CreateNamedQueryInput
901
637
  ) => any;
902
-
903
638
  export declare const CreateNamedQueryOutputFilterSensitiveLog: (
904
639
  obj: CreateNamedQueryOutput
905
640
  ) => any;
906
-
907
641
  export declare const CreatePreparedStatementInputFilterSensitiveLog: (
908
642
  obj: CreatePreparedStatementInput
909
643
  ) => any;
910
-
911
644
  export declare const CreatePreparedStatementOutputFilterSensitiveLog: (
912
645
  obj: CreatePreparedStatementOutput
913
646
  ) => any;
914
-
915
647
  export declare const WorkGroupConfigurationFilterSensitiveLog: (
916
648
  obj: WorkGroupConfiguration
917
649
  ) => any;
918
-
919
650
  export declare const CreateWorkGroupInputFilterSensitiveLog: (
920
651
  obj: CreateWorkGroupInput
921
652
  ) => any;
922
-
923
653
  export declare const CreateWorkGroupOutputFilterSensitiveLog: (
924
654
  obj: CreateWorkGroupOutput
925
655
  ) => any;
926
-
927
656
  export declare const DeleteDataCatalogInputFilterSensitiveLog: (
928
657
  obj: DeleteDataCatalogInput
929
658
  ) => any;
930
-
931
659
  export declare const DeleteDataCatalogOutputFilterSensitiveLog: (
932
660
  obj: DeleteDataCatalogOutput
933
661
  ) => any;
934
-
935
662
  export declare const DeleteNamedQueryInputFilterSensitiveLog: (
936
663
  obj: DeleteNamedQueryInput
937
664
  ) => any;
938
-
939
665
  export declare const DeleteNamedQueryOutputFilterSensitiveLog: (
940
666
  obj: DeleteNamedQueryOutput
941
667
  ) => any;
942
-
943
668
  export declare const DeletePreparedStatementInputFilterSensitiveLog: (
944
669
  obj: DeletePreparedStatementInput
945
670
  ) => any;
946
-
947
671
  export declare const DeletePreparedStatementOutputFilterSensitiveLog: (
948
672
  obj: DeletePreparedStatementOutput
949
673
  ) => any;
950
-
951
674
  export declare const DeleteWorkGroupInputFilterSensitiveLog: (
952
675
  obj: DeleteWorkGroupInput
953
676
  ) => any;
954
-
955
677
  export declare const DeleteWorkGroupOutputFilterSensitiveLog: (
956
678
  obj: DeleteWorkGroupOutput
957
679
  ) => any;
958
-
959
680
  export declare const GetDatabaseInputFilterSensitiveLog: (
960
681
  obj: GetDatabaseInput
961
682
  ) => any;
962
-
963
683
  export declare const DatabaseFilterSensitiveLog: (obj: Database) => any;
964
-
965
684
  export declare const GetDatabaseOutputFilterSensitiveLog: (
966
685
  obj: GetDatabaseOutput
967
686
  ) => any;
968
-
969
687
  export declare const GetDataCatalogInputFilterSensitiveLog: (
970
688
  obj: GetDataCatalogInput
971
689
  ) => any;
972
-
973
690
  export declare const DataCatalogFilterSensitiveLog: (obj: DataCatalog) => any;
974
-
975
691
  export declare const GetDataCatalogOutputFilterSensitiveLog: (
976
692
  obj: GetDataCatalogOutput
977
693
  ) => any;
978
-
979
694
  export declare const GetNamedQueryInputFilterSensitiveLog: (
980
695
  obj: GetNamedQueryInput
981
696
  ) => any;
982
-
983
697
  export declare const GetNamedQueryOutputFilterSensitiveLog: (
984
698
  obj: GetNamedQueryOutput
985
699
  ) => any;
986
-
987
700
  export declare const GetPreparedStatementInputFilterSensitiveLog: (
988
701
  obj: GetPreparedStatementInput
989
702
  ) => any;
990
-
991
703
  export declare const GetPreparedStatementOutputFilterSensitiveLog: (
992
704
  obj: GetPreparedStatementOutput
993
705
  ) => any;
994
-
995
706
  export declare const GetQueryExecutionInputFilterSensitiveLog: (
996
707
  obj: GetQueryExecutionInput
997
708
  ) => any;
998
-
999
709
  export declare const GetQueryExecutionOutputFilterSensitiveLog: (
1000
710
  obj: GetQueryExecutionOutput
1001
711
  ) => any;
1002
-
1003
712
  export declare const GetQueryResultsInputFilterSensitiveLog: (
1004
713
  obj: GetQueryResultsInput
1005
714
  ) => any;
1006
-
1007
715
  export declare const ColumnInfoFilterSensitiveLog: (obj: ColumnInfo) => any;
1008
-
1009
716
  export declare const ResultSetMetadataFilterSensitiveLog: (
1010
717
  obj: ResultSetMetadata
1011
718
  ) => any;
1012
-
1013
719
  export declare const DatumFilterSensitiveLog: (obj: Datum) => any;
1014
-
1015
720
  export declare const RowFilterSensitiveLog: (obj: Row) => any;
1016
-
1017
721
  export declare const ResultSetFilterSensitiveLog: (obj: ResultSet) => any;
1018
-
1019
722
  export declare const GetQueryResultsOutputFilterSensitiveLog: (
1020
723
  obj: GetQueryResultsOutput
1021
724
  ) => any;
1022
-
1023
725
  export declare const GetQueryRuntimeStatisticsInputFilterSensitiveLog: (
1024
726
  obj: GetQueryRuntimeStatisticsInput
1025
727
  ) => any;
1026
-
1027
728
  export declare const QueryRuntimeStatisticsRowsFilterSensitiveLog: (
1028
729
  obj: QueryRuntimeStatisticsRows
1029
730
  ) => any;
1030
-
1031
731
  export declare const QueryRuntimeStatisticsTimelineFilterSensitiveLog: (
1032
732
  obj: QueryRuntimeStatisticsTimeline
1033
733
  ) => any;
1034
-
1035
734
  export declare const GetTableMetadataInputFilterSensitiveLog: (
1036
735
  obj: GetTableMetadataInput
1037
736
  ) => any;
1038
-
1039
737
  export declare const ColumnFilterSensitiveLog: (obj: Column) => any;
1040
-
1041
738
  export declare const TableMetadataFilterSensitiveLog: (
1042
739
  obj: TableMetadata
1043
740
  ) => any;
1044
-
1045
741
  export declare const GetTableMetadataOutputFilterSensitiveLog: (
1046
742
  obj: GetTableMetadataOutput
1047
743
  ) => any;
1048
-
1049
744
  export declare const GetWorkGroupInputFilterSensitiveLog: (
1050
745
  obj: GetWorkGroupInput
1051
746
  ) => any;
1052
-
1053
747
  export declare const WorkGroupFilterSensitiveLog: (obj: WorkGroup) => any;
1054
-
1055
748
  export declare const GetWorkGroupOutputFilterSensitiveLog: (
1056
749
  obj: GetWorkGroupOutput
1057
750
  ) => any;
1058
-
1059
751
  export declare const ListDatabasesInputFilterSensitiveLog: (
1060
752
  obj: ListDatabasesInput
1061
753
  ) => any;
1062
-
1063
754
  export declare const ListDatabasesOutputFilterSensitiveLog: (
1064
755
  obj: ListDatabasesOutput
1065
756
  ) => any;
1066
-
1067
757
  export declare const ListDataCatalogsInputFilterSensitiveLog: (
1068
758
  obj: ListDataCatalogsInput
1069
759
  ) => any;
1070
-
1071
760
  export declare const DataCatalogSummaryFilterSensitiveLog: (
1072
761
  obj: DataCatalogSummary
1073
762
  ) => any;
1074
-
1075
763
  export declare const ListDataCatalogsOutputFilterSensitiveLog: (
1076
764
  obj: ListDataCatalogsOutput
1077
765
  ) => any;
1078
-
1079
766
  export declare const ListEngineVersionsInputFilterSensitiveLog: (
1080
767
  obj: ListEngineVersionsInput
1081
768
  ) => any;
1082
-
1083
769
  export declare const ListEngineVersionsOutputFilterSensitiveLog: (
1084
770
  obj: ListEngineVersionsOutput
1085
771
  ) => any;
1086
-
1087
772
  export declare const ListNamedQueriesInputFilterSensitiveLog: (
1088
773
  obj: ListNamedQueriesInput
1089
774
  ) => any;
1090
-
1091
775
  export declare const ListNamedQueriesOutputFilterSensitiveLog: (
1092
776
  obj: ListNamedQueriesOutput
1093
777
  ) => any;
1094
-
1095
778
  export declare const ListPreparedStatementsInputFilterSensitiveLog: (
1096
779
  obj: ListPreparedStatementsInput
1097
780
  ) => any;
1098
-
1099
781
  export declare const PreparedStatementSummaryFilterSensitiveLog: (
1100
782
  obj: PreparedStatementSummary
1101
783
  ) => any;
1102
-
1103
784
  export declare const ListPreparedStatementsOutputFilterSensitiveLog: (
1104
785
  obj: ListPreparedStatementsOutput
1105
786
  ) => any;
1106
-
1107
787
  export declare const ListQueryExecutionsInputFilterSensitiveLog: (
1108
788
  obj: ListQueryExecutionsInput
1109
789
  ) => any;
1110
-
1111
790
  export declare const ListQueryExecutionsOutputFilterSensitiveLog: (
1112
791
  obj: ListQueryExecutionsOutput
1113
792
  ) => any;
1114
-
1115
793
  export declare const ListTableMetadataInputFilterSensitiveLog: (
1116
794
  obj: ListTableMetadataInput
1117
795
  ) => any;
1118
-
1119
796
  export declare const ListTableMetadataOutputFilterSensitiveLog: (
1120
797
  obj: ListTableMetadataOutput
1121
798
  ) => any;
1122
-
1123
799
  export declare const ListTagsForResourceInputFilterSensitiveLog: (
1124
800
  obj: ListTagsForResourceInput
1125
801
  ) => any;
1126
-
1127
802
  export declare const ListTagsForResourceOutputFilterSensitiveLog: (
1128
803
  obj: ListTagsForResourceOutput
1129
804
  ) => any;
1130
-
1131
805
  export declare const ListWorkGroupsInputFilterSensitiveLog: (
1132
806
  obj: ListWorkGroupsInput
1133
807
  ) => any;
1134
-
1135
808
  export declare const WorkGroupSummaryFilterSensitiveLog: (
1136
809
  obj: WorkGroupSummary
1137
810
  ) => any;
1138
-
1139
811
  export declare const ListWorkGroupsOutputFilterSensitiveLog: (
1140
812
  obj: ListWorkGroupsOutput
1141
813
  ) => any;
1142
-
1143
814
  export declare const StartQueryExecutionInputFilterSensitiveLog: (
1144
815
  obj: StartQueryExecutionInput
1145
816
  ) => any;
1146
-
1147
817
  export declare const StartQueryExecutionOutputFilterSensitiveLog: (
1148
818
  obj: StartQueryExecutionOutput
1149
819
  ) => any;
1150
-
1151
820
  export declare const StopQueryExecutionInputFilterSensitiveLog: (
1152
821
  obj: StopQueryExecutionInput
1153
822
  ) => any;
1154
-
1155
823
  export declare const StopQueryExecutionOutputFilterSensitiveLog: (
1156
824
  obj: StopQueryExecutionOutput
1157
825
  ) => any;
1158
-
1159
826
  export declare const TagResourceInputFilterSensitiveLog: (
1160
827
  obj: TagResourceInput
1161
828
  ) => any;
1162
-
1163
829
  export declare const TagResourceOutputFilterSensitiveLog: (
1164
830
  obj: TagResourceOutput
1165
831
  ) => any;
1166
-
1167
832
  export declare const UntagResourceInputFilterSensitiveLog: (
1168
833
  obj: UntagResourceInput
1169
834
  ) => any;
1170
-
1171
835
  export declare const UntagResourceOutputFilterSensitiveLog: (
1172
836
  obj: UntagResourceOutput
1173
837
  ) => any;
1174
-
1175
838
  export declare const UpdateDataCatalogInputFilterSensitiveLog: (
1176
839
  obj: UpdateDataCatalogInput
1177
840
  ) => any;
1178
-
1179
841
  export declare const UpdateDataCatalogOutputFilterSensitiveLog: (
1180
842
  obj: UpdateDataCatalogOutput
1181
843
  ) => any;
1182
-
1183
844
  export declare const UpdateNamedQueryInputFilterSensitiveLog: (
1184
845
  obj: UpdateNamedQueryInput
1185
846
  ) => any;
1186
-
1187
847
  export declare const UpdateNamedQueryOutputFilterSensitiveLog: (
1188
848
  obj: UpdateNamedQueryOutput
1189
849
  ) => any;
1190
-
1191
850
  export declare const UpdatePreparedStatementInputFilterSensitiveLog: (
1192
851
  obj: UpdatePreparedStatementInput
1193
852
  ) => any;
1194
-
1195
853
  export declare const UpdatePreparedStatementOutputFilterSensitiveLog: (
1196
854
  obj: UpdatePreparedStatementOutput
1197
855
  ) => any;
1198
-
1199
856
  export declare const ResultConfigurationUpdatesFilterSensitiveLog: (
1200
857
  obj: ResultConfigurationUpdates
1201
858
  ) => any;
1202
-
1203
859
  export declare const WorkGroupConfigurationUpdatesFilterSensitiveLog: (
1204
860
  obj: WorkGroupConfigurationUpdates
1205
861
  ) => any;
1206
-
1207
862
  export declare const UpdateWorkGroupInputFilterSensitiveLog: (
1208
863
  obj: UpdateWorkGroupInput
1209
864
  ) => any;
1210
-
1211
865
  export declare const UpdateWorkGroupOutputFilterSensitiveLog: (
1212
866
  obj: UpdateWorkGroupOutput
1213
867
  ) => any;
1214
-
1215
868
  export declare const QueryStagePlanNodeFilterSensitiveLog: (
1216
869
  obj: QueryStagePlanNode
1217
870
  ) => any;
1218
-
1219
871
  export declare const QueryStageFilterSensitiveLog: (obj: QueryStage) => any;
1220
-
1221
872
  export declare const QueryRuntimeStatisticsFilterSensitiveLog: (
1222
873
  obj: QueryRuntimeStatistics
1223
874
  ) => any;
1224
-
1225
875
  export declare const GetQueryRuntimeStatisticsOutputFilterSensitiveLog: (
1226
876
  obj: GetQueryRuntimeStatisticsOutput
1227
877
  ) => any;