@aws-sdk/client-athena 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +399 -399
- package/dist-types/ts3.4/models/models_0.d.ts +411 -399
- package/package.json +35 -35
|
@@ -59,7 +59,7 @@ export interface NamedQuery {
|
|
|
59
59
|
* <p>The query description.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
Description?: string;
|
|
62
|
+
Description?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* <p>The database to which the query belongs.</p>
|
|
65
65
|
* @public
|
|
@@ -74,12 +74,12 @@ export interface NamedQuery {
|
|
|
74
74
|
* <p>The unique identifier of the query.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
NamedQueryId?: string;
|
|
77
|
+
NamedQueryId?: string | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* <p>The name of the workgroup that contains the named query.</p>
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
|
-
WorkGroup?: string;
|
|
82
|
+
WorkGroup?: string | undefined;
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* <p>Information about a named query ID that could not be processed.</p>
|
|
@@ -90,19 +90,19 @@ export interface UnprocessedNamedQueryId {
|
|
|
90
90
|
* <p>The unique identifier of the named query.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
|
-
NamedQueryId?: string;
|
|
93
|
+
NamedQueryId?: string | undefined;
|
|
94
94
|
/**
|
|
95
95
|
* <p>The error code returned when the processing request for the named query failed, if
|
|
96
96
|
* applicable.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
ErrorCode?: string;
|
|
99
|
+
ErrorCode?: string | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p>The error message returned when the processing request for the named query failed, if
|
|
102
102
|
* applicable.</p>
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
|
-
ErrorMessage?: string;
|
|
105
|
+
ErrorMessage?: string | undefined;
|
|
106
106
|
}
|
|
107
107
|
/**
|
|
108
108
|
* @public
|
|
@@ -112,12 +112,12 @@ export interface BatchGetNamedQueryOutput {
|
|
|
112
112
|
* <p>Information about the named query IDs submitted.</p>
|
|
113
113
|
* @public
|
|
114
114
|
*/
|
|
115
|
-
NamedQueries?: NamedQuery[];
|
|
115
|
+
NamedQueries?: NamedQuery[] | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* <p>Information about provided query IDs.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
UnprocessedNamedQueryIds?: UnprocessedNamedQueryId[];
|
|
120
|
+
UnprocessedNamedQueryIds?: UnprocessedNamedQueryId[] | undefined;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* <p>Indicates a platform issue, which may be due to a transient condition or
|
|
@@ -127,7 +127,7 @@ export interface BatchGetNamedQueryOutput {
|
|
|
127
127
|
export declare class InternalServerException extends __BaseException {
|
|
128
128
|
readonly name: "InternalServerException";
|
|
129
129
|
readonly $fault: "server";
|
|
130
|
-
Message?: string;
|
|
130
|
+
Message?: string | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* @internal
|
|
133
133
|
*/
|
|
@@ -146,8 +146,8 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
146
146
|
* processing request for the named query failed.</p>
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
AthenaErrorCode?: string;
|
|
150
|
-
Message?: string;
|
|
149
|
+
AthenaErrorCode?: string | undefined;
|
|
150
|
+
Message?: string | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* @internal
|
|
153
153
|
*/
|
|
@@ -177,27 +177,27 @@ export interface PreparedStatement {
|
|
|
177
177
|
* <p>The name of the prepared statement.</p>
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
StatementName?: string;
|
|
180
|
+
StatementName?: string | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* <p>The query string for the prepared statement.</p>
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
QueryStatement?: string;
|
|
185
|
+
QueryStatement?: string | undefined;
|
|
186
186
|
/**
|
|
187
187
|
* <p>The name of the workgroup to which the prepared statement belongs.</p>
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
WorkGroupName?: string;
|
|
190
|
+
WorkGroupName?: string | undefined;
|
|
191
191
|
/**
|
|
192
192
|
* <p>The description of the prepared statement.</p>
|
|
193
193
|
* @public
|
|
194
194
|
*/
|
|
195
|
-
Description?: string;
|
|
195
|
+
Description?: string | undefined;
|
|
196
196
|
/**
|
|
197
197
|
* <p>The last modified time of the prepared statement.</p>
|
|
198
198
|
* @public
|
|
199
199
|
*/
|
|
200
|
-
LastModifiedTime?: Date;
|
|
200
|
+
LastModifiedTime?: Date | undefined;
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
203
|
* <p>The name of a prepared statement that could not be returned.</p>
|
|
@@ -208,12 +208,12 @@ export interface UnprocessedPreparedStatementName {
|
|
|
208
208
|
* <p>The name of a prepared statement that could not be returned due to an error.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
StatementName?: string;
|
|
211
|
+
StatementName?: string | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* <p>The error code returned when the request for the prepared statement failed.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
ErrorCode?: string;
|
|
216
|
+
ErrorCode?: string | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* <p>The error message containing the reason why the prepared statement could not be
|
|
219
219
|
* returned. The following error messages are possible:</p>
|
|
@@ -236,7 +236,7 @@ export interface UnprocessedPreparedStatementName {
|
|
|
236
236
|
* </ul>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
ErrorMessage?: string;
|
|
239
|
+
ErrorMessage?: string | undefined;
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* @public
|
|
@@ -246,13 +246,13 @@ export interface BatchGetPreparedStatementOutput {
|
|
|
246
246
|
* <p>The list of prepared statements returned.</p>
|
|
247
247
|
* @public
|
|
248
248
|
*/
|
|
249
|
-
PreparedStatements?: PreparedStatement[];
|
|
249
|
+
PreparedStatements?: PreparedStatement[] | undefined;
|
|
250
250
|
/**
|
|
251
251
|
* <p>A list of one or more prepared statements that were requested but could not be
|
|
252
252
|
* returned.</p>
|
|
253
253
|
* @public
|
|
254
254
|
*/
|
|
255
|
-
UnprocessedPreparedStatementNames?: UnprocessedPreparedStatementName[];
|
|
255
|
+
UnprocessedPreparedStatementNames?: UnprocessedPreparedStatementName[] | undefined;
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
258
|
* <p>Contains an array of query execution IDs.</p>
|
|
@@ -276,7 +276,7 @@ export interface EngineVersion {
|
|
|
276
276
|
* of <code>ListEngineVersions</code>, including AUTO. The default is AUTO.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
SelectedEngineVersion?: string;
|
|
279
|
+
SelectedEngineVersion?: string | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>Read only. The engine version on which the query runs. If the user requests a valid
|
|
282
282
|
* engine version other than Auto, the effective engine version is the same as the engine
|
|
@@ -286,7 +286,7 @@ export interface EngineVersion {
|
|
|
286
286
|
* <code>EffectiveEngineVersion</code> field is ignored.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
EffectiveEngineVersion?: string;
|
|
289
|
+
EffectiveEngineVersion?: string | undefined;
|
|
290
290
|
}
|
|
291
291
|
/**
|
|
292
292
|
* <p>The database and data catalog context in which the query execution occurs.</p>
|
|
@@ -298,12 +298,12 @@ export interface QueryExecutionContext {
|
|
|
298
298
|
* catalog.</p>
|
|
299
299
|
* @public
|
|
300
300
|
*/
|
|
301
|
-
Database?: string;
|
|
301
|
+
Database?: string | undefined;
|
|
302
302
|
/**
|
|
303
303
|
* <p>The name of the data catalog used in the query execution.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
Catalog?: string;
|
|
306
|
+
Catalog?: string | undefined;
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
309
|
* @public
|
|
@@ -333,7 +333,7 @@ export interface QueryResultsS3AccessGrantsConfiguration {
|
|
|
333
333
|
* result output location.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
CreateUserLevelPrefix?: boolean;
|
|
336
|
+
CreateUserLevelPrefix?: boolean | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* <p>The authentication type used for Amazon S3 access grants. Currently, only
|
|
339
339
|
* <code>DIRECTORY_IDENTITY</code> is supported.</p>
|
|
@@ -376,7 +376,7 @@ export interface EncryptionConfiguration {
|
|
|
376
376
|
* ID.</p>
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
KmsKey?: string;
|
|
379
|
+
KmsKey?: string | undefined;
|
|
380
380
|
}
|
|
381
381
|
/**
|
|
382
382
|
* <p>The location in Amazon S3 where query and calculation results are stored and
|
|
@@ -396,7 +396,7 @@ export interface ResultConfiguration {
|
|
|
396
396
|
* <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
OutputLocation?: string;
|
|
399
|
+
OutputLocation?: string | undefined;
|
|
400
400
|
/**
|
|
401
401
|
* <p>If query and calculation results are encrypted in Amazon S3, indicates the
|
|
402
402
|
* encryption option used (for example, <code>SSE_KMS</code> or <code>CSE_KMS</code>) and
|
|
@@ -407,7 +407,7 @@ export interface ResultConfiguration {
|
|
|
407
407
|
* and <a href="https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html">Workgroup Settings Override Client-Side Settings</a>.</p>
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
410
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* <p>The Amazon Web Services account ID that you expect to be the owner of the Amazon S3 bucket specified by <a>ResultConfiguration$OutputLocation</a>.
|
|
413
413
|
* If set, Athena uses the value for <code>ExpectedBucketOwner</code> when it
|
|
@@ -422,7 +422,7 @@ export interface ResultConfiguration {
|
|
|
422
422
|
* and <a href="https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html">Workgroup Settings Override Client-Side Settings</a>.</p>
|
|
423
423
|
* @public
|
|
424
424
|
*/
|
|
425
|
-
ExpectedBucketOwner?: string;
|
|
425
|
+
ExpectedBucketOwner?: string | undefined;
|
|
426
426
|
/**
|
|
427
427
|
* <p>Indicates that an Amazon S3 canned ACL should be set to control ownership of
|
|
428
428
|
* stored query results. Currently the only supported canned ACL is
|
|
@@ -432,7 +432,7 @@ export interface ResultConfiguration {
|
|
|
432
432
|
* specified in the workgroup. For more information, see <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a> and <a href="https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html">Workgroup Settings Override Client-Side Settings</a>.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
AclConfiguration?: AclConfiguration;
|
|
435
|
+
AclConfiguration?: AclConfiguration | undefined;
|
|
436
436
|
}
|
|
437
437
|
/**
|
|
438
438
|
* <p>Specifies whether previous query results are reused, and if so, their maximum
|
|
@@ -450,7 +450,7 @@ export interface ResultReuseByAgeConfiguration {
|
|
|
450
450
|
* <p>Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse. The default is 60.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
MaxAgeInMinutes?: number;
|
|
453
|
+
MaxAgeInMinutes?: number | undefined;
|
|
454
454
|
}
|
|
455
455
|
/**
|
|
456
456
|
* <p>Specifies the query result reuse behavior for the query.</p>
|
|
@@ -462,7 +462,7 @@ export interface ResultReuseConfiguration {
|
|
|
462
462
|
* age.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
ResultReuseByAgeConfiguration?: ResultReuseByAgeConfiguration;
|
|
465
|
+
ResultReuseByAgeConfiguration?: ResultReuseByAgeConfiguration | undefined;
|
|
466
466
|
}
|
|
467
467
|
/**
|
|
468
468
|
* @public
|
|
@@ -499,12 +499,12 @@ export interface QueryExecutionStatistics {
|
|
|
499
499
|
* <p>The number of milliseconds that the query took to execute.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
EngineExecutionTimeInMillis?: number;
|
|
502
|
+
EngineExecutionTimeInMillis?: number | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The number of bytes in the data that was queried.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
DataScannedInBytes?: number;
|
|
507
|
+
DataScannedInBytes?: number | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>The location and file name of a data manifest file. The manifest file is saved to the
|
|
510
510
|
* Athena query results location in Amazon S3. The manifest file
|
|
@@ -515,25 +515,25 @@ export interface QueryExecutionStatistics {
|
|
|
515
515
|
* Results, Output Files, and Query History</a> in the <i>Amazon Athena User Guide</i>.</p>
|
|
516
516
|
* @public
|
|
517
517
|
*/
|
|
518
|
-
DataManifestLocation?: string;
|
|
518
|
+
DataManifestLocation?: string | undefined;
|
|
519
519
|
/**
|
|
520
520
|
* <p>The number of milliseconds that Athena took to run the query.</p>
|
|
521
521
|
* @public
|
|
522
522
|
*/
|
|
523
|
-
TotalExecutionTimeInMillis?: number;
|
|
523
|
+
TotalExecutionTimeInMillis?: number | undefined;
|
|
524
524
|
/**
|
|
525
525
|
* <p>The number of milliseconds that the query was in your query queue waiting for
|
|
526
526
|
* resources. Note that if transient errors occur, Athena might automatically
|
|
527
527
|
* add the query back to the queue.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
QueryQueueTimeInMillis?: number;
|
|
530
|
+
QueryQueueTimeInMillis?: number | undefined;
|
|
531
531
|
/**
|
|
532
532
|
* <p>The number of milliseconds that Athena took to preprocess the query before
|
|
533
533
|
* submitting the query to the query engine.</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
ServicePreProcessingTimeInMillis?: number;
|
|
536
|
+
ServicePreProcessingTimeInMillis?: number | undefined;
|
|
537
537
|
/**
|
|
538
538
|
* <p>The number of milliseconds that Athena took to plan the query processing
|
|
539
539
|
* flow. This includes the time spent retrieving table partitions from the data source.
|
|
@@ -541,19 +541,19 @@ export interface QueryExecutionStatistics {
|
|
|
541
541
|
* subset of engine processing time.</p>
|
|
542
542
|
* @public
|
|
543
543
|
*/
|
|
544
|
-
QueryPlanningTimeInMillis?: number;
|
|
544
|
+
QueryPlanningTimeInMillis?: number | undefined;
|
|
545
545
|
/**
|
|
546
546
|
* <p>The number of milliseconds that Athena took to finalize and publish the
|
|
547
547
|
* query results after the query engine finished running the query.</p>
|
|
548
548
|
* @public
|
|
549
549
|
*/
|
|
550
|
-
ServiceProcessingTimeInMillis?: number;
|
|
550
|
+
ServiceProcessingTimeInMillis?: number | undefined;
|
|
551
551
|
/**
|
|
552
552
|
* <p>Contains information about whether previous query results were reused for the
|
|
553
553
|
* query.</p>
|
|
554
554
|
* @public
|
|
555
555
|
*/
|
|
556
|
-
ResultReuseInformation?: ResultReuseInformation;
|
|
556
|
+
ResultReuseInformation?: ResultReuseInformation | undefined;
|
|
557
557
|
}
|
|
558
558
|
/**
|
|
559
559
|
* <p>Provides information about an Athena query error. The
|
|
@@ -576,24 +576,24 @@ export interface AthenaError {
|
|
|
576
576
|
* <b>3</b> - Other</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
ErrorCategory?: number;
|
|
579
|
+
ErrorCategory?: number | undefined;
|
|
580
580
|
/**
|
|
581
581
|
* <p>An integer value that provides specific information about an Athena query
|
|
582
582
|
* error. For the meaning of specific values, see the <a href="https://docs.aws.amazon.com/athena/latest/ug/error-reference.html#error-reference-error-type-reference">Error Type Reference</a> in the <i>Amazon Athena User
|
|
583
583
|
* Guide</i>.</p>
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
ErrorType?: number;
|
|
586
|
+
ErrorType?: number | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* <p>True if the query might succeed if resubmitted.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
Retryable?: boolean;
|
|
591
|
+
Retryable?: boolean | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* <p>Contains a short description of the error that occurred.</p>
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
ErrorMessage?: string;
|
|
596
|
+
ErrorMessage?: string | undefined;
|
|
597
597
|
}
|
|
598
598
|
/**
|
|
599
599
|
* @public
|
|
@@ -631,27 +631,27 @@ export interface QueryExecutionStatus {
|
|
|
631
631
|
* </note>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
State?: QueryExecutionState;
|
|
634
|
+
State?: QueryExecutionState | undefined;
|
|
635
635
|
/**
|
|
636
636
|
* <p>Further detail about the status of the query.</p>
|
|
637
637
|
* @public
|
|
638
638
|
*/
|
|
639
|
-
StateChangeReason?: string;
|
|
639
|
+
StateChangeReason?: string | undefined;
|
|
640
640
|
/**
|
|
641
641
|
* <p>The date and time that the query was submitted.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
SubmissionDateTime?: Date;
|
|
644
|
+
SubmissionDateTime?: Date | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>The date and time that the query completed.</p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
CompletionDateTime?: Date;
|
|
649
|
+
CompletionDateTime?: Date | undefined;
|
|
650
650
|
/**
|
|
651
651
|
* <p>Provides information about an Athena query error.</p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
AthenaError?: AthenaError;
|
|
654
|
+
AthenaError?: AthenaError | undefined;
|
|
655
655
|
}
|
|
656
656
|
/**
|
|
657
657
|
* <p>Information about a single instance of a query execution.</p>
|
|
@@ -662,12 +662,12 @@ export interface QueryExecution {
|
|
|
662
662
|
* <p>The unique identifier for each query execution.</p>
|
|
663
663
|
* @public
|
|
664
664
|
*/
|
|
665
|
-
QueryExecutionId?: string;
|
|
665
|
+
QueryExecutionId?: string | undefined;
|
|
666
666
|
/**
|
|
667
667
|
* <p>The SQL query statements which the query execution ran.</p>
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
Query?: string;
|
|
670
|
+
Query?: string | undefined;
|
|
671
671
|
/**
|
|
672
672
|
* <p>The type of query statement that was run. <code>DDL</code> indicates DDL query
|
|
673
673
|
* statements. <code>DML</code> indicates DML (Data Manipulation Language) query
|
|
@@ -676,7 +676,7 @@ export interface QueryExecution {
|
|
|
676
676
|
* <code>DESCRIBE TABLE</code>.</p>
|
|
677
677
|
* @public
|
|
678
678
|
*/
|
|
679
|
-
StatementType?: StatementType;
|
|
679
|
+
StatementType?: StatementType | undefined;
|
|
680
680
|
/**
|
|
681
681
|
* <p>The location in Amazon S3 where query and calculation results are stored and
|
|
682
682
|
* the encryption option, if any, used for query results. These are known as "client-side
|
|
@@ -685,57 +685,57 @@ export interface QueryExecution {
|
|
|
685
685
|
* the workgroup.</p>
|
|
686
686
|
* @public
|
|
687
687
|
*/
|
|
688
|
-
ResultConfiguration?: ResultConfiguration;
|
|
688
|
+
ResultConfiguration?: ResultConfiguration | undefined;
|
|
689
689
|
/**
|
|
690
690
|
* <p>Specifies the query result reuse behavior that was used for the query.</p>
|
|
691
691
|
* @public
|
|
692
692
|
*/
|
|
693
|
-
ResultReuseConfiguration?: ResultReuseConfiguration;
|
|
693
|
+
ResultReuseConfiguration?: ResultReuseConfiguration | undefined;
|
|
694
694
|
/**
|
|
695
695
|
* <p>The database in which the query execution occurred.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
QueryExecutionContext?: QueryExecutionContext;
|
|
698
|
+
QueryExecutionContext?: QueryExecutionContext | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>The completion date, current state, submission time, and state change reason (if
|
|
701
701
|
* applicable) for the query execution.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
Status?: QueryExecutionStatus;
|
|
704
|
+
Status?: QueryExecutionStatus | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* <p>Query execution statistics, such as the amount of data scanned, the amount of time
|
|
707
707
|
* that the query took to process, and the type of statement that was run.</p>
|
|
708
708
|
* @public
|
|
709
709
|
*/
|
|
710
|
-
Statistics?: QueryExecutionStatistics;
|
|
710
|
+
Statistics?: QueryExecutionStatistics | undefined;
|
|
711
711
|
/**
|
|
712
712
|
* <p>The name of the workgroup in which the query ran.</p>
|
|
713
713
|
* @public
|
|
714
714
|
*/
|
|
715
|
-
WorkGroup?: string;
|
|
715
|
+
WorkGroup?: string | undefined;
|
|
716
716
|
/**
|
|
717
717
|
* <p>The engine version that executed the query.</p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
EngineVersion?: EngineVersion;
|
|
720
|
+
EngineVersion?: EngineVersion | undefined;
|
|
721
721
|
/**
|
|
722
722
|
* <p>A list of values for the parameters in a query. The values are applied sequentially to
|
|
723
723
|
* the parameters in the query in the order in which the parameters occur. The list of
|
|
724
724
|
* parameters is not returned in the response.</p>
|
|
725
725
|
* @public
|
|
726
726
|
*/
|
|
727
|
-
ExecutionParameters?: string[];
|
|
727
|
+
ExecutionParameters?: string[] | undefined;
|
|
728
728
|
/**
|
|
729
729
|
* <p>The kind of query statement that was run.</p>
|
|
730
730
|
* @public
|
|
731
731
|
*/
|
|
732
|
-
SubstatementType?: string;
|
|
732
|
+
SubstatementType?: string | undefined;
|
|
733
733
|
/**
|
|
734
734
|
* <p>Specifies whether Amazon S3 access grants are enabled for query
|
|
735
735
|
* results.</p>
|
|
736
736
|
* @public
|
|
737
737
|
*/
|
|
738
|
-
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration;
|
|
738
|
+
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration | undefined;
|
|
739
739
|
}
|
|
740
740
|
/**
|
|
741
741
|
* <p>Describes a query execution that failed to process.</p>
|
|
@@ -746,19 +746,19 @@ export interface UnprocessedQueryExecutionId {
|
|
|
746
746
|
* <p>The unique identifier of the query execution.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
QueryExecutionId?: string;
|
|
749
|
+
QueryExecutionId?: string | undefined;
|
|
750
750
|
/**
|
|
751
751
|
* <p>The error code returned when the query execution failed to process, if
|
|
752
752
|
* applicable.</p>
|
|
753
753
|
* @public
|
|
754
754
|
*/
|
|
755
|
-
ErrorCode?: string;
|
|
755
|
+
ErrorCode?: string | undefined;
|
|
756
756
|
/**
|
|
757
757
|
* <p>The error message returned when the query execution failed to process, if
|
|
758
758
|
* applicable.</p>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
ErrorMessage?: string;
|
|
761
|
+
ErrorMessage?: string | undefined;
|
|
762
762
|
}
|
|
763
763
|
/**
|
|
764
764
|
* @public
|
|
@@ -768,12 +768,12 @@ export interface BatchGetQueryExecutionOutput {
|
|
|
768
768
|
* <p>Information about a query execution.</p>
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
QueryExecutions?: QueryExecution[];
|
|
771
|
+
QueryExecutions?: QueryExecution[] | undefined;
|
|
772
772
|
/**
|
|
773
773
|
* <p>Information about the query executions that failed to run.</p>
|
|
774
774
|
* @public
|
|
775
775
|
*/
|
|
776
|
-
UnprocessedQueryExecutionIds?: UnprocessedQueryExecutionId[];
|
|
776
|
+
UnprocessedQueryExecutionIds?: UnprocessedQueryExecutionId[] | undefined;
|
|
777
777
|
}
|
|
778
778
|
/**
|
|
779
779
|
* @public
|
|
@@ -811,14 +811,14 @@ export interface Tag {
|
|
|
811
811
|
* : / @. Tag keys are case-sensitive and must be unique per resource. </p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
Key?: string;
|
|
814
|
+
Key?: string | undefined;
|
|
815
815
|
/**
|
|
816
816
|
* <p>A tag value. The tag value length is from 0 to 256 Unicode characters in UTF-8. You
|
|
817
817
|
* can use letters and numbers representable in UTF-8, and the following characters: + - =
|
|
818
818
|
* . _ : / @. Tag values are case-sensitive. </p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
Value?: string;
|
|
821
|
+
Value?: string | undefined;
|
|
822
822
|
}
|
|
823
823
|
/**
|
|
824
824
|
* @public
|
|
@@ -838,7 +838,7 @@ export interface CreateCapacityReservationInput {
|
|
|
838
838
|
* <p>The tags for the capacity reservation.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
Tags?: Tag[];
|
|
841
|
+
Tags?: Tag[] | undefined;
|
|
842
842
|
}
|
|
843
843
|
/**
|
|
844
844
|
* @public
|
|
@@ -881,7 +881,7 @@ export interface CreateDataCatalogInput {
|
|
|
881
881
|
* <p>A description of the data catalog to be created.</p>
|
|
882
882
|
* @public
|
|
883
883
|
*/
|
|
884
|
-
Description?: string;
|
|
884
|
+
Description?: string | undefined;
|
|
885
885
|
/**
|
|
886
886
|
* <p>Specifies the Lambda function or functions to use for creating the data
|
|
887
887
|
* catalog. This is a mapping whose values depend on the catalog type. </p>
|
|
@@ -943,12 +943,12 @@ export interface CreateDataCatalogInput {
|
|
|
943
943
|
* </ul>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
Parameters?: Record<string, string
|
|
946
|
+
Parameters?: Record<string, string> | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>A list of comma separated tags to add to the data catalog that is created.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
Tags?: Tag[];
|
|
951
|
+
Tags?: Tag[] | undefined;
|
|
952
952
|
}
|
|
953
953
|
/**
|
|
954
954
|
* @public
|
|
@@ -968,7 +968,7 @@ export interface CreateNamedQueryInput {
|
|
|
968
968
|
* <p>The query description.</p>
|
|
969
969
|
* @public
|
|
970
970
|
*/
|
|
971
|
-
Description?: string;
|
|
971
|
+
Description?: string | undefined;
|
|
972
972
|
/**
|
|
973
973
|
* <p>The database to which the query belongs.</p>
|
|
974
974
|
* @public
|
|
@@ -992,12 +992,12 @@ export interface CreateNamedQueryInput {
|
|
|
992
992
|
* </important>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
ClientRequestToken?: string;
|
|
995
|
+
ClientRequestToken?: string | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* <p>The name of the workgroup in which the named query is being created.</p>
|
|
998
998
|
* @public
|
|
999
999
|
*/
|
|
1000
|
-
WorkGroup?: string;
|
|
1000
|
+
WorkGroup?: string | undefined;
|
|
1001
1001
|
}
|
|
1002
1002
|
/**
|
|
1003
1003
|
* @public
|
|
@@ -1007,7 +1007,7 @@ export interface CreateNamedQueryOutput {
|
|
|
1007
1007
|
* <p>The unique ID of the query.</p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
NamedQueryId?: string;
|
|
1010
|
+
NamedQueryId?: string | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
/**
|
|
1013
1013
|
* @public
|
|
@@ -1035,7 +1035,7 @@ export interface CreateNotebookInput {
|
|
|
1035
1035
|
* </important>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
ClientRequestToken?: string;
|
|
1038
|
+
ClientRequestToken?: string | undefined;
|
|
1039
1039
|
}
|
|
1040
1040
|
/**
|
|
1041
1041
|
* @public
|
|
@@ -1045,7 +1045,7 @@ export interface CreateNotebookOutput {
|
|
|
1045
1045
|
* <p>A unique identifier for the notebook.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
NotebookId?: string;
|
|
1048
|
+
NotebookId?: string | undefined;
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* @public
|
|
@@ -1065,13 +1065,13 @@ export type ThrottleReason = (typeof ThrottleReason)[keyof typeof ThrottleReason
|
|
|
1065
1065
|
export declare class TooManyRequestsException extends __BaseException {
|
|
1066
1066
|
readonly name: "TooManyRequestsException";
|
|
1067
1067
|
readonly $fault: "client";
|
|
1068
|
-
Message?: string;
|
|
1068
|
+
Message?: string | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>The reason for the query throttling, for example, when it exceeds the concurrent query
|
|
1071
1071
|
* limit.</p>
|
|
1072
1072
|
* @public
|
|
1073
1073
|
*/
|
|
1074
|
-
Reason?: ThrottleReason;
|
|
1074
|
+
Reason?: ThrottleReason | undefined;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* @internal
|
|
1077
1077
|
*/
|
|
@@ -1100,7 +1100,7 @@ export interface CreatePreparedStatementInput {
|
|
|
1100
1100
|
* <p>The description of the prepared statement.</p>
|
|
1101
1101
|
* @public
|
|
1102
1102
|
*/
|
|
1103
|
-
Description?: string;
|
|
1103
|
+
Description?: string | undefined;
|
|
1104
1104
|
}
|
|
1105
1105
|
/**
|
|
1106
1106
|
* @public
|
|
@@ -1145,12 +1145,12 @@ export interface CreatePresignedNotebookUrlResponse {
|
|
|
1145
1145
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1146
1146
|
readonly name: "ResourceNotFoundException";
|
|
1147
1147
|
readonly $fault: "client";
|
|
1148
|
-
Message?: string;
|
|
1148
|
+
Message?: string | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* <p>The name of the Amazon resource.</p>
|
|
1151
1151
|
* @public
|
|
1152
1152
|
*/
|
|
1153
|
-
ResourceName?: string;
|
|
1153
|
+
ResourceName?: string | undefined;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* @internal
|
|
1156
1156
|
*/
|
|
@@ -1178,12 +1178,12 @@ export interface IdentityCenterConfiguration {
|
|
|
1178
1178
|
* <p>Specifies whether the workgroup is IAM Identity Center supported.</p>
|
|
1179
1179
|
* @public
|
|
1180
1180
|
*/
|
|
1181
|
-
EnableIdentityCenter?: boolean;
|
|
1181
|
+
EnableIdentityCenter?: boolean | undefined;
|
|
1182
1182
|
/**
|
|
1183
1183
|
* <p>The IAM Identity Center instance ARN that the workgroup associates to.</p>
|
|
1184
1184
|
* @public
|
|
1185
1185
|
*/
|
|
1186
|
-
IdentityCenterInstanceArn?: string;
|
|
1186
|
+
IdentityCenterInstanceArn?: string | undefined;
|
|
1187
1187
|
}
|
|
1188
1188
|
/**
|
|
1189
1189
|
* <p>The configuration of the workgroup, which includes the location in Amazon S3
|
|
@@ -1204,24 +1204,24 @@ export interface WorkGroupConfiguration {
|
|
|
1204
1204
|
* individual queries (client-side), using <a>ResultConfiguration$OutputLocation</a>. If none of them is set, Athena issues an error that no output location is provided.</p>
|
|
1205
1205
|
* @public
|
|
1206
1206
|
*/
|
|
1207
|
-
ResultConfiguration?: ResultConfiguration;
|
|
1207
|
+
ResultConfiguration?: ResultConfiguration | undefined;
|
|
1208
1208
|
/**
|
|
1209
1209
|
* <p>If set to "true", the settings for the workgroup override client-side settings. If set
|
|
1210
1210
|
* to "false", client-side settings are used. For more information, see <a href="https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html">Workgroup Settings Override Client-Side Settings</a>.</p>
|
|
1211
1211
|
* @public
|
|
1212
1212
|
*/
|
|
1213
|
-
EnforceWorkGroupConfiguration?: boolean;
|
|
1213
|
+
EnforceWorkGroupConfiguration?: boolean | undefined;
|
|
1214
1214
|
/**
|
|
1215
1215
|
* <p>Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.</p>
|
|
1216
1216
|
* @public
|
|
1217
1217
|
*/
|
|
1218
|
-
PublishCloudWatchMetricsEnabled?: boolean;
|
|
1218
|
+
PublishCloudWatchMetricsEnabled?: boolean | undefined;
|
|
1219
1219
|
/**
|
|
1220
1220
|
* <p>The upper data usage limit (cutoff) for the amount of bytes a single query in a
|
|
1221
1221
|
* workgroup is allowed to scan.</p>
|
|
1222
1222
|
* @public
|
|
1223
1223
|
*/
|
|
1224
|
-
BytesScannedCutoffPerQuery?: number;
|
|
1224
|
+
BytesScannedCutoffPerQuery?: number | undefined;
|
|
1225
1225
|
/**
|
|
1226
1226
|
* <p>If set to <code>true</code>, allows members assigned to a workgroup to reference
|
|
1227
1227
|
* Amazon S3 Requester Pays buckets in queries. If set to <code>false</code>,
|
|
@@ -1232,19 +1232,19 @@ export interface WorkGroupConfiguration {
|
|
|
1232
1232
|
* Guide</i>.</p>
|
|
1233
1233
|
* @public
|
|
1234
1234
|
*/
|
|
1235
|
-
RequesterPaysEnabled?: boolean;
|
|
1235
|
+
RequesterPaysEnabled?: boolean | undefined;
|
|
1236
1236
|
/**
|
|
1237
1237
|
* <p>The engine version that all queries running on the workgroup use. Queries on the
|
|
1238
1238
|
* <code>AmazonAthenaPreviewFunctionality</code> workgroup run on the preview engine
|
|
1239
1239
|
* regardless of this setting.</p>
|
|
1240
1240
|
* @public
|
|
1241
1241
|
*/
|
|
1242
|
-
EngineVersion?: EngineVersion;
|
|
1242
|
+
EngineVersion?: EngineVersion | undefined;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* <p>Specifies a user defined JSON string that is passed to the notebook engine.</p>
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
AdditionalConfiguration?: string;
|
|
1247
|
+
AdditionalConfiguration?: string | undefined;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* <p>The ARN of the execution role used to access user resources for Spark sessions and
|
|
1250
1250
|
* IAM Identity Center enabled workgroups. This property applies only to Spark enabled
|
|
@@ -1252,12 +1252,12 @@ export interface WorkGroupConfiguration {
|
|
|
1252
1252
|
* IAM Identity Center enabled workgroups.</p>
|
|
1253
1253
|
* @public
|
|
1254
1254
|
*/
|
|
1255
|
-
ExecutionRole?: string;
|
|
1255
|
+
ExecutionRole?: string | undefined;
|
|
1256
1256
|
/**
|
|
1257
1257
|
* <p>Specifies the KMS key that is used to encrypt the user's data stores in Athena. This setting does not apply to Athena SQL workgroups.</p>
|
|
1258
1258
|
* @public
|
|
1259
1259
|
*/
|
|
1260
|
-
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration;
|
|
1260
|
+
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration | undefined;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* <p>Enforces a minimal level of encryption for the workgroup for query and calculation
|
|
1263
1263
|
* results that are written to Amazon S3. When enabled, workgroup users can set
|
|
@@ -1270,18 +1270,18 @@ export interface WorkGroupConfiguration {
|
|
|
1270
1270
|
* configuration for encryption is used.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
EnableMinimumEncryptionConfiguration?: boolean;
|
|
1273
|
+
EnableMinimumEncryptionConfiguration?: boolean | undefined;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* <p>Specifies whether the workgroup is IAM Identity Center supported.</p>
|
|
1276
1276
|
* @public
|
|
1277
1277
|
*/
|
|
1278
|
-
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
1278
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* <p>Specifies whether Amazon S3 access grants are enabled for query
|
|
1281
1281
|
* results.</p>
|
|
1282
1282
|
* @public
|
|
1283
1283
|
*/
|
|
1284
|
-
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration;
|
|
1284
|
+
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration | undefined;
|
|
1285
1285
|
}
|
|
1286
1286
|
/**
|
|
1287
1287
|
* @public
|
|
@@ -1303,17 +1303,17 @@ export interface CreateWorkGroupInput {
|
|
|
1303
1303
|
* in the <code>WorkGroupConfiguration</code> override client-side settings. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>
|
|
1304
1304
|
* @public
|
|
1305
1305
|
*/
|
|
1306
|
-
Configuration?: WorkGroupConfiguration;
|
|
1306
|
+
Configuration?: WorkGroupConfiguration | undefined;
|
|
1307
1307
|
/**
|
|
1308
1308
|
* <p>The workgroup description.</p>
|
|
1309
1309
|
* @public
|
|
1310
1310
|
*/
|
|
1311
|
-
Description?: string;
|
|
1311
|
+
Description?: string | undefined;
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p>A list of comma separated tags to add to the workgroup that is created.</p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
Tags?: Tag[];
|
|
1316
|
+
Tags?: Tag[] | undefined;
|
|
1317
1317
|
}
|
|
1318
1318
|
/**
|
|
1319
1319
|
* @public
|
|
@@ -1358,7 +1358,7 @@ export interface DeleteNamedQueryInput {
|
|
|
1358
1358
|
* <p>The unique ID of the query to delete.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
NamedQueryId?: string;
|
|
1361
|
+
NamedQueryId?: string | undefined;
|
|
1362
1362
|
}
|
|
1363
1363
|
/**
|
|
1364
1364
|
* @public
|
|
@@ -1414,7 +1414,7 @@ export interface DeleteWorkGroupInput {
|
|
|
1414
1414
|
* named queries, query executions, or notebooks.</p>
|
|
1415
1415
|
* @public
|
|
1416
1416
|
*/
|
|
1417
|
-
RecursiveDeleteOption?: boolean;
|
|
1417
|
+
RecursiveDeleteOption?: boolean | undefined;
|
|
1418
1418
|
}
|
|
1419
1419
|
/**
|
|
1420
1420
|
* @public
|
|
@@ -1452,32 +1452,32 @@ export interface NotebookMetadata {
|
|
|
1452
1452
|
* <p>The notebook ID.</p>
|
|
1453
1453
|
* @public
|
|
1454
1454
|
*/
|
|
1455
|
-
NotebookId?: string;
|
|
1455
|
+
NotebookId?: string | undefined;
|
|
1456
1456
|
/**
|
|
1457
1457
|
* <p>The name of the notebook.</p>
|
|
1458
1458
|
* @public
|
|
1459
1459
|
*/
|
|
1460
|
-
Name?: string;
|
|
1460
|
+
Name?: string | undefined;
|
|
1461
1461
|
/**
|
|
1462
1462
|
* <p>The name of the Spark enabled workgroup to which the notebook belongs.</p>
|
|
1463
1463
|
* @public
|
|
1464
1464
|
*/
|
|
1465
|
-
WorkGroup?: string;
|
|
1465
|
+
WorkGroup?: string | undefined;
|
|
1466
1466
|
/**
|
|
1467
1467
|
* <p>The time when the notebook was created.</p>
|
|
1468
1468
|
* @public
|
|
1469
1469
|
*/
|
|
1470
|
-
CreationTime?: Date;
|
|
1470
|
+
CreationTime?: Date | undefined;
|
|
1471
1471
|
/**
|
|
1472
1472
|
* <p>The type of notebook. Currently, the only valid type is <code>IPYNB</code>.</p>
|
|
1473
1473
|
* @public
|
|
1474
1474
|
*/
|
|
1475
|
-
Type?: NotebookType;
|
|
1475
|
+
Type?: NotebookType | undefined;
|
|
1476
1476
|
/**
|
|
1477
1477
|
* <p>The time when the notebook was last modified.</p>
|
|
1478
1478
|
* @public
|
|
1479
1479
|
*/
|
|
1480
|
-
LastModifiedTime?: Date;
|
|
1480
|
+
LastModifiedTime?: Date | undefined;
|
|
1481
1481
|
}
|
|
1482
1482
|
/**
|
|
1483
1483
|
* @public
|
|
@@ -1488,12 +1488,12 @@ export interface ExportNotebookOutput {
|
|
|
1488
1488
|
* name.</p>
|
|
1489
1489
|
* @public
|
|
1490
1490
|
*/
|
|
1491
|
-
NotebookMetadata?: NotebookMetadata;
|
|
1491
|
+
NotebookMetadata?: NotebookMetadata | undefined;
|
|
1492
1492
|
/**
|
|
1493
1493
|
* <p>The content of the exported notebook.</p>
|
|
1494
1494
|
* @public
|
|
1495
1495
|
*/
|
|
1496
|
-
Payload?: string;
|
|
1496
|
+
Payload?: string | undefined;
|
|
1497
1497
|
}
|
|
1498
1498
|
/**
|
|
1499
1499
|
* @public
|
|
@@ -1514,23 +1514,23 @@ export interface CalculationResult {
|
|
|
1514
1514
|
* <p>The Amazon S3 location of the <code>stdout</code> file for the calculation.</p>
|
|
1515
1515
|
* @public
|
|
1516
1516
|
*/
|
|
1517
|
-
StdOutS3Uri?: string;
|
|
1517
|
+
StdOutS3Uri?: string | undefined;
|
|
1518
1518
|
/**
|
|
1519
1519
|
* <p>The Amazon S3 location of the <code>stderr</code> error messages file for the
|
|
1520
1520
|
* calculation.</p>
|
|
1521
1521
|
* @public
|
|
1522
1522
|
*/
|
|
1523
|
-
StdErrorS3Uri?: string;
|
|
1523
|
+
StdErrorS3Uri?: string | undefined;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* <p>The Amazon S3 location of the folder for the calculation results.</p>
|
|
1526
1526
|
* @public
|
|
1527
1527
|
*/
|
|
1528
|
-
ResultS3Uri?: string;
|
|
1528
|
+
ResultS3Uri?: string | undefined;
|
|
1529
1529
|
/**
|
|
1530
1530
|
* <p>The data format of the calculation result.</p>
|
|
1531
1531
|
* @public
|
|
1532
1532
|
*/
|
|
1533
|
-
ResultType?: string;
|
|
1533
|
+
ResultType?: string | undefined;
|
|
1534
1534
|
}
|
|
1535
1535
|
/**
|
|
1536
1536
|
* <p>Contains statistics for a notebook calculation.</p>
|
|
@@ -1541,12 +1541,12 @@ export interface CalculationStatistics {
|
|
|
1541
1541
|
* <p>The data processing unit execution time in milliseconds for the calculation.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
DpuExecutionInMillis?: number;
|
|
1544
|
+
DpuExecutionInMillis?: number | undefined;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* <p>The progress of the calculation.</p>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
Progress?: string;
|
|
1549
|
+
Progress?: string | undefined;
|
|
1550
1550
|
}
|
|
1551
1551
|
/**
|
|
1552
1552
|
* @public
|
|
@@ -1575,12 +1575,12 @@ export interface CalculationStatus {
|
|
|
1575
1575
|
* <p>The date and time the calculation was submitted for processing.</p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
SubmissionDateTime?: Date;
|
|
1578
|
+
SubmissionDateTime?: Date | undefined;
|
|
1579
1579
|
/**
|
|
1580
1580
|
* <p>The date and time the calculation completed processing.</p>
|
|
1581
1581
|
* @public
|
|
1582
1582
|
*/
|
|
1583
|
-
CompletionDateTime?: Date;
|
|
1583
|
+
CompletionDateTime?: Date | undefined;
|
|
1584
1584
|
/**
|
|
1585
1585
|
* <p>The state of the calculation execution. A description of each state follows.</p>
|
|
1586
1586
|
* <p>
|
|
@@ -1603,13 +1603,13 @@ export interface CalculationStatus {
|
|
|
1603
1603
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
State?: CalculationExecutionState;
|
|
1606
|
+
State?: CalculationExecutionState | undefined;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* <p>The reason for the calculation state change (for example, the calculation was canceled
|
|
1609
1609
|
* because the session was terminated).</p>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
StateChangeReason?: string;
|
|
1612
|
+
StateChangeReason?: string | undefined;
|
|
1613
1613
|
}
|
|
1614
1614
|
/**
|
|
1615
1615
|
* @public
|
|
@@ -1619,39 +1619,39 @@ export interface GetCalculationExecutionResponse {
|
|
|
1619
1619
|
* <p>The calculation execution UUID.</p>
|
|
1620
1620
|
* @public
|
|
1621
1621
|
*/
|
|
1622
|
-
CalculationExecutionId?: string;
|
|
1622
|
+
CalculationExecutionId?: string | undefined;
|
|
1623
1623
|
/**
|
|
1624
1624
|
* <p>The session ID that the calculation ran in.</p>
|
|
1625
1625
|
* @public
|
|
1626
1626
|
*/
|
|
1627
|
-
SessionId?: string;
|
|
1627
|
+
SessionId?: string | undefined;
|
|
1628
1628
|
/**
|
|
1629
1629
|
* <p>The description of the calculation execution.</p>
|
|
1630
1630
|
* @public
|
|
1631
1631
|
*/
|
|
1632
|
-
Description?: string;
|
|
1632
|
+
Description?: string | undefined;
|
|
1633
1633
|
/**
|
|
1634
1634
|
* <p>The Amazon S3 location in which calculation results are stored.</p>
|
|
1635
1635
|
* @public
|
|
1636
1636
|
*/
|
|
1637
|
-
WorkingDirectory?: string;
|
|
1637
|
+
WorkingDirectory?: string | undefined;
|
|
1638
1638
|
/**
|
|
1639
1639
|
* <p>Contains information about the status of the calculation.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
Status?: CalculationStatus;
|
|
1642
|
+
Status?: CalculationStatus | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>Contains information about the data processing unit (DPU) execution time and progress.
|
|
1645
1645
|
* This field is populated only when statistics are available.</p>
|
|
1646
1646
|
* @public
|
|
1647
1647
|
*/
|
|
1648
|
-
Statistics?: CalculationStatistics;
|
|
1648
|
+
Statistics?: CalculationStatistics | undefined;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* <p>Contains result information. This field is populated only if the calculation is
|
|
1651
1651
|
* completed.</p>
|
|
1652
1652
|
* @public
|
|
1653
1653
|
*/
|
|
1654
|
-
Result?: CalculationResult;
|
|
1654
|
+
Result?: CalculationResult | undefined;
|
|
1655
1655
|
}
|
|
1656
1656
|
/**
|
|
1657
1657
|
* @public
|
|
@@ -1671,7 +1671,7 @@ export interface GetCalculationExecutionCodeResponse {
|
|
|
1671
1671
|
* <p>The unencrypted code that was executed for the calculation.</p>
|
|
1672
1672
|
* @public
|
|
1673
1673
|
*/
|
|
1674
|
-
CodeBlock?: string;
|
|
1674
|
+
CodeBlock?: string | undefined;
|
|
1675
1675
|
}
|
|
1676
1676
|
/**
|
|
1677
1677
|
* @public
|
|
@@ -1691,12 +1691,12 @@ export interface GetCalculationExecutionStatusResponse {
|
|
|
1691
1691
|
* <p>Contains information about the calculation execution status.</p>
|
|
1692
1692
|
* @public
|
|
1693
1693
|
*/
|
|
1694
|
-
Status?: CalculationStatus;
|
|
1694
|
+
Status?: CalculationStatus | undefined;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* <p>Contains information about the DPU execution time and progress.</p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
Statistics?: CalculationStatistics;
|
|
1699
|
+
Statistics?: CalculationStatistics | undefined;
|
|
1700
1700
|
}
|
|
1701
1701
|
/**
|
|
1702
1702
|
* @public
|
|
@@ -1718,7 +1718,7 @@ export interface CapacityAssignment {
|
|
|
1718
1718
|
* <p>The list of workgroup names for the capacity assignment.</p>
|
|
1719
1719
|
* @public
|
|
1720
1720
|
*/
|
|
1721
|
-
WorkGroupNames?: string[];
|
|
1721
|
+
WorkGroupNames?: string[] | undefined;
|
|
1722
1722
|
}
|
|
1723
1723
|
/**
|
|
1724
1724
|
* <p>Assigns Athena workgroups (and hence their queries) to capacity
|
|
@@ -1733,12 +1733,12 @@ export interface CapacityAssignmentConfiguration {
|
|
|
1733
1733
|
* <p>The name of the reservation that the capacity assignment configuration is for.</p>
|
|
1734
1734
|
* @public
|
|
1735
1735
|
*/
|
|
1736
|
-
CapacityReservationName?: string;
|
|
1736
|
+
CapacityReservationName?: string | undefined;
|
|
1737
1737
|
/**
|
|
1738
1738
|
* <p>The list of assignments that make up the capacity assignment configuration.</p>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
CapacityAssignments?: CapacityAssignment[];
|
|
1741
|
+
CapacityAssignments?: CapacityAssignment[] | undefined;
|
|
1742
1742
|
}
|
|
1743
1743
|
/**
|
|
1744
1744
|
* @public
|
|
@@ -1789,7 +1789,7 @@ export interface CapacityAllocation {
|
|
|
1789
1789
|
* <p>The status message of the capacity allocation.</p>
|
|
1790
1790
|
* @public
|
|
1791
1791
|
*/
|
|
1792
|
-
StatusMessage?: string;
|
|
1792
|
+
StatusMessage?: string | undefined;
|
|
1793
1793
|
/**
|
|
1794
1794
|
* <p>The time when the capacity allocation was requested.</p>
|
|
1795
1795
|
* @public
|
|
@@ -1799,7 +1799,7 @@ export interface CapacityAllocation {
|
|
|
1799
1799
|
* <p>The time when the capacity allocation request was completed.</p>
|
|
1800
1800
|
* @public
|
|
1801
1801
|
*/
|
|
1802
|
-
RequestCompletionTime?: Date;
|
|
1802
|
+
RequestCompletionTime?: Date | undefined;
|
|
1803
1803
|
}
|
|
1804
1804
|
/**
|
|
1805
1805
|
* @public
|
|
@@ -1849,12 +1849,12 @@ export interface CapacityReservation {
|
|
|
1849
1849
|
* and the most recent status of the attempted allocation.</p>
|
|
1850
1850
|
* @public
|
|
1851
1851
|
*/
|
|
1852
|
-
LastAllocation?: CapacityAllocation;
|
|
1852
|
+
LastAllocation?: CapacityAllocation | undefined;
|
|
1853
1853
|
/**
|
|
1854
1854
|
* <p>The time of the most recent capacity allocation that succeeded.</p>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
LastSuccessfulAllocationTime?: Date;
|
|
1857
|
+
LastSuccessfulAllocationTime?: Date | undefined;
|
|
1858
1858
|
/**
|
|
1859
1859
|
* <p>The time in UTC epoch millis when the capacity reservation was created.</p>
|
|
1860
1860
|
* @public
|
|
@@ -1890,7 +1890,7 @@ export interface GetDatabaseInput {
|
|
|
1890
1890
|
* requesting an IAM Identity Center enabled Glue Data Catalog.</p>
|
|
1891
1891
|
* @public
|
|
1892
1892
|
*/
|
|
1893
|
-
WorkGroup?: string;
|
|
1893
|
+
WorkGroup?: string | undefined;
|
|
1894
1894
|
}
|
|
1895
1895
|
/**
|
|
1896
1896
|
* <p>Contains metadata information for a database in a data catalog.</p>
|
|
@@ -1906,12 +1906,12 @@ export interface Database {
|
|
|
1906
1906
|
* <p>An optional description of the database.</p>
|
|
1907
1907
|
* @public
|
|
1908
1908
|
*/
|
|
1909
|
-
Description?: string;
|
|
1909
|
+
Description?: string | undefined;
|
|
1910
1910
|
/**
|
|
1911
1911
|
* <p>A set of custom key/value pairs.</p>
|
|
1912
1912
|
* @public
|
|
1913
1913
|
*/
|
|
1914
|
-
Parameters?: Record<string, string
|
|
1914
|
+
Parameters?: Record<string, string> | undefined;
|
|
1915
1915
|
}
|
|
1916
1916
|
/**
|
|
1917
1917
|
* @public
|
|
@@ -1921,7 +1921,7 @@ export interface GetDatabaseOutput {
|
|
|
1921
1921
|
* <p>The database returned.</p>
|
|
1922
1922
|
* @public
|
|
1923
1923
|
*/
|
|
1924
|
-
Database?: Database;
|
|
1924
|
+
Database?: Database | undefined;
|
|
1925
1925
|
}
|
|
1926
1926
|
/**
|
|
1927
1927
|
* <p>An exception that Athena received when it called a custom metastore.
|
|
@@ -1935,7 +1935,7 @@ export interface GetDatabaseOutput {
|
|
|
1935
1935
|
export declare class MetadataException extends __BaseException {
|
|
1936
1936
|
readonly name: "MetadataException";
|
|
1937
1937
|
readonly $fault: "client";
|
|
1938
|
-
Message?: string;
|
|
1938
|
+
Message?: string | undefined;
|
|
1939
1939
|
/**
|
|
1940
1940
|
* @internal
|
|
1941
1941
|
*/
|
|
@@ -1954,7 +1954,7 @@ export interface GetDataCatalogInput {
|
|
|
1954
1954
|
* <p>The name of the workgroup. Required if making an IAM Identity Center request.</p>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
WorkGroup?: string;
|
|
1957
|
+
WorkGroup?: string | undefined;
|
|
1958
1958
|
}
|
|
1959
1959
|
/**
|
|
1960
1960
|
* <p>Contains information about a data catalog in an Amazon Web Services account.</p>
|
|
@@ -1976,7 +1976,7 @@ export interface DataCatalog {
|
|
|
1976
1976
|
* <p>An optional description of the data catalog.</p>
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
Description?: string;
|
|
1979
|
+
Description?: string | undefined;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>The type of data catalog to create: <code>LAMBDA</code> for a federated catalog,
|
|
1982
1982
|
* <code>HIVE</code> for an external hive metastore, or <code>GLUE</code> for an
|
|
@@ -2045,7 +2045,7 @@ export interface DataCatalog {
|
|
|
2045
2045
|
* </ul>
|
|
2046
2046
|
* @public
|
|
2047
2047
|
*/
|
|
2048
|
-
Parameters?: Record<string, string
|
|
2048
|
+
Parameters?: Record<string, string> | undefined;
|
|
2049
2049
|
}
|
|
2050
2050
|
/**
|
|
2051
2051
|
* @public
|
|
@@ -2055,7 +2055,7 @@ export interface GetDataCatalogOutput {
|
|
|
2055
2055
|
* <p>The data catalog returned.</p>
|
|
2056
2056
|
* @public
|
|
2057
2057
|
*/
|
|
2058
|
-
DataCatalog?: DataCatalog;
|
|
2058
|
+
DataCatalog?: DataCatalog | undefined;
|
|
2059
2059
|
}
|
|
2060
2060
|
/**
|
|
2061
2061
|
* @public
|
|
@@ -2076,7 +2076,7 @@ export interface GetNamedQueryOutput {
|
|
|
2076
2076
|
* <p>Information about the query.</p>
|
|
2077
2077
|
* @public
|
|
2078
2078
|
*/
|
|
2079
|
-
NamedQuery?: NamedQuery;
|
|
2079
|
+
NamedQuery?: NamedQuery | undefined;
|
|
2080
2080
|
}
|
|
2081
2081
|
/**
|
|
2082
2082
|
* @public
|
|
@@ -2096,7 +2096,7 @@ export interface GetNotebookMetadataOutput {
|
|
|
2096
2096
|
* <p>The metadata that is returned for the specified notebook ID.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
NotebookMetadata?: NotebookMetadata;
|
|
2099
|
+
NotebookMetadata?: NotebookMetadata | undefined;
|
|
2100
2100
|
}
|
|
2101
2101
|
/**
|
|
2102
2102
|
* @public
|
|
@@ -2121,7 +2121,7 @@ export interface GetPreparedStatementOutput {
|
|
|
2121
2121
|
* <p>The name of the prepared statement that was retrieved.</p>
|
|
2122
2122
|
* @public
|
|
2123
2123
|
*/
|
|
2124
|
-
PreparedStatement?: PreparedStatement;
|
|
2124
|
+
PreparedStatement?: PreparedStatement | undefined;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
* @public
|
|
@@ -2141,7 +2141,7 @@ export interface GetQueryExecutionOutput {
|
|
|
2141
2141
|
* <p>Information about the query execution.</p>
|
|
2142
2142
|
* @public
|
|
2143
2143
|
*/
|
|
2144
|
-
QueryExecution?: QueryExecution;
|
|
2144
|
+
QueryExecution?: QueryExecution | undefined;
|
|
2145
2145
|
}
|
|
2146
2146
|
/**
|
|
2147
2147
|
* @public
|
|
@@ -2158,12 +2158,12 @@ export interface GetQueryResultsInput {
|
|
|
2158
2158
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
2159
2159
|
* @public
|
|
2160
2160
|
*/
|
|
2161
|
-
NextToken?: string;
|
|
2161
|
+
NextToken?: string | undefined;
|
|
2162
2162
|
/**
|
|
2163
2163
|
* <p>The maximum number of results (rows) to return in this request.</p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
MaxResults?: number;
|
|
2166
|
+
MaxResults?: number | undefined;
|
|
2167
2167
|
}
|
|
2168
2168
|
/**
|
|
2169
2169
|
* @public
|
|
@@ -2187,17 +2187,17 @@ export interface ColumnInfo {
|
|
|
2187
2187
|
* <p>The catalog to which the query results belong.</p>
|
|
2188
2188
|
* @public
|
|
2189
2189
|
*/
|
|
2190
|
-
CatalogName?: string;
|
|
2190
|
+
CatalogName?: string | undefined;
|
|
2191
2191
|
/**
|
|
2192
2192
|
* <p>The schema name (database name) to which the query results belong.</p>
|
|
2193
2193
|
* @public
|
|
2194
2194
|
*/
|
|
2195
|
-
SchemaName?: string;
|
|
2195
|
+
SchemaName?: string | undefined;
|
|
2196
2196
|
/**
|
|
2197
2197
|
* <p>The table name for the query results.</p>
|
|
2198
2198
|
* @public
|
|
2199
2199
|
*/
|
|
2200
|
-
TableName?: string;
|
|
2200
|
+
TableName?: string | undefined;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* <p>The name of the column.</p>
|
|
2203
2203
|
* @public
|
|
@@ -2207,7 +2207,7 @@ export interface ColumnInfo {
|
|
|
2207
2207
|
* <p>A column label.</p>
|
|
2208
2208
|
* @public
|
|
2209
2209
|
*/
|
|
2210
|
-
Label?: string;
|
|
2210
|
+
Label?: string | undefined;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* <p>The data type of the column.</p>
|
|
2213
2213
|
* @public
|
|
@@ -2218,23 +2218,23 @@ export interface ColumnInfo {
|
|
|
2218
2218
|
* For performance reasons, we recommend up to 18 digits.</p>
|
|
2219
2219
|
* @public
|
|
2220
2220
|
*/
|
|
2221
|
-
Precision?: number;
|
|
2221
|
+
Precision?: number | undefined;
|
|
2222
2222
|
/**
|
|
2223
2223
|
* <p>For <code>DECIMAL</code> data types, specifies the total number of digits in the
|
|
2224
2224
|
* fractional part of the value. Defaults to 0.</p>
|
|
2225
2225
|
* @public
|
|
2226
2226
|
*/
|
|
2227
|
-
Scale?: number;
|
|
2227
|
+
Scale?: number | undefined;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* <p>Unsupported constraint. This value always shows as <code>UNKNOWN</code>.</p>
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
Nullable?: ColumnNullable;
|
|
2232
|
+
Nullable?: ColumnNullable | undefined;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* <p>Indicates whether values in the column are case-sensitive.</p>
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
CaseSensitive?: boolean;
|
|
2237
|
+
CaseSensitive?: boolean | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* <p>The metadata that describes the column structure and data types of a table of query
|
|
@@ -2246,7 +2246,7 @@ export interface ResultSetMetadata {
|
|
|
2246
2246
|
* <p>Information about the columns returned in a query result metadata.</p>
|
|
2247
2247
|
* @public
|
|
2248
2248
|
*/
|
|
2249
|
-
ColumnInfo?: ColumnInfo[];
|
|
2249
|
+
ColumnInfo?: ColumnInfo[] | undefined;
|
|
2250
2250
|
}
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>A piece of data (a field in the table).</p>
|
|
@@ -2257,7 +2257,7 @@ export interface Datum {
|
|
|
2257
2257
|
* <p>The value of the datum.</p>
|
|
2258
2258
|
* @public
|
|
2259
2259
|
*/
|
|
2260
|
-
VarCharValue?: string;
|
|
2260
|
+
VarCharValue?: string | undefined;
|
|
2261
2261
|
}
|
|
2262
2262
|
/**
|
|
2263
2263
|
* <p>The rows that make up a query result table.</p>
|
|
@@ -2268,7 +2268,7 @@ export interface Row {
|
|
|
2268
2268
|
* <p>The data that populates a row in a query result table.</p>
|
|
2269
2269
|
* @public
|
|
2270
2270
|
*/
|
|
2271
|
-
Data?: Datum[];
|
|
2271
|
+
Data?: Datum[] | undefined;
|
|
2272
2272
|
}
|
|
2273
2273
|
/**
|
|
2274
2274
|
* <p>The metadata and rows that make up a query result set. The metadata describes the
|
|
@@ -2280,13 +2280,13 @@ export interface ResultSet {
|
|
|
2280
2280
|
* <p>The rows in the table.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
Rows?: Row[];
|
|
2283
|
+
Rows?: Row[] | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>The metadata that describes the column structure and data types of a table of query
|
|
2286
2286
|
* results.</p>
|
|
2287
2287
|
* @public
|
|
2288
2288
|
*/
|
|
2289
|
-
ResultSetMetadata?: ResultSetMetadata;
|
|
2289
|
+
ResultSetMetadata?: ResultSetMetadata | undefined;
|
|
2290
2290
|
}
|
|
2291
2291
|
/**
|
|
2292
2292
|
* @public
|
|
@@ -2297,19 +2297,19 @@ export interface GetQueryResultsOutput {
|
|
|
2297
2297
|
* INTO</code>, or <code>UPDATE</code> statement. </p>
|
|
2298
2298
|
* @public
|
|
2299
2299
|
*/
|
|
2300
|
-
UpdateCount?: number;
|
|
2300
|
+
UpdateCount?: number | undefined;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* <p>The results of the query execution.</p>
|
|
2303
2303
|
* @public
|
|
2304
2304
|
*/
|
|
2305
|
-
ResultSet?: ResultSet;
|
|
2305
|
+
ResultSet?: ResultSet | undefined;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
2308
2308
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
2309
2309
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
2310
2310
|
* @public
|
|
2311
2311
|
*/
|
|
2312
|
-
NextToken?: string;
|
|
2312
|
+
NextToken?: string | undefined;
|
|
2313
2313
|
}
|
|
2314
2314
|
/**
|
|
2315
2315
|
* @public
|
|
@@ -2331,22 +2331,22 @@ export interface QueryRuntimeStatisticsRows {
|
|
|
2331
2331
|
* <p>The number of rows read to execute the query.</p>
|
|
2332
2332
|
* @public
|
|
2333
2333
|
*/
|
|
2334
|
-
InputRows?: number;
|
|
2334
|
+
InputRows?: number | undefined;
|
|
2335
2335
|
/**
|
|
2336
2336
|
* <p>The number of bytes read to execute the query.</p>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
InputBytes?: number;
|
|
2339
|
+
InputBytes?: number | undefined;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p>The number of bytes returned by the query.</p>
|
|
2342
2342
|
* @public
|
|
2343
2343
|
*/
|
|
2344
|
-
OutputBytes?: number;
|
|
2344
|
+
OutputBytes?: number | undefined;
|
|
2345
2345
|
/**
|
|
2346
2346
|
* <p>The number of rows returned by the query.</p>
|
|
2347
2347
|
* @public
|
|
2348
2348
|
*/
|
|
2349
|
-
OutputRows?: number;
|
|
2349
|
+
OutputRows?: number | undefined;
|
|
2350
2350
|
}
|
|
2351
2351
|
/**
|
|
2352
2352
|
* <p>Timeline statistics such as query queue time, planning time, execution time, service
|
|
@@ -2360,13 +2360,13 @@ export interface QueryRuntimeStatisticsTimeline {
|
|
|
2360
2360
|
* add the query back to the queue.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
QueryQueueTimeInMillis?: number;
|
|
2363
|
+
QueryQueueTimeInMillis?: number | undefined;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* <p> The number of milliseconds that Athena spends on preprocessing before it
|
|
2366
2366
|
* submits the query to the engine. </p>
|
|
2367
2367
|
* @public
|
|
2368
2368
|
*/
|
|
2369
|
-
ServicePreProcessingTimeInMillis?: number;
|
|
2369
|
+
ServicePreProcessingTimeInMillis?: number | undefined;
|
|
2370
2370
|
/**
|
|
2371
2371
|
* <p>The number of milliseconds that Athena took to plan the query processing
|
|
2372
2372
|
* flow. This includes the time spent retrieving table partitions from the data source.
|
|
@@ -2374,23 +2374,23 @@ export interface QueryRuntimeStatisticsTimeline {
|
|
|
2374
2374
|
* subset of engine processing time.</p>
|
|
2375
2375
|
* @public
|
|
2376
2376
|
*/
|
|
2377
|
-
QueryPlanningTimeInMillis?: number;
|
|
2377
|
+
QueryPlanningTimeInMillis?: number | undefined;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* <p>The number of milliseconds that the query took to execute.</p>
|
|
2380
2380
|
* @public
|
|
2381
2381
|
*/
|
|
2382
|
-
EngineExecutionTimeInMillis?: number;
|
|
2382
|
+
EngineExecutionTimeInMillis?: number | undefined;
|
|
2383
2383
|
/**
|
|
2384
2384
|
* <p>The number of milliseconds that Athena took to finalize and publish the
|
|
2385
2385
|
* query results after the query engine finished running the query.</p>
|
|
2386
2386
|
* @public
|
|
2387
2387
|
*/
|
|
2388
|
-
ServiceProcessingTimeInMillis?: number;
|
|
2388
|
+
ServiceProcessingTimeInMillis?: number | undefined;
|
|
2389
2389
|
/**
|
|
2390
2390
|
* <p>The number of milliseconds that Athena took to run the query.</p>
|
|
2391
2391
|
* @public
|
|
2392
2392
|
*/
|
|
2393
|
-
TotalExecutionTimeInMillis?: number;
|
|
2393
|
+
TotalExecutionTimeInMillis?: number | undefined;
|
|
2394
2394
|
}
|
|
2395
2395
|
/**
|
|
2396
2396
|
* @public
|
|
@@ -2414,7 +2414,7 @@ export interface EngineConfiguration {
|
|
|
2414
2414
|
* default is 1.</p>
|
|
2415
2415
|
* @public
|
|
2416
2416
|
*/
|
|
2417
|
-
CoordinatorDpuSize?: number;
|
|
2417
|
+
CoordinatorDpuSize?: number | undefined;
|
|
2418
2418
|
/**
|
|
2419
2419
|
* <p>The maximum number of DPUs that can run concurrently.</p>
|
|
2420
2420
|
* @public
|
|
@@ -2426,7 +2426,7 @@ export interface EngineConfiguration {
|
|
|
2426
2426
|
* 1.</p>
|
|
2427
2427
|
* @public
|
|
2428
2428
|
*/
|
|
2429
|
-
DefaultExecutorDpuSize?: number;
|
|
2429
|
+
DefaultExecutorDpuSize?: number | undefined;
|
|
2430
2430
|
/**
|
|
2431
2431
|
* <p>Contains additional notebook engine <code>MAP<string, string></code> parameter
|
|
2432
2432
|
* mappings in the form of key-value pairs. To specify an Athena notebook that
|
|
@@ -2435,13 +2435,13 @@ export interface EngineConfiguration {
|
|
|
2435
2435
|
* Athena notebook ID.</p>
|
|
2436
2436
|
* @public
|
|
2437
2437
|
*/
|
|
2438
|
-
AdditionalConfigs?: Record<string, string
|
|
2438
|
+
AdditionalConfigs?: Record<string, string> | undefined;
|
|
2439
2439
|
/**
|
|
2440
2440
|
* <p>Specifies custom jar files and Spark properties for use cases like cluster encryption,
|
|
2441
2441
|
* table formats, and general Spark tuning.</p>
|
|
2442
2442
|
* @public
|
|
2443
2443
|
*/
|
|
2444
|
-
SparkProperties?: Record<string, string
|
|
2444
|
+
SparkProperties?: Record<string, string> | undefined;
|
|
2445
2445
|
}
|
|
2446
2446
|
/**
|
|
2447
2447
|
* <p>Contains session configuration information.</p>
|
|
@@ -2454,24 +2454,24 @@ export interface SessionConfiguration {
|
|
|
2454
2454
|
* workgroups and Identity Center enabled workgroups.</p>
|
|
2455
2455
|
* @public
|
|
2456
2456
|
*/
|
|
2457
|
-
ExecutionRole?: string;
|
|
2457
|
+
ExecutionRole?: string | undefined;
|
|
2458
2458
|
/**
|
|
2459
2459
|
* <p>The Amazon S3 location that stores information for the notebook.</p>
|
|
2460
2460
|
* @public
|
|
2461
2461
|
*/
|
|
2462
|
-
WorkingDirectory?: string;
|
|
2462
|
+
WorkingDirectory?: string | undefined;
|
|
2463
2463
|
/**
|
|
2464
2464
|
* <p>The idle timeout in seconds for the session.</p>
|
|
2465
2465
|
* @public
|
|
2466
2466
|
*/
|
|
2467
|
-
IdleTimeoutSeconds?: number;
|
|
2467
|
+
IdleTimeoutSeconds?: number | undefined;
|
|
2468
2468
|
/**
|
|
2469
2469
|
* <p>If query and calculation results are encrypted in Amazon S3, indicates the
|
|
2470
2470
|
* encryption option used (for example, <code>SSE_KMS</code> or <code>CSE_KMS</code>) and
|
|
2471
2471
|
* key information.</p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
2474
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2475
2475
|
}
|
|
2476
2476
|
/**
|
|
2477
2477
|
* <p>Contains statistics for a session.</p>
|
|
@@ -2482,7 +2482,7 @@ export interface SessionStatistics {
|
|
|
2482
2482
|
* <p>The data processing unit execution time for a session in milliseconds.</p>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
DpuExecutionInMillis?: number;
|
|
2485
|
+
DpuExecutionInMillis?: number | undefined;
|
|
2486
2486
|
}
|
|
2487
2487
|
/**
|
|
2488
2488
|
* @public
|
|
@@ -2511,23 +2511,23 @@ export interface SessionStatus {
|
|
|
2511
2511
|
* <p>The date and time that the session started.</p>
|
|
2512
2512
|
* @public
|
|
2513
2513
|
*/
|
|
2514
|
-
StartDateTime?: Date;
|
|
2514
|
+
StartDateTime?: Date | undefined;
|
|
2515
2515
|
/**
|
|
2516
2516
|
* <p>The most recent date and time that the session was modified.</p>
|
|
2517
2517
|
* @public
|
|
2518
2518
|
*/
|
|
2519
|
-
LastModifiedDateTime?: Date;
|
|
2519
|
+
LastModifiedDateTime?: Date | undefined;
|
|
2520
2520
|
/**
|
|
2521
2521
|
* <p>The date and time that the session ended.</p>
|
|
2522
2522
|
* @public
|
|
2523
2523
|
*/
|
|
2524
|
-
EndDateTime?: Date;
|
|
2524
|
+
EndDateTime?: Date | undefined;
|
|
2525
2525
|
/**
|
|
2526
2526
|
* <p>The date and time starting at which the session became idle. Can be empty if the
|
|
2527
2527
|
* session is not currently idle.</p>
|
|
2528
2528
|
* @public
|
|
2529
2529
|
*/
|
|
2530
|
-
IdleSinceDateTime?: Date;
|
|
2530
|
+
IdleSinceDateTime?: Date | undefined;
|
|
2531
2531
|
/**
|
|
2532
2532
|
* <p>The state of the session. A description of each state follows.</p>
|
|
2533
2533
|
* <p>
|
|
@@ -2551,13 +2551,13 @@ export interface SessionStatus {
|
|
|
2551
2551
|
* running.</p>
|
|
2552
2552
|
* @public
|
|
2553
2553
|
*/
|
|
2554
|
-
State?: SessionState;
|
|
2554
|
+
State?: SessionState | undefined;
|
|
2555
2555
|
/**
|
|
2556
2556
|
* <p>The reason for the session state change (for example, canceled because the session was
|
|
2557
2557
|
* terminated).</p>
|
|
2558
2558
|
* @public
|
|
2559
2559
|
*/
|
|
2560
|
-
StateChangeReason?: string;
|
|
2560
|
+
StateChangeReason?: string | undefined;
|
|
2561
2561
|
}
|
|
2562
2562
|
/**
|
|
2563
2563
|
* @public
|
|
@@ -2567,48 +2567,48 @@ export interface GetSessionResponse {
|
|
|
2567
2567
|
* <p>The session ID.</p>
|
|
2568
2568
|
* @public
|
|
2569
2569
|
*/
|
|
2570
|
-
SessionId?: string;
|
|
2570
|
+
SessionId?: string | undefined;
|
|
2571
2571
|
/**
|
|
2572
2572
|
* <p>The session description.</p>
|
|
2573
2573
|
* @public
|
|
2574
2574
|
*/
|
|
2575
|
-
Description?: string;
|
|
2575
|
+
Description?: string | undefined;
|
|
2576
2576
|
/**
|
|
2577
2577
|
* <p>The workgroup to which the session belongs.</p>
|
|
2578
2578
|
* @public
|
|
2579
2579
|
*/
|
|
2580
|
-
WorkGroup?: string;
|
|
2580
|
+
WorkGroup?: string | undefined;
|
|
2581
2581
|
/**
|
|
2582
2582
|
* <p>The engine version used by the session (for example, <code>PySpark engine version
|
|
2583
2583
|
* 3</code>). You can get a list of engine versions by calling <a>ListEngineVersions</a>.</p>
|
|
2584
2584
|
* @public
|
|
2585
2585
|
*/
|
|
2586
|
-
EngineVersion?: string;
|
|
2586
|
+
EngineVersion?: string | undefined;
|
|
2587
2587
|
/**
|
|
2588
2588
|
* <p>Contains engine configuration information like DPU usage.</p>
|
|
2589
2589
|
* @public
|
|
2590
2590
|
*/
|
|
2591
|
-
EngineConfiguration?: EngineConfiguration;
|
|
2591
|
+
EngineConfiguration?: EngineConfiguration | undefined;
|
|
2592
2592
|
/**
|
|
2593
2593
|
* <p>The notebook version.</p>
|
|
2594
2594
|
* @public
|
|
2595
2595
|
*/
|
|
2596
|
-
NotebookVersion?: string;
|
|
2596
|
+
NotebookVersion?: string | undefined;
|
|
2597
2597
|
/**
|
|
2598
2598
|
* <p>Contains the workgroup configuration information used by the session.</p>
|
|
2599
2599
|
* @public
|
|
2600
2600
|
*/
|
|
2601
|
-
SessionConfiguration?: SessionConfiguration;
|
|
2601
|
+
SessionConfiguration?: SessionConfiguration | undefined;
|
|
2602
2602
|
/**
|
|
2603
2603
|
* <p>Contains information about the status of the session.</p>
|
|
2604
2604
|
* @public
|
|
2605
2605
|
*/
|
|
2606
|
-
Status?: SessionStatus;
|
|
2606
|
+
Status?: SessionStatus | undefined;
|
|
2607
2607
|
/**
|
|
2608
2608
|
* <p>Contains the DPU execution time.</p>
|
|
2609
2609
|
* @public
|
|
2610
2610
|
*/
|
|
2611
|
-
Statistics?: SessionStatistics;
|
|
2611
|
+
Statistics?: SessionStatistics | undefined;
|
|
2612
2612
|
}
|
|
2613
2613
|
/**
|
|
2614
2614
|
* @public
|
|
@@ -2628,12 +2628,12 @@ export interface GetSessionStatusResponse {
|
|
|
2628
2628
|
* <p>The session ID.</p>
|
|
2629
2629
|
* @public
|
|
2630
2630
|
*/
|
|
2631
|
-
SessionId?: string;
|
|
2631
|
+
SessionId?: string | undefined;
|
|
2632
2632
|
/**
|
|
2633
2633
|
* <p>Contains information about the status of the session.</p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
Status?: SessionStatus;
|
|
2636
|
+
Status?: SessionStatus | undefined;
|
|
2637
2637
|
}
|
|
2638
2638
|
/**
|
|
2639
2639
|
* @public
|
|
@@ -2660,7 +2660,7 @@ export interface GetTableMetadataInput {
|
|
|
2660
2660
|
* requesting an IAM Identity Center enabled Glue Data Catalog.</p>
|
|
2661
2661
|
* @public
|
|
2662
2662
|
*/
|
|
2663
|
-
WorkGroup?: string;
|
|
2663
|
+
WorkGroup?: string | undefined;
|
|
2664
2664
|
}
|
|
2665
2665
|
/**
|
|
2666
2666
|
* <p>Contains metadata for a column in a table.</p>
|
|
@@ -2676,12 +2676,12 @@ export interface Column {
|
|
|
2676
2676
|
* <p>The data type of the column.</p>
|
|
2677
2677
|
* @public
|
|
2678
2678
|
*/
|
|
2679
|
-
Type?: string;
|
|
2679
|
+
Type?: string | undefined;
|
|
2680
2680
|
/**
|
|
2681
2681
|
* <p>Optional information about the column.</p>
|
|
2682
2682
|
* @public
|
|
2683
2683
|
*/
|
|
2684
|
-
Comment?: string;
|
|
2684
|
+
Comment?: string | undefined;
|
|
2685
2685
|
}
|
|
2686
2686
|
/**
|
|
2687
2687
|
* <p>Contains metadata for a table.</p>
|
|
@@ -2697,33 +2697,33 @@ export interface TableMetadata {
|
|
|
2697
2697
|
* <p>The time that the table was created.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
CreateTime?: Date;
|
|
2700
|
+
CreateTime?: Date | undefined;
|
|
2701
2701
|
/**
|
|
2702
2702
|
* <p>The last time the table was accessed.</p>
|
|
2703
2703
|
* @public
|
|
2704
2704
|
*/
|
|
2705
|
-
LastAccessTime?: Date;
|
|
2705
|
+
LastAccessTime?: Date | undefined;
|
|
2706
2706
|
/**
|
|
2707
2707
|
* <p>The type of table. In Athena, only <code>EXTERNAL_TABLE</code> is
|
|
2708
2708
|
* supported.</p>
|
|
2709
2709
|
* @public
|
|
2710
2710
|
*/
|
|
2711
|
-
TableType?: string;
|
|
2711
|
+
TableType?: string | undefined;
|
|
2712
2712
|
/**
|
|
2713
2713
|
* <p>A list of the columns in the table.</p>
|
|
2714
2714
|
* @public
|
|
2715
2715
|
*/
|
|
2716
|
-
Columns?: Column[];
|
|
2716
|
+
Columns?: Column[] | undefined;
|
|
2717
2717
|
/**
|
|
2718
2718
|
* <p>A list of the partition keys in the table.</p>
|
|
2719
2719
|
* @public
|
|
2720
2720
|
*/
|
|
2721
|
-
PartitionKeys?: Column[];
|
|
2721
|
+
PartitionKeys?: Column[] | undefined;
|
|
2722
2722
|
/**
|
|
2723
2723
|
* <p>A set of custom key/value pairs for table properties.</p>
|
|
2724
2724
|
* @public
|
|
2725
2725
|
*/
|
|
2726
|
-
Parameters?: Record<string, string
|
|
2726
|
+
Parameters?: Record<string, string> | undefined;
|
|
2727
2727
|
}
|
|
2728
2728
|
/**
|
|
2729
2729
|
* @public
|
|
@@ -2733,7 +2733,7 @@ export interface GetTableMetadataOutput {
|
|
|
2733
2733
|
* <p>An object that contains table metadata.</p>
|
|
2734
2734
|
* @public
|
|
2735
2735
|
*/
|
|
2736
|
-
TableMetadata?: TableMetadata;
|
|
2736
|
+
TableMetadata?: TableMetadata | undefined;
|
|
2737
2737
|
}
|
|
2738
2738
|
/**
|
|
2739
2739
|
* @public
|
|
@@ -2778,7 +2778,7 @@ export interface WorkGroup {
|
|
|
2778
2778
|
* <p>The state of the workgroup: ENABLED or DISABLED.</p>
|
|
2779
2779
|
* @public
|
|
2780
2780
|
*/
|
|
2781
|
-
State?: WorkGroupState;
|
|
2781
|
+
State?: WorkGroupState | undefined;
|
|
2782
2782
|
/**
|
|
2783
2783
|
* <p>The configuration of the workgroup, which includes the location in Amazon S3
|
|
2784
2784
|
* where query and calculation results are stored, the encryption configuration, if any,
|
|
@@ -2789,23 +2789,23 @@ export interface WorkGroup {
|
|
|
2789
2789
|
* (true/false) in the <code>WorkGroupConfiguration</code>. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>
|
|
2790
2790
|
* @public
|
|
2791
2791
|
*/
|
|
2792
|
-
Configuration?: WorkGroupConfiguration;
|
|
2792
|
+
Configuration?: WorkGroupConfiguration | undefined;
|
|
2793
2793
|
/**
|
|
2794
2794
|
* <p>The workgroup description.</p>
|
|
2795
2795
|
* @public
|
|
2796
2796
|
*/
|
|
2797
|
-
Description?: string;
|
|
2797
|
+
Description?: string | undefined;
|
|
2798
2798
|
/**
|
|
2799
2799
|
* <p>The date and time the workgroup was created.</p>
|
|
2800
2800
|
* @public
|
|
2801
2801
|
*/
|
|
2802
|
-
CreationTime?: Date;
|
|
2802
|
+
CreationTime?: Date | undefined;
|
|
2803
2803
|
/**
|
|
2804
2804
|
* <p>The ARN of the IAM Identity Center enabled application associated with the
|
|
2805
2805
|
* workgroup.</p>
|
|
2806
2806
|
* @public
|
|
2807
2807
|
*/
|
|
2808
|
-
IdentityCenterApplicationArn?: string;
|
|
2808
|
+
IdentityCenterApplicationArn?: string | undefined;
|
|
2809
2809
|
}
|
|
2810
2810
|
/**
|
|
2811
2811
|
* @public
|
|
@@ -2815,7 +2815,7 @@ export interface GetWorkGroupOutput {
|
|
|
2815
2815
|
* <p>Information about the workgroup.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
WorkGroup?: WorkGroup;
|
|
2818
|
+
WorkGroup?: WorkGroup | undefined;
|
|
2819
2819
|
}
|
|
2820
2820
|
/**
|
|
2821
2821
|
* @public
|
|
@@ -2836,7 +2836,7 @@ export interface ImportNotebookInput {
|
|
|
2836
2836
|
* format.</p>
|
|
2837
2837
|
* @public
|
|
2838
2838
|
*/
|
|
2839
|
-
Payload?: string;
|
|
2839
|
+
Payload?: string | undefined;
|
|
2840
2840
|
/**
|
|
2841
2841
|
* <p>The notebook content type. Currently, the only valid type is
|
|
2842
2842
|
* <code>IPYNB</code>.</p>
|
|
@@ -2848,7 +2848,7 @@ export interface ImportNotebookInput {
|
|
|
2848
2848
|
* <code>ipynb</code> format.</p>
|
|
2849
2849
|
* @public
|
|
2850
2850
|
*/
|
|
2851
|
-
NotebookS3LocationUri?: string;
|
|
2851
|
+
NotebookS3LocationUri?: string | undefined;
|
|
2852
2852
|
/**
|
|
2853
2853
|
* <p>A unique case-sensitive string used to ensure the request to import the notebook is
|
|
2854
2854
|
* idempotent (executes only once).</p>
|
|
@@ -2860,7 +2860,7 @@ export interface ImportNotebookInput {
|
|
|
2860
2860
|
* </important>
|
|
2861
2861
|
* @public
|
|
2862
2862
|
*/
|
|
2863
|
-
ClientRequestToken?: string;
|
|
2863
|
+
ClientRequestToken?: string | undefined;
|
|
2864
2864
|
}
|
|
2865
2865
|
/**
|
|
2866
2866
|
* @public
|
|
@@ -2870,7 +2870,7 @@ export interface ImportNotebookOutput {
|
|
|
2870
2870
|
* <p>The ID assigned to the imported notebook.</p>
|
|
2871
2871
|
* @public
|
|
2872
2872
|
*/
|
|
2873
|
-
NotebookId?: string;
|
|
2873
|
+
NotebookId?: string | undefined;
|
|
2874
2874
|
}
|
|
2875
2875
|
/**
|
|
2876
2876
|
* @public
|
|
@@ -2880,13 +2880,13 @@ export interface ListApplicationDPUSizesInput {
|
|
|
2880
2880
|
* <p>Specifies the maximum number of results to return.</p>
|
|
2881
2881
|
* @public
|
|
2882
2882
|
*/
|
|
2883
|
-
MaxResults?: number;
|
|
2883
|
+
MaxResults?: number | undefined;
|
|
2884
2884
|
/**
|
|
2885
2885
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
2886
2886
|
* pagination if a previous request was truncated.</p>
|
|
2887
2887
|
* @public
|
|
2888
2888
|
*/
|
|
2889
|
-
NextToken?: string;
|
|
2889
|
+
NextToken?: string | undefined;
|
|
2890
2890
|
}
|
|
2891
2891
|
/**
|
|
2892
2892
|
* <p>Contains the application runtime IDs and their supported DPU sizes.</p>
|
|
@@ -2898,12 +2898,12 @@ export interface ApplicationDPUSizes {
|
|
|
2898
2898
|
* version 1</code>).</p>
|
|
2899
2899
|
* @public
|
|
2900
2900
|
*/
|
|
2901
|
-
ApplicationRuntimeId?: string;
|
|
2901
|
+
ApplicationRuntimeId?: string | undefined;
|
|
2902
2902
|
/**
|
|
2903
2903
|
* <p>A list of the supported DPU sizes that the application runtime supports.</p>
|
|
2904
2904
|
* @public
|
|
2905
2905
|
*/
|
|
2906
|
-
SupportedDPUSizes?: number[];
|
|
2906
|
+
SupportedDPUSizes?: number[] | undefined;
|
|
2907
2907
|
}
|
|
2908
2908
|
/**
|
|
2909
2909
|
* @public
|
|
@@ -2913,14 +2913,14 @@ export interface ListApplicationDPUSizesOutput {
|
|
|
2913
2913
|
* <p>A list of the supported DPU sizes that the application runtime supports.</p>
|
|
2914
2914
|
* @public
|
|
2915
2915
|
*/
|
|
2916
|
-
ApplicationDPUSizes?: ApplicationDPUSizes[];
|
|
2916
|
+
ApplicationDPUSizes?: ApplicationDPUSizes[] | undefined;
|
|
2917
2917
|
/**
|
|
2918
2918
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
2919
2919
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
2920
2920
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
2921
2921
|
* @public
|
|
2922
2922
|
*/
|
|
2923
|
-
NextToken?: string;
|
|
2923
|
+
NextToken?: string | undefined;
|
|
2924
2924
|
}
|
|
2925
2925
|
/**
|
|
2926
2926
|
* @public
|
|
@@ -2954,19 +2954,19 @@ export interface ListCalculationExecutionsRequest {
|
|
|
2954
2954
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
2955
2955
|
* @public
|
|
2956
2956
|
*/
|
|
2957
|
-
StateFilter?: CalculationExecutionState;
|
|
2957
|
+
StateFilter?: CalculationExecutionState | undefined;
|
|
2958
2958
|
/**
|
|
2959
2959
|
* <p>The maximum number of calculation executions to return.</p>
|
|
2960
2960
|
* @public
|
|
2961
2961
|
*/
|
|
2962
|
-
MaxResults?: number;
|
|
2962
|
+
MaxResults?: number | undefined;
|
|
2963
2963
|
/**
|
|
2964
2964
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
2965
2965
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
2966
2966
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
NextToken?: string;
|
|
2969
|
+
NextToken?: string | undefined;
|
|
2970
2970
|
}
|
|
2971
2971
|
/**
|
|
2972
2972
|
* <p>Summary information for a notebook calculation.</p>
|
|
@@ -2977,17 +2977,17 @@ export interface CalculationSummary {
|
|
|
2977
2977
|
* <p>The calculation execution UUID.</p>
|
|
2978
2978
|
* @public
|
|
2979
2979
|
*/
|
|
2980
|
-
CalculationExecutionId?: string;
|
|
2980
|
+
CalculationExecutionId?: string | undefined;
|
|
2981
2981
|
/**
|
|
2982
2982
|
* <p>A description of the calculation.</p>
|
|
2983
2983
|
* @public
|
|
2984
2984
|
*/
|
|
2985
|
-
Description?: string;
|
|
2985
|
+
Description?: string | undefined;
|
|
2986
2986
|
/**
|
|
2987
2987
|
* <p>Contains information about the status of the calculation.</p>
|
|
2988
2988
|
* @public
|
|
2989
2989
|
*/
|
|
2990
|
-
Status?: CalculationStatus;
|
|
2990
|
+
Status?: CalculationStatus | undefined;
|
|
2991
2991
|
}
|
|
2992
2992
|
/**
|
|
2993
2993
|
* @public
|
|
@@ -2999,12 +2999,12 @@ export interface ListCalculationExecutionsResponse {
|
|
|
2999
2999
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3000
3000
|
* @public
|
|
3001
3001
|
*/
|
|
3002
|
-
NextToken?: string;
|
|
3002
|
+
NextToken?: string | undefined;
|
|
3003
3003
|
/**
|
|
3004
3004
|
* <p>A list of <a>CalculationSummary</a> objects.</p>
|
|
3005
3005
|
* @public
|
|
3006
3006
|
*/
|
|
3007
|
-
Calculations?: CalculationSummary[];
|
|
3007
|
+
Calculations?: CalculationSummary[] | undefined;
|
|
3008
3008
|
}
|
|
3009
3009
|
/**
|
|
3010
3010
|
* @public
|
|
@@ -3015,12 +3015,12 @@ export interface ListCapacityReservationsInput {
|
|
|
3015
3015
|
* pagination if a previous request was truncated.</p>
|
|
3016
3016
|
* @public
|
|
3017
3017
|
*/
|
|
3018
|
-
NextToken?: string;
|
|
3018
|
+
NextToken?: string | undefined;
|
|
3019
3019
|
/**
|
|
3020
3020
|
* <p>Specifies the maximum number of results to return.</p>
|
|
3021
3021
|
* @public
|
|
3022
3022
|
*/
|
|
3023
|
-
MaxResults?: number;
|
|
3023
|
+
MaxResults?: number | undefined;
|
|
3024
3024
|
}
|
|
3025
3025
|
/**
|
|
3026
3026
|
* @public
|
|
@@ -3032,7 +3032,7 @@ export interface ListCapacityReservationsOutput {
|
|
|
3032
3032
|
* the NextToken from the response object of the previous page call.</p>
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
NextToken?: string;
|
|
3035
|
+
NextToken?: string | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* <p>The capacity reservations for the current account.</p>
|
|
3038
3038
|
* @public
|
|
@@ -3054,18 +3054,18 @@ export interface ListDatabasesInput {
|
|
|
3054
3054
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3055
3055
|
* @public
|
|
3056
3056
|
*/
|
|
3057
|
-
NextToken?: string;
|
|
3057
|
+
NextToken?: string | undefined;
|
|
3058
3058
|
/**
|
|
3059
3059
|
* <p>Specifies the maximum number of results to return.</p>
|
|
3060
3060
|
* @public
|
|
3061
3061
|
*/
|
|
3062
|
-
MaxResults?: number;
|
|
3062
|
+
MaxResults?: number | undefined;
|
|
3063
3063
|
/**
|
|
3064
3064
|
* <p>The name of the workgroup for which the metadata is being fetched. Required if
|
|
3065
3065
|
* requesting an IAM Identity Center enabled Glue Data Catalog.</p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
WorkGroup?: string;
|
|
3068
|
+
WorkGroup?: string | undefined;
|
|
3069
3069
|
}
|
|
3070
3070
|
/**
|
|
3071
3071
|
* @public
|
|
@@ -3075,14 +3075,14 @@ export interface ListDatabasesOutput {
|
|
|
3075
3075
|
* <p>A list of databases from a data catalog.</p>
|
|
3076
3076
|
* @public
|
|
3077
3077
|
*/
|
|
3078
|
-
DatabaseList?: Database[];
|
|
3078
|
+
DatabaseList?: Database[] | undefined;
|
|
3079
3079
|
/**
|
|
3080
3080
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3081
3081
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3082
3082
|
* the NextToken from the response object of the previous page call.</p>
|
|
3083
3083
|
* @public
|
|
3084
3084
|
*/
|
|
3085
|
-
NextToken?: string;
|
|
3085
|
+
NextToken?: string | undefined;
|
|
3086
3086
|
}
|
|
3087
3087
|
/**
|
|
3088
3088
|
* @public
|
|
@@ -3094,17 +3094,17 @@ export interface ListDataCatalogsInput {
|
|
|
3094
3094
|
* the NextToken from the response object of the previous page call.</p>
|
|
3095
3095
|
* @public
|
|
3096
3096
|
*/
|
|
3097
|
-
NextToken?: string;
|
|
3097
|
+
NextToken?: string | undefined;
|
|
3098
3098
|
/**
|
|
3099
3099
|
* <p>Specifies the maximum number of data catalogs to return.</p>
|
|
3100
3100
|
* @public
|
|
3101
3101
|
*/
|
|
3102
|
-
MaxResults?: number;
|
|
3102
|
+
MaxResults?: number | undefined;
|
|
3103
3103
|
/**
|
|
3104
3104
|
* <p>The name of the workgroup. Required if making an IAM Identity Center request.</p>
|
|
3105
3105
|
* @public
|
|
3106
3106
|
*/
|
|
3107
|
-
WorkGroup?: string;
|
|
3107
|
+
WorkGroup?: string | undefined;
|
|
3108
3108
|
}
|
|
3109
3109
|
/**
|
|
3110
3110
|
* <p>The summary information for the data catalog, which includes its name and type.</p>
|
|
@@ -3117,12 +3117,12 @@ export interface DataCatalogSummary {
|
|
|
3117
3117
|
* by Athena.</p>
|
|
3118
3118
|
* @public
|
|
3119
3119
|
*/
|
|
3120
|
-
CatalogName?: string;
|
|
3120
|
+
CatalogName?: string | undefined;
|
|
3121
3121
|
/**
|
|
3122
3122
|
* <p>The data catalog type.</p>
|
|
3123
3123
|
* @public
|
|
3124
3124
|
*/
|
|
3125
|
-
Type?: DataCatalogType;
|
|
3125
|
+
Type?: DataCatalogType | undefined;
|
|
3126
3126
|
}
|
|
3127
3127
|
/**
|
|
3128
3128
|
* @public
|
|
@@ -3132,14 +3132,14 @@ export interface ListDataCatalogsOutput {
|
|
|
3132
3132
|
* <p>A summary list of data catalogs.</p>
|
|
3133
3133
|
* @public
|
|
3134
3134
|
*/
|
|
3135
|
-
DataCatalogsSummary?: DataCatalogSummary[];
|
|
3135
|
+
DataCatalogsSummary?: DataCatalogSummary[] | undefined;
|
|
3136
3136
|
/**
|
|
3137
3137
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3138
3138
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3139
3139
|
* the NextToken from the response object of the previous page call.</p>
|
|
3140
3140
|
* @public
|
|
3141
3141
|
*/
|
|
3142
|
-
NextToken?: string;
|
|
3142
|
+
NextToken?: string | undefined;
|
|
3143
3143
|
}
|
|
3144
3144
|
/**
|
|
3145
3145
|
* @public
|
|
@@ -3151,12 +3151,12 @@ export interface ListEngineVersionsInput {
|
|
|
3151
3151
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3152
3152
|
* @public
|
|
3153
3153
|
*/
|
|
3154
|
-
NextToken?: string;
|
|
3154
|
+
NextToken?: string | undefined;
|
|
3155
3155
|
/**
|
|
3156
3156
|
* <p>The maximum number of engine versions to return in this request.</p>
|
|
3157
3157
|
* @public
|
|
3158
3158
|
*/
|
|
3159
|
-
MaxResults?: number;
|
|
3159
|
+
MaxResults?: number | undefined;
|
|
3160
3160
|
}
|
|
3161
3161
|
/**
|
|
3162
3162
|
* @public
|
|
@@ -3166,14 +3166,14 @@ export interface ListEngineVersionsOutput {
|
|
|
3166
3166
|
* <p>A list of engine versions that are available to choose from.</p>
|
|
3167
3167
|
* @public
|
|
3168
3168
|
*/
|
|
3169
|
-
EngineVersions?: EngineVersion[];
|
|
3169
|
+
EngineVersions?: EngineVersion[] | undefined;
|
|
3170
3170
|
/**
|
|
3171
3171
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3172
3172
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3173
3173
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3174
3174
|
* @public
|
|
3175
3175
|
*/
|
|
3176
|
-
NextToken?: string;
|
|
3176
|
+
NextToken?: string | undefined;
|
|
3177
3177
|
}
|
|
3178
3178
|
/**
|
|
3179
3179
|
* @public
|
|
@@ -3217,19 +3217,19 @@ export interface ListExecutorsRequest {
|
|
|
3217
3217
|
* <code>FAILED</code> - Due to a failure, the executor is no longer running.</p>
|
|
3218
3218
|
* @public
|
|
3219
3219
|
*/
|
|
3220
|
-
ExecutorStateFilter?: ExecutorState;
|
|
3220
|
+
ExecutorStateFilter?: ExecutorState | undefined;
|
|
3221
3221
|
/**
|
|
3222
3222
|
* <p>The maximum number of executors to return.</p>
|
|
3223
3223
|
* @public
|
|
3224
3224
|
*/
|
|
3225
|
-
MaxResults?: number;
|
|
3225
|
+
MaxResults?: number | undefined;
|
|
3226
3226
|
/**
|
|
3227
3227
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3228
3228
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3229
3229
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3230
3230
|
* @public
|
|
3231
3231
|
*/
|
|
3232
|
-
NextToken?: string;
|
|
3232
|
+
NextToken?: string | undefined;
|
|
3233
3233
|
}
|
|
3234
3234
|
/**
|
|
3235
3235
|
* @public
|
|
@@ -3259,17 +3259,17 @@ export interface ExecutorsSummary {
|
|
|
3259
3259
|
* <code>GATEWAY</code>, or <code>WORKER</code>).</p>
|
|
3260
3260
|
* @public
|
|
3261
3261
|
*/
|
|
3262
|
-
ExecutorType?: ExecutorType;
|
|
3262
|
+
ExecutorType?: ExecutorType | undefined;
|
|
3263
3263
|
/**
|
|
3264
3264
|
* <p>The date and time that the executor started.</p>
|
|
3265
3265
|
* @public
|
|
3266
3266
|
*/
|
|
3267
|
-
StartDateTime?: number;
|
|
3267
|
+
StartDateTime?: number | undefined;
|
|
3268
3268
|
/**
|
|
3269
3269
|
* <p>The date and time that the executor was terminated.</p>
|
|
3270
3270
|
* @public
|
|
3271
3271
|
*/
|
|
3272
|
-
TerminationDateTime?: number;
|
|
3272
|
+
TerminationDateTime?: number | undefined;
|
|
3273
3273
|
/**
|
|
3274
3274
|
* <p>The processing state of the executor. A description of each state follows.</p>
|
|
3275
3275
|
* <p>
|
|
@@ -3287,14 +3287,14 @@ export interface ExecutorsSummary {
|
|
|
3287
3287
|
* <code>FAILED</code> - Due to a failure, the executor is no longer running.</p>
|
|
3288
3288
|
* @public
|
|
3289
3289
|
*/
|
|
3290
|
-
ExecutorState?: ExecutorState;
|
|
3290
|
+
ExecutorState?: ExecutorState | undefined;
|
|
3291
3291
|
/**
|
|
3292
3292
|
* <p>The smallest unit of compute that a session can request from Athena. Size
|
|
3293
3293
|
* is measured in data processing unit (DPU) values, a relative measure of processing
|
|
3294
3294
|
* power.</p>
|
|
3295
3295
|
* @public
|
|
3296
3296
|
*/
|
|
3297
|
-
ExecutorSize?: number;
|
|
3297
|
+
ExecutorSize?: number | undefined;
|
|
3298
3298
|
}
|
|
3299
3299
|
/**
|
|
3300
3300
|
* @public
|
|
@@ -3311,12 +3311,12 @@ export interface ListExecutorsResponse {
|
|
|
3311
3311
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3312
3312
|
* @public
|
|
3313
3313
|
*/
|
|
3314
|
-
NextToken?: string;
|
|
3314
|
+
NextToken?: string | undefined;
|
|
3315
3315
|
/**
|
|
3316
3316
|
* <p>Contains summary information about the executor.</p>
|
|
3317
3317
|
* @public
|
|
3318
3318
|
*/
|
|
3319
|
-
ExecutorsSummary?: ExecutorsSummary[];
|
|
3319
|
+
ExecutorsSummary?: ExecutorsSummary[] | undefined;
|
|
3320
3320
|
}
|
|
3321
3321
|
/**
|
|
3322
3322
|
* @public
|
|
@@ -3328,19 +3328,19 @@ export interface ListNamedQueriesInput {
|
|
|
3328
3328
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3329
3329
|
* @public
|
|
3330
3330
|
*/
|
|
3331
|
-
NextToken?: string;
|
|
3331
|
+
NextToken?: string | undefined;
|
|
3332
3332
|
/**
|
|
3333
3333
|
* <p>The maximum number of queries to return in this request.</p>
|
|
3334
3334
|
* @public
|
|
3335
3335
|
*/
|
|
3336
|
-
MaxResults?: number;
|
|
3336
|
+
MaxResults?: number | undefined;
|
|
3337
3337
|
/**
|
|
3338
3338
|
* <p>The name of the workgroup from which the named queries are being returned. If a
|
|
3339
3339
|
* workgroup is not specified, the saved queries for the primary workgroup are
|
|
3340
3340
|
* returned.</p>
|
|
3341
3341
|
* @public
|
|
3342
3342
|
*/
|
|
3343
|
-
WorkGroup?: string;
|
|
3343
|
+
WorkGroup?: string | undefined;
|
|
3344
3344
|
}
|
|
3345
3345
|
/**
|
|
3346
3346
|
* @public
|
|
@@ -3350,14 +3350,14 @@ export interface ListNamedQueriesOutput {
|
|
|
3350
3350
|
* <p>The list of unique query IDs.</p>
|
|
3351
3351
|
* @public
|
|
3352
3352
|
*/
|
|
3353
|
-
NamedQueryIds?: string[];
|
|
3353
|
+
NamedQueryIds?: string[] | undefined;
|
|
3354
3354
|
/**
|
|
3355
3355
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3356
3356
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3357
3357
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3358
3358
|
* @public
|
|
3359
3359
|
*/
|
|
3360
|
-
NextToken?: string;
|
|
3360
|
+
NextToken?: string | undefined;
|
|
3361
3361
|
}
|
|
3362
3362
|
/**
|
|
3363
3363
|
* <p>A string for searching notebook names.</p>
|
|
@@ -3368,7 +3368,7 @@ export interface FilterDefinition {
|
|
|
3368
3368
|
* <p>The name of the notebook to search for.</p>
|
|
3369
3369
|
* @public
|
|
3370
3370
|
*/
|
|
3371
|
-
Name?: string;
|
|
3371
|
+
Name?: string | undefined;
|
|
3372
3372
|
}
|
|
3373
3373
|
/**
|
|
3374
3374
|
* @public
|
|
@@ -3378,18 +3378,18 @@ export interface ListNotebookMetadataInput {
|
|
|
3378
3378
|
* <p>Search filter string.</p>
|
|
3379
3379
|
* @public
|
|
3380
3380
|
*/
|
|
3381
|
-
Filters?: FilterDefinition;
|
|
3381
|
+
Filters?: FilterDefinition | undefined;
|
|
3382
3382
|
/**
|
|
3383
3383
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3384
3384
|
* pagination if a previous request was truncated.</p>
|
|
3385
3385
|
* @public
|
|
3386
3386
|
*/
|
|
3387
|
-
NextToken?: string;
|
|
3387
|
+
NextToken?: string | undefined;
|
|
3388
3388
|
/**
|
|
3389
3389
|
* <p>Specifies the maximum number of results to return.</p>
|
|
3390
3390
|
* @public
|
|
3391
3391
|
*/
|
|
3392
|
-
MaxResults?: number;
|
|
3392
|
+
MaxResults?: number | undefined;
|
|
3393
3393
|
/**
|
|
3394
3394
|
* <p>The name of the Spark enabled workgroup to retrieve notebook metadata for.</p>
|
|
3395
3395
|
* @public
|
|
@@ -3406,12 +3406,12 @@ export interface ListNotebookMetadataOutput {
|
|
|
3406
3406
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3407
3407
|
* @public
|
|
3408
3408
|
*/
|
|
3409
|
-
NextToken?: string;
|
|
3409
|
+
NextToken?: string | undefined;
|
|
3410
3410
|
/**
|
|
3411
3411
|
* <p>The list of notebook metadata for the specified workgroup.</p>
|
|
3412
3412
|
* @public
|
|
3413
3413
|
*/
|
|
3414
|
-
NotebookMetadataList?: NotebookMetadata[];
|
|
3414
|
+
NotebookMetadataList?: NotebookMetadata[] | undefined;
|
|
3415
3415
|
}
|
|
3416
3416
|
/**
|
|
3417
3417
|
* @public
|
|
@@ -3426,14 +3426,14 @@ export interface ListNotebookSessionsRequest {
|
|
|
3426
3426
|
* <p>The maximum number of notebook sessions to return.</p>
|
|
3427
3427
|
* @public
|
|
3428
3428
|
*/
|
|
3429
|
-
MaxResults?: number;
|
|
3429
|
+
MaxResults?: number | undefined;
|
|
3430
3430
|
/**
|
|
3431
3431
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3432
3432
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3433
3433
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3434
3434
|
* @public
|
|
3435
3435
|
*/
|
|
3436
|
-
NextToken?: string;
|
|
3436
|
+
NextToken?: string | undefined;
|
|
3437
3437
|
}
|
|
3438
3438
|
/**
|
|
3439
3439
|
* <p>Contains the notebook session ID and notebook session creation time.</p>
|
|
@@ -3444,12 +3444,12 @@ export interface NotebookSessionSummary {
|
|
|
3444
3444
|
* <p>The notebook session ID.</p>
|
|
3445
3445
|
* @public
|
|
3446
3446
|
*/
|
|
3447
|
-
SessionId?: string;
|
|
3447
|
+
SessionId?: string | undefined;
|
|
3448
3448
|
/**
|
|
3449
3449
|
* <p>The time when the notebook session was created.</p>
|
|
3450
3450
|
* @public
|
|
3451
3451
|
*/
|
|
3452
|
-
CreationTime?: Date;
|
|
3452
|
+
CreationTime?: Date | undefined;
|
|
3453
3453
|
}
|
|
3454
3454
|
/**
|
|
3455
3455
|
* @public
|
|
@@ -3466,7 +3466,7 @@ export interface ListNotebookSessionsResponse {
|
|
|
3466
3466
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3467
3467
|
* @public
|
|
3468
3468
|
*/
|
|
3469
|
-
NextToken?: string;
|
|
3469
|
+
NextToken?: string | undefined;
|
|
3470
3470
|
}
|
|
3471
3471
|
/**
|
|
3472
3472
|
* @public
|
|
@@ -3483,12 +3483,12 @@ export interface ListPreparedStatementsInput {
|
|
|
3483
3483
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3484
3484
|
* @public
|
|
3485
3485
|
*/
|
|
3486
|
-
NextToken?: string;
|
|
3486
|
+
NextToken?: string | undefined;
|
|
3487
3487
|
/**
|
|
3488
3488
|
* <p>The maximum number of results to return in this request.</p>
|
|
3489
3489
|
* @public
|
|
3490
3490
|
*/
|
|
3491
|
-
MaxResults?: number;
|
|
3491
|
+
MaxResults?: number | undefined;
|
|
3492
3492
|
}
|
|
3493
3493
|
/**
|
|
3494
3494
|
* <p>The name and last modified time of the prepared statement.</p>
|
|
@@ -3499,12 +3499,12 @@ export interface PreparedStatementSummary {
|
|
|
3499
3499
|
* <p>The name of the prepared statement.</p>
|
|
3500
3500
|
* @public
|
|
3501
3501
|
*/
|
|
3502
|
-
StatementName?: string;
|
|
3502
|
+
StatementName?: string | undefined;
|
|
3503
3503
|
/**
|
|
3504
3504
|
* <p>The last modified time of the prepared statement.</p>
|
|
3505
3505
|
* @public
|
|
3506
3506
|
*/
|
|
3507
|
-
LastModifiedTime?: Date;
|
|
3507
|
+
LastModifiedTime?: Date | undefined;
|
|
3508
3508
|
}
|
|
3509
3509
|
/**
|
|
3510
3510
|
* @public
|
|
@@ -3514,14 +3514,14 @@ export interface ListPreparedStatementsOutput {
|
|
|
3514
3514
|
* <p>The list of prepared statements for the workgroup.</p>
|
|
3515
3515
|
* @public
|
|
3516
3516
|
*/
|
|
3517
|
-
PreparedStatements?: PreparedStatementSummary[];
|
|
3517
|
+
PreparedStatements?: PreparedStatementSummary[] | undefined;
|
|
3518
3518
|
/**
|
|
3519
3519
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3520
3520
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3521
3521
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3522
3522
|
* @public
|
|
3523
3523
|
*/
|
|
3524
|
-
NextToken?: string;
|
|
3524
|
+
NextToken?: string | undefined;
|
|
3525
3525
|
}
|
|
3526
3526
|
/**
|
|
3527
3527
|
* @public
|
|
@@ -3533,19 +3533,19 @@ export interface ListQueryExecutionsInput {
|
|
|
3533
3533
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3534
3534
|
* @public
|
|
3535
3535
|
*/
|
|
3536
|
-
NextToken?: string;
|
|
3536
|
+
NextToken?: string | undefined;
|
|
3537
3537
|
/**
|
|
3538
3538
|
* <p>The maximum number of query executions to return in this request.</p>
|
|
3539
3539
|
* @public
|
|
3540
3540
|
*/
|
|
3541
|
-
MaxResults?: number;
|
|
3541
|
+
MaxResults?: number | undefined;
|
|
3542
3542
|
/**
|
|
3543
3543
|
* <p>The name of the workgroup from which queries are being returned. If a workgroup is not
|
|
3544
3544
|
* specified, a list of available query execution IDs for the queries in the primary
|
|
3545
3545
|
* workgroup is returned.</p>
|
|
3546
3546
|
* @public
|
|
3547
3547
|
*/
|
|
3548
|
-
WorkGroup?: string;
|
|
3548
|
+
WorkGroup?: string | undefined;
|
|
3549
3549
|
}
|
|
3550
3550
|
/**
|
|
3551
3551
|
* @public
|
|
@@ -3555,12 +3555,12 @@ export interface ListQueryExecutionsOutput {
|
|
|
3555
3555
|
* <p>The unique IDs of each query execution as an array of strings.</p>
|
|
3556
3556
|
* @public
|
|
3557
3557
|
*/
|
|
3558
|
-
QueryExecutionIds?: string[];
|
|
3558
|
+
QueryExecutionIds?: string[] | undefined;
|
|
3559
3559
|
/**
|
|
3560
3560
|
* <p>A token to be used by the next request if this request is truncated.</p>
|
|
3561
3561
|
* @public
|
|
3562
3562
|
*/
|
|
3563
|
-
NextToken?: string;
|
|
3563
|
+
NextToken?: string | undefined;
|
|
3564
3564
|
}
|
|
3565
3565
|
/**
|
|
3566
3566
|
* @public
|
|
@@ -3594,19 +3594,19 @@ export interface ListSessionsRequest {
|
|
|
3594
3594
|
* running.</p>
|
|
3595
3595
|
* @public
|
|
3596
3596
|
*/
|
|
3597
|
-
StateFilter?: SessionState;
|
|
3597
|
+
StateFilter?: SessionState | undefined;
|
|
3598
3598
|
/**
|
|
3599
3599
|
* <p>The maximum number of sessions to return.</p>
|
|
3600
3600
|
* @public
|
|
3601
3601
|
*/
|
|
3602
|
-
MaxResults?: number;
|
|
3602
|
+
MaxResults?: number | undefined;
|
|
3603
3603
|
/**
|
|
3604
3604
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3605
3605
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3606
3606
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3607
3607
|
* @public
|
|
3608
3608
|
*/
|
|
3609
|
-
NextToken?: string;
|
|
3609
|
+
NextToken?: string | undefined;
|
|
3610
3610
|
}
|
|
3611
3611
|
/**
|
|
3612
3612
|
* <p>Contains summary information about a session.</p>
|
|
@@ -3617,28 +3617,28 @@ export interface SessionSummary {
|
|
|
3617
3617
|
* <p>The session ID.</p>
|
|
3618
3618
|
* @public
|
|
3619
3619
|
*/
|
|
3620
|
-
SessionId?: string;
|
|
3620
|
+
SessionId?: string | undefined;
|
|
3621
3621
|
/**
|
|
3622
3622
|
* <p>The session description.</p>
|
|
3623
3623
|
* @public
|
|
3624
3624
|
*/
|
|
3625
|
-
Description?: string;
|
|
3625
|
+
Description?: string | undefined;
|
|
3626
3626
|
/**
|
|
3627
3627
|
* <p>The engine version used by the session (for example, <code>PySpark engine version
|
|
3628
3628
|
* 3</code>).</p>
|
|
3629
3629
|
* @public
|
|
3630
3630
|
*/
|
|
3631
|
-
EngineVersion?: EngineVersion;
|
|
3631
|
+
EngineVersion?: EngineVersion | undefined;
|
|
3632
3632
|
/**
|
|
3633
3633
|
* <p>The notebook version.</p>
|
|
3634
3634
|
* @public
|
|
3635
3635
|
*/
|
|
3636
|
-
NotebookVersion?: string;
|
|
3636
|
+
NotebookVersion?: string | undefined;
|
|
3637
3637
|
/**
|
|
3638
3638
|
* <p>Contains information about the session status.</p>
|
|
3639
3639
|
* @public
|
|
3640
3640
|
*/
|
|
3641
|
-
Status?: SessionStatus;
|
|
3641
|
+
Status?: SessionStatus | undefined;
|
|
3642
3642
|
}
|
|
3643
3643
|
/**
|
|
3644
3644
|
* @public
|
|
@@ -3650,12 +3650,12 @@ export interface ListSessionsResponse {
|
|
|
3650
3650
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3651
3651
|
* @public
|
|
3652
3652
|
*/
|
|
3653
|
-
NextToken?: string;
|
|
3653
|
+
NextToken?: string | undefined;
|
|
3654
3654
|
/**
|
|
3655
3655
|
* <p>A list of sessions.</p>
|
|
3656
3656
|
* @public
|
|
3657
3657
|
*/
|
|
3658
|
-
Sessions?: SessionSummary[];
|
|
3658
|
+
Sessions?: SessionSummary[] | undefined;
|
|
3659
3659
|
}
|
|
3660
3660
|
/**
|
|
3661
3661
|
* @public
|
|
@@ -3676,25 +3676,25 @@ export interface ListTableMetadataInput {
|
|
|
3676
3676
|
* metadata for all tables are listed.</p>
|
|
3677
3677
|
* @public
|
|
3678
3678
|
*/
|
|
3679
|
-
Expression?: string;
|
|
3679
|
+
Expression?: string | undefined;
|
|
3680
3680
|
/**
|
|
3681
3681
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3682
3682
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3683
3683
|
* the NextToken from the response object of the previous page call.</p>
|
|
3684
3684
|
* @public
|
|
3685
3685
|
*/
|
|
3686
|
-
NextToken?: string;
|
|
3686
|
+
NextToken?: string | undefined;
|
|
3687
3687
|
/**
|
|
3688
3688
|
* <p>Specifies the maximum number of results to return.</p>
|
|
3689
3689
|
* @public
|
|
3690
3690
|
*/
|
|
3691
|
-
MaxResults?: number;
|
|
3691
|
+
MaxResults?: number | undefined;
|
|
3692
3692
|
/**
|
|
3693
3693
|
* <p>The name of the workgroup for which the metadata is being fetched. Required if
|
|
3694
3694
|
* requesting an IAM Identity Center enabled Glue Data Catalog.</p>
|
|
3695
3695
|
* @public
|
|
3696
3696
|
*/
|
|
3697
|
-
WorkGroup?: string;
|
|
3697
|
+
WorkGroup?: string | undefined;
|
|
3698
3698
|
}
|
|
3699
3699
|
/**
|
|
3700
3700
|
* @public
|
|
@@ -3704,14 +3704,14 @@ export interface ListTableMetadataOutput {
|
|
|
3704
3704
|
* <p>A list of table metadata.</p>
|
|
3705
3705
|
* @public
|
|
3706
3706
|
*/
|
|
3707
|
-
TableMetadataList?: TableMetadata[];
|
|
3707
|
+
TableMetadataList?: TableMetadata[] | undefined;
|
|
3708
3708
|
/**
|
|
3709
3709
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3710
3710
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3711
3711
|
* the NextToken from the response object of the previous page call.</p>
|
|
3712
3712
|
* @public
|
|
3713
3713
|
*/
|
|
3714
|
-
NextToken?: string;
|
|
3714
|
+
NextToken?: string | undefined;
|
|
3715
3715
|
}
|
|
3716
3716
|
/**
|
|
3717
3717
|
* @public
|
|
@@ -3728,13 +3728,13 @@ export interface ListTagsForResourceInput {
|
|
|
3728
3728
|
* ARN.</p>
|
|
3729
3729
|
* @public
|
|
3730
3730
|
*/
|
|
3731
|
-
NextToken?: string;
|
|
3731
|
+
NextToken?: string | undefined;
|
|
3732
3732
|
/**
|
|
3733
3733
|
* <p>The maximum number of results to be returned per request that lists the tags for the
|
|
3734
3734
|
* resource.</p>
|
|
3735
3735
|
* @public
|
|
3736
3736
|
*/
|
|
3737
|
-
MaxResults?: number;
|
|
3737
|
+
MaxResults?: number | undefined;
|
|
3738
3738
|
}
|
|
3739
3739
|
/**
|
|
3740
3740
|
* @public
|
|
@@ -3744,12 +3744,12 @@ export interface ListTagsForResourceOutput {
|
|
|
3744
3744
|
* <p>The list of tags associated with the specified resource.</p>
|
|
3745
3745
|
* @public
|
|
3746
3746
|
*/
|
|
3747
|
-
Tags?: Tag[];
|
|
3747
|
+
Tags?: Tag[] | undefined;
|
|
3748
3748
|
/**
|
|
3749
3749
|
* <p>A token to be used by the next request if this request is truncated.</p>
|
|
3750
3750
|
* @public
|
|
3751
3751
|
*/
|
|
3752
|
-
NextToken?: string;
|
|
3752
|
+
NextToken?: string | undefined;
|
|
3753
3753
|
}
|
|
3754
3754
|
/**
|
|
3755
3755
|
* @public
|
|
@@ -3761,12 +3761,12 @@ export interface ListWorkGroupsInput {
|
|
|
3761
3761
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3762
3762
|
* @public
|
|
3763
3763
|
*/
|
|
3764
|
-
NextToken?: string;
|
|
3764
|
+
NextToken?: string | undefined;
|
|
3765
3765
|
/**
|
|
3766
3766
|
* <p>The maximum number of workgroups to return in this request.</p>
|
|
3767
3767
|
* @public
|
|
3768
3768
|
*/
|
|
3769
|
-
MaxResults?: number;
|
|
3769
|
+
MaxResults?: number | undefined;
|
|
3770
3770
|
}
|
|
3771
3771
|
/**
|
|
3772
3772
|
* <p>The summary information for the workgroup, which includes its name, state,
|
|
@@ -3778,35 +3778,35 @@ export interface WorkGroupSummary {
|
|
|
3778
3778
|
* <p>The name of the workgroup.</p>
|
|
3779
3779
|
* @public
|
|
3780
3780
|
*/
|
|
3781
|
-
Name?: string;
|
|
3781
|
+
Name?: string | undefined;
|
|
3782
3782
|
/**
|
|
3783
3783
|
* <p>The state of the workgroup.</p>
|
|
3784
3784
|
* @public
|
|
3785
3785
|
*/
|
|
3786
|
-
State?: WorkGroupState;
|
|
3786
|
+
State?: WorkGroupState | undefined;
|
|
3787
3787
|
/**
|
|
3788
3788
|
* <p>The workgroup description.</p>
|
|
3789
3789
|
* @public
|
|
3790
3790
|
*/
|
|
3791
|
-
Description?: string;
|
|
3791
|
+
Description?: string | undefined;
|
|
3792
3792
|
/**
|
|
3793
3793
|
* <p>The workgroup creation date and time.</p>
|
|
3794
3794
|
* @public
|
|
3795
3795
|
*/
|
|
3796
|
-
CreationTime?: Date;
|
|
3796
|
+
CreationTime?: Date | undefined;
|
|
3797
3797
|
/**
|
|
3798
3798
|
* <p>The engine version setting for all queries on the workgroup. Queries on the
|
|
3799
3799
|
* <code>AmazonAthenaPreviewFunctionality</code> workgroup run on the preview engine
|
|
3800
3800
|
* regardless of this setting.</p>
|
|
3801
3801
|
* @public
|
|
3802
3802
|
*/
|
|
3803
|
-
EngineVersion?: EngineVersion;
|
|
3803
|
+
EngineVersion?: EngineVersion | undefined;
|
|
3804
3804
|
/**
|
|
3805
3805
|
* <p>The ARN of the IAM Identity Center enabled application associated with the
|
|
3806
3806
|
* workgroup.</p>
|
|
3807
3807
|
* @public
|
|
3808
3808
|
*/
|
|
3809
|
-
IdentityCenterApplicationArn?: string;
|
|
3809
|
+
IdentityCenterApplicationArn?: string | undefined;
|
|
3810
3810
|
}
|
|
3811
3811
|
/**
|
|
3812
3812
|
* @public
|
|
@@ -3817,14 +3817,14 @@ export interface ListWorkGroupsOutput {
|
|
|
3817
3817
|
* descriptions, creation times, and states for each workgroup.</p>
|
|
3818
3818
|
* @public
|
|
3819
3819
|
*/
|
|
3820
|
-
WorkGroups?: WorkGroupSummary[];
|
|
3820
|
+
WorkGroups?: WorkGroupSummary[] | undefined;
|
|
3821
3821
|
/**
|
|
3822
3822
|
* <p>A token generated by the Athena service that specifies where to continue
|
|
3823
3823
|
* pagination if a previous request was truncated. To obtain the next set of pages, pass in
|
|
3824
3824
|
* the <code>NextToken</code> from the response object of the previous page call.</p>
|
|
3825
3825
|
* @public
|
|
3826
3826
|
*/
|
|
3827
|
-
NextToken?: string;
|
|
3827
|
+
NextToken?: string | undefined;
|
|
3828
3828
|
}
|
|
3829
3829
|
/**
|
|
3830
3830
|
* @public
|
|
@@ -3856,7 +3856,7 @@ export interface CalculationConfiguration {
|
|
|
3856
3856
|
* <p>A string that contains the code for the calculation.</p>
|
|
3857
3857
|
* @public
|
|
3858
3858
|
*/
|
|
3859
|
-
CodeBlock?: string;
|
|
3859
|
+
CodeBlock?: string | undefined;
|
|
3860
3860
|
}
|
|
3861
3861
|
/**
|
|
3862
3862
|
* @public
|
|
@@ -3871,20 +3871,20 @@ export interface StartCalculationExecutionRequest {
|
|
|
3871
3871
|
* <p>A description of the calculation.</p>
|
|
3872
3872
|
* @public
|
|
3873
3873
|
*/
|
|
3874
|
-
Description?: string;
|
|
3874
|
+
Description?: string | undefined;
|
|
3875
3875
|
/**
|
|
3876
3876
|
* @deprecated
|
|
3877
3877
|
*
|
|
3878
3878
|
* <p>Contains configuration information for the calculation.</p>
|
|
3879
3879
|
* @public
|
|
3880
3880
|
*/
|
|
3881
|
-
CalculationConfiguration?: CalculationConfiguration;
|
|
3881
|
+
CalculationConfiguration?: CalculationConfiguration | undefined;
|
|
3882
3882
|
/**
|
|
3883
3883
|
* <p>A string that contains the code of the calculation. Use this parameter instead of
|
|
3884
3884
|
* <a>CalculationConfiguration$CodeBlock</a>, which is deprecated.</p>
|
|
3885
3885
|
* @public
|
|
3886
3886
|
*/
|
|
3887
|
-
CodeBlock?: string;
|
|
3887
|
+
CodeBlock?: string | undefined;
|
|
3888
3888
|
/**
|
|
3889
3889
|
* <p>A unique case-sensitive string used to ensure the request to create the calculation is
|
|
3890
3890
|
* idempotent (executes only once). If another
|
|
@@ -3899,7 +3899,7 @@ export interface StartCalculationExecutionRequest {
|
|
|
3899
3899
|
* </important>
|
|
3900
3900
|
* @public
|
|
3901
3901
|
*/
|
|
3902
|
-
ClientRequestToken?: string;
|
|
3902
|
+
ClientRequestToken?: string | undefined;
|
|
3903
3903
|
}
|
|
3904
3904
|
/**
|
|
3905
3905
|
* @public
|
|
@@ -3909,7 +3909,7 @@ export interface StartCalculationExecutionResponse {
|
|
|
3909
3909
|
* <p>The calculation execution UUID.</p>
|
|
3910
3910
|
* @public
|
|
3911
3911
|
*/
|
|
3912
|
-
CalculationExecutionId?: string;
|
|
3912
|
+
CalculationExecutionId?: string | undefined;
|
|
3913
3913
|
/**
|
|
3914
3914
|
* <p>
|
|
3915
3915
|
* <code>CREATING</code> - The calculation is in the process of being created.</p>
|
|
@@ -3931,7 +3931,7 @@ export interface StartCalculationExecutionResponse {
|
|
|
3931
3931
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
3932
3932
|
* @public
|
|
3933
3933
|
*/
|
|
3934
|
-
State?: CalculationExecutionState;
|
|
3934
|
+
State?: CalculationExecutionState | undefined;
|
|
3935
3935
|
}
|
|
3936
3936
|
/**
|
|
3937
3937
|
* @public
|
|
@@ -3958,12 +3958,12 @@ export interface StartQueryExecutionInput {
|
|
|
3958
3958
|
* </important>
|
|
3959
3959
|
* @public
|
|
3960
3960
|
*/
|
|
3961
|
-
ClientRequestToken?: string;
|
|
3961
|
+
ClientRequestToken?: string | undefined;
|
|
3962
3962
|
/**
|
|
3963
3963
|
* <p>The database within which the query executes.</p>
|
|
3964
3964
|
* @public
|
|
3965
3965
|
*/
|
|
3966
|
-
QueryExecutionContext?: QueryExecutionContext;
|
|
3966
|
+
QueryExecutionContext?: QueryExecutionContext | undefined;
|
|
3967
3967
|
/**
|
|
3968
3968
|
* <p>Specifies information about where and how to save the results of the query execution.
|
|
3969
3969
|
* If the query runs in a workgroup, then workgroup's settings may override query settings.
|
|
@@ -3971,23 +3971,23 @@ export interface StartQueryExecutionInput {
|
|
|
3971
3971
|
* EnforceWorkGroupConfiguration (true/false) in the WorkGroupConfiguration. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>
|
|
3972
3972
|
* @public
|
|
3973
3973
|
*/
|
|
3974
|
-
ResultConfiguration?: ResultConfiguration;
|
|
3974
|
+
ResultConfiguration?: ResultConfiguration | undefined;
|
|
3975
3975
|
/**
|
|
3976
3976
|
* <p>The name of the workgroup in which the query is being started.</p>
|
|
3977
3977
|
* @public
|
|
3978
3978
|
*/
|
|
3979
|
-
WorkGroup?: string;
|
|
3979
|
+
WorkGroup?: string | undefined;
|
|
3980
3980
|
/**
|
|
3981
3981
|
* <p>A list of values for the parameters in a query. The values are applied sequentially to
|
|
3982
3982
|
* the parameters in the query in the order in which the parameters occur.</p>
|
|
3983
3983
|
* @public
|
|
3984
3984
|
*/
|
|
3985
|
-
ExecutionParameters?: string[];
|
|
3985
|
+
ExecutionParameters?: string[] | undefined;
|
|
3986
3986
|
/**
|
|
3987
3987
|
* <p>Specifies the query result reuse behavior for the query.</p>
|
|
3988
3988
|
* @public
|
|
3989
3989
|
*/
|
|
3990
|
-
ResultReuseConfiguration?: ResultReuseConfiguration;
|
|
3990
|
+
ResultReuseConfiguration?: ResultReuseConfiguration | undefined;
|
|
3991
3991
|
}
|
|
3992
3992
|
/**
|
|
3993
3993
|
* @public
|
|
@@ -3997,7 +3997,7 @@ export interface StartQueryExecutionOutput {
|
|
|
3997
3997
|
* <p>The unique ID of the query that ran as a result of this request.</p>
|
|
3998
3998
|
* @public
|
|
3999
3999
|
*/
|
|
4000
|
-
QueryExecutionId?: string;
|
|
4000
|
+
QueryExecutionId?: string | undefined;
|
|
4001
4001
|
}
|
|
4002
4002
|
/**
|
|
4003
4003
|
* <p>The specified session already exists.</p>
|
|
@@ -4006,7 +4006,7 @@ export interface StartQueryExecutionOutput {
|
|
|
4006
4006
|
export declare class SessionAlreadyExistsException extends __BaseException {
|
|
4007
4007
|
readonly name: "SessionAlreadyExistsException";
|
|
4008
4008
|
readonly $fault: "client";
|
|
4009
|
-
Message?: string;
|
|
4009
|
+
Message?: string | undefined;
|
|
4010
4010
|
/**
|
|
4011
4011
|
* @internal
|
|
4012
4012
|
*/
|
|
@@ -4020,7 +4020,7 @@ export interface StartSessionRequest {
|
|
|
4020
4020
|
* <p>The session description.</p>
|
|
4021
4021
|
* @public
|
|
4022
4022
|
*/
|
|
4023
|
-
Description?: string;
|
|
4023
|
+
Description?: string | undefined;
|
|
4024
4024
|
/**
|
|
4025
4025
|
* <p>The workgroup to which the session belongs.</p>
|
|
4026
4026
|
* @public
|
|
@@ -4040,12 +4040,12 @@ export interface StartSessionRequest {
|
|
|
4040
4040
|
* <code>NotebookId</code>. See <a>EngineConfiguration$AdditionalConfigs</a>.</p>
|
|
4041
4041
|
* @public
|
|
4042
4042
|
*/
|
|
4043
|
-
NotebookVersion?: string;
|
|
4043
|
+
NotebookVersion?: string | undefined;
|
|
4044
4044
|
/**
|
|
4045
4045
|
* <p>The idle timeout in minutes for the session.</p>
|
|
4046
4046
|
* @public
|
|
4047
4047
|
*/
|
|
4048
|
-
SessionIdleTimeoutInMinutes?: number;
|
|
4048
|
+
SessionIdleTimeoutInMinutes?: number | undefined;
|
|
4049
4049
|
/**
|
|
4050
4050
|
* <p>A unique case-sensitive string used to ensure the request to create the session is
|
|
4051
4051
|
* idempotent (executes only once). If another <code>StartSessionRequest</code> is
|
|
@@ -4059,7 +4059,7 @@ export interface StartSessionRequest {
|
|
|
4059
4059
|
* </important>
|
|
4060
4060
|
* @public
|
|
4061
4061
|
*/
|
|
4062
|
-
ClientRequestToken?: string;
|
|
4062
|
+
ClientRequestToken?: string | undefined;
|
|
4063
4063
|
}
|
|
4064
4064
|
/**
|
|
4065
4065
|
* @public
|
|
@@ -4069,7 +4069,7 @@ export interface StartSessionResponse {
|
|
|
4069
4069
|
* <p>The session ID.</p>
|
|
4070
4070
|
* @public
|
|
4071
4071
|
*/
|
|
4072
|
-
SessionId?: string;
|
|
4072
|
+
SessionId?: string | undefined;
|
|
4073
4073
|
/**
|
|
4074
4074
|
* <p>The state of the session. A description of each state follows.</p>
|
|
4075
4075
|
* <p>
|
|
@@ -4093,7 +4093,7 @@ export interface StartSessionResponse {
|
|
|
4093
4093
|
* running.</p>
|
|
4094
4094
|
* @public
|
|
4095
4095
|
*/
|
|
4096
|
-
State?: SessionState;
|
|
4096
|
+
State?: SessionState | undefined;
|
|
4097
4097
|
}
|
|
4098
4098
|
/**
|
|
4099
4099
|
* @public
|
|
@@ -4130,7 +4130,7 @@ export interface StopCalculationExecutionResponse {
|
|
|
4130
4130
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
4131
4131
|
* @public
|
|
4132
4132
|
*/
|
|
4133
|
-
State?: CalculationExecutionState;
|
|
4133
|
+
State?: CalculationExecutionState | undefined;
|
|
4134
4134
|
}
|
|
4135
4135
|
/**
|
|
4136
4136
|
* @public
|
|
@@ -4140,7 +4140,7 @@ export interface StopQueryExecutionInput {
|
|
|
4140
4140
|
* <p>The unique ID of the query execution to stop.</p>
|
|
4141
4141
|
* @public
|
|
4142
4142
|
*/
|
|
4143
|
-
QueryExecutionId?: string;
|
|
4143
|
+
QueryExecutionId?: string | undefined;
|
|
4144
4144
|
}
|
|
4145
4145
|
/**
|
|
4146
4146
|
* @public
|
|
@@ -4205,7 +4205,7 @@ export interface TerminateSessionResponse {
|
|
|
4205
4205
|
* running.</p>
|
|
4206
4206
|
* @public
|
|
4207
4207
|
*/
|
|
4208
|
-
State?: SessionState;
|
|
4208
|
+
State?: SessionState | undefined;
|
|
4209
4209
|
}
|
|
4210
4210
|
/**
|
|
4211
4211
|
* @public
|
|
@@ -4271,7 +4271,7 @@ export interface UpdateDataCatalogInput {
|
|
|
4271
4271
|
* <p>New or modified text that describes the data catalog.</p>
|
|
4272
4272
|
* @public
|
|
4273
4273
|
*/
|
|
4274
|
-
Description?: string;
|
|
4274
|
+
Description?: string | undefined;
|
|
4275
4275
|
/**
|
|
4276
4276
|
* <p>Specifies the Lambda function or functions to use for updating the data
|
|
4277
4277
|
* catalog. This is a mapping whose values depend on the catalog type. </p>
|
|
@@ -4314,7 +4314,7 @@ export interface UpdateDataCatalogInput {
|
|
|
4314
4314
|
* </ul>
|
|
4315
4315
|
* @public
|
|
4316
4316
|
*/
|
|
4317
|
-
Parameters?: Record<string, string
|
|
4317
|
+
Parameters?: Record<string, string> | undefined;
|
|
4318
4318
|
}
|
|
4319
4319
|
/**
|
|
4320
4320
|
* @public
|
|
@@ -4339,7 +4339,7 @@ export interface UpdateNamedQueryInput {
|
|
|
4339
4339
|
* <p>The query description.</p>
|
|
4340
4340
|
* @public
|
|
4341
4341
|
*/
|
|
4342
|
-
Description?: string;
|
|
4342
|
+
Description?: string | undefined;
|
|
4343
4343
|
/**
|
|
4344
4344
|
* <p>The contents of the query with all query statements.</p>
|
|
4345
4345
|
* @public
|
|
@@ -4375,7 +4375,7 @@ export interface UpdateNotebookInput {
|
|
|
4375
4375
|
* <p>The active notebook session ID. Required if the notebook has an active session.</p>
|
|
4376
4376
|
* @public
|
|
4377
4377
|
*/
|
|
4378
|
-
SessionId?: string;
|
|
4378
|
+
SessionId?: string | undefined;
|
|
4379
4379
|
/**
|
|
4380
4380
|
* <p>A unique case-sensitive string used to ensure the request to create the notebook is
|
|
4381
4381
|
* idempotent (executes only once).</p>
|
|
@@ -4387,7 +4387,7 @@ export interface UpdateNotebookInput {
|
|
|
4387
4387
|
* </important>
|
|
4388
4388
|
* @public
|
|
4389
4389
|
*/
|
|
4390
|
-
ClientRequestToken?: string;
|
|
4390
|
+
ClientRequestToken?: string | undefined;
|
|
4391
4391
|
}
|
|
4392
4392
|
/**
|
|
4393
4393
|
* @public
|
|
@@ -4414,7 +4414,7 @@ export interface UpdateNotebookMetadataInput {
|
|
|
4414
4414
|
* </important>
|
|
4415
4415
|
* @public
|
|
4416
4416
|
*/
|
|
4417
|
-
ClientRequestToken?: string;
|
|
4417
|
+
ClientRequestToken?: string | undefined;
|
|
4418
4418
|
/**
|
|
4419
4419
|
* <p>The name to update the notebook to.</p>
|
|
4420
4420
|
* @public
|
|
@@ -4449,7 +4449,7 @@ export interface UpdatePreparedStatementInput {
|
|
|
4449
4449
|
* <p>The description of the prepared statement.</p>
|
|
4450
4450
|
* @public
|
|
4451
4451
|
*/
|
|
4452
|
-
Description?: string;
|
|
4452
|
+
Description?: string | undefined;
|
|
4453
4453
|
}
|
|
4454
4454
|
/**
|
|
4455
4455
|
* @public
|
|
@@ -4471,7 +4471,7 @@ export interface ResultConfigurationUpdates {
|
|
|
4471
4471
|
* <code>WorkGroupConfiguration</code>. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>
|
|
4472
4472
|
* @public
|
|
4473
4473
|
*/
|
|
4474
|
-
OutputLocation?: string;
|
|
4474
|
+
OutputLocation?: string | undefined;
|
|
4475
4475
|
/**
|
|
4476
4476
|
* <p>If set to "true", indicates that the previously-specified query results location (also
|
|
4477
4477
|
* known as a client-side setting) for queries in this workgroup should be ignored and set
|
|
@@ -4483,12 +4483,12 @@ export interface ResultConfigurationUpdates {
|
|
|
4483
4483
|
* Client-Side Settings</a>.</p>
|
|
4484
4484
|
* @public
|
|
4485
4485
|
*/
|
|
4486
|
-
RemoveOutputLocation?: boolean;
|
|
4486
|
+
RemoveOutputLocation?: boolean | undefined;
|
|
4487
4487
|
/**
|
|
4488
4488
|
* <p>The encryption configuration for query and calculation results.</p>
|
|
4489
4489
|
* @public
|
|
4490
4490
|
*/
|
|
4491
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
4491
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
4492
4492
|
/**
|
|
4493
4493
|
* <p>If set to "true", indicates that the previously-specified encryption configuration
|
|
4494
4494
|
* (also known as the client-side setting) for queries in this workgroup should be ignored
|
|
@@ -4500,7 +4500,7 @@ export interface ResultConfigurationUpdates {
|
|
|
4500
4500
|
* Client-Side Settings</a>.</p>
|
|
4501
4501
|
* @public
|
|
4502
4502
|
*/
|
|
4503
|
-
RemoveEncryptionConfiguration?: boolean;
|
|
4503
|
+
RemoveEncryptionConfiguration?: boolean | undefined;
|
|
4504
4504
|
/**
|
|
4505
4505
|
* <p>The Amazon Web Services account ID that you expect to be the owner of the Amazon S3 bucket specified by <a>ResultConfiguration$OutputLocation</a>.
|
|
4506
4506
|
* If set, Athena uses the value for <code>ExpectedBucketOwner</code> when it
|
|
@@ -4513,7 +4513,7 @@ export interface ResultConfigurationUpdates {
|
|
|
4513
4513
|
* also uses the location for storing query results specified in the workgroup. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a> and <a href="https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html">Workgroup Settings Override Client-Side Settings</a>.</p>
|
|
4514
4514
|
* @public
|
|
4515
4515
|
*/
|
|
4516
|
-
ExpectedBucketOwner?: string;
|
|
4516
|
+
ExpectedBucketOwner?: string | undefined;
|
|
4517
4517
|
/**
|
|
4518
4518
|
* <p>If set to "true", removes the Amazon Web Services account ID previously specified for
|
|
4519
4519
|
* <a>ResultConfiguration$ExpectedBucketOwner</a>. If set to "false" or not
|
|
@@ -4524,12 +4524,12 @@ export interface ResultConfigurationUpdates {
|
|
|
4524
4524
|
* Client-Side Settings</a>.</p>
|
|
4525
4525
|
* @public
|
|
4526
4526
|
*/
|
|
4527
|
-
RemoveExpectedBucketOwner?: boolean;
|
|
4527
|
+
RemoveExpectedBucketOwner?: boolean | undefined;
|
|
4528
4528
|
/**
|
|
4529
4529
|
* <p>The ACL configuration for the query results.</p>
|
|
4530
4530
|
* @public
|
|
4531
4531
|
*/
|
|
4532
|
-
AclConfiguration?: AclConfiguration;
|
|
4532
|
+
AclConfiguration?: AclConfiguration | undefined;
|
|
4533
4533
|
/**
|
|
4534
4534
|
* <p>If set to <code>true</code>, indicates that the previously-specified ACL configuration
|
|
4535
4535
|
* for queries in this workgroup should be ignored and set to null. If set to
|
|
@@ -4540,7 +4540,7 @@ export interface ResultConfigurationUpdates {
|
|
|
4540
4540
|
* Client-Side Settings</a>.</p>
|
|
4541
4541
|
* @public
|
|
4542
4542
|
*/
|
|
4543
|
-
RemoveAclConfiguration?: boolean;
|
|
4543
|
+
RemoveAclConfiguration?: boolean | undefined;
|
|
4544
4544
|
}
|
|
4545
4545
|
/**
|
|
4546
4546
|
* <p>The configuration information that will be updated for this workgroup, which includes
|
|
@@ -4557,31 +4557,31 @@ export interface WorkGroupConfigurationUpdates {
|
|
|
4557
4557
|
* to "false" client-side settings are used. For more information, see <a href="https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html">Workgroup Settings Override Client-Side Settings</a>.</p>
|
|
4558
4558
|
* @public
|
|
4559
4559
|
*/
|
|
4560
|
-
EnforceWorkGroupConfiguration?: boolean;
|
|
4560
|
+
EnforceWorkGroupConfiguration?: boolean | undefined;
|
|
4561
4561
|
/**
|
|
4562
4562
|
* <p>The result configuration information about the queries in this workgroup that will be
|
|
4563
4563
|
* updated. Includes the updated results location and an updated option for encrypting
|
|
4564
4564
|
* query results.</p>
|
|
4565
4565
|
* @public
|
|
4566
4566
|
*/
|
|
4567
|
-
ResultConfigurationUpdates?: ResultConfigurationUpdates;
|
|
4567
|
+
ResultConfigurationUpdates?: ResultConfigurationUpdates | undefined;
|
|
4568
4568
|
/**
|
|
4569
4569
|
* <p>Indicates whether this workgroup enables publishing metrics to Amazon CloudWatch.</p>
|
|
4570
4570
|
* @public
|
|
4571
4571
|
*/
|
|
4572
|
-
PublishCloudWatchMetricsEnabled?: boolean;
|
|
4572
|
+
PublishCloudWatchMetricsEnabled?: boolean | undefined;
|
|
4573
4573
|
/**
|
|
4574
4574
|
* <p>The upper limit (cutoff) for the amount of bytes a single query in a workgroup is
|
|
4575
4575
|
* allowed to scan.</p>
|
|
4576
4576
|
* @public
|
|
4577
4577
|
*/
|
|
4578
|
-
BytesScannedCutoffPerQuery?: number;
|
|
4578
|
+
BytesScannedCutoffPerQuery?: number | undefined;
|
|
4579
4579
|
/**
|
|
4580
4580
|
* <p>Indicates that the data usage control limit per query is removed. <a>WorkGroupConfiguration$BytesScannedCutoffPerQuery</a>
|
|
4581
4581
|
* </p>
|
|
4582
4582
|
* @public
|
|
4583
4583
|
*/
|
|
4584
|
-
RemoveBytesScannedCutoffPerQuery?: boolean;
|
|
4584
|
+
RemoveBytesScannedCutoffPerQuery?: boolean | undefined;
|
|
4585
4585
|
/**
|
|
4586
4586
|
* <p>If set to <code>true</code>, allows members assigned to a workgroup to specify Amazon S3 Requester Pays buckets in queries. If set to <code>false</code>, workgroup
|
|
4587
4587
|
* members cannot query data from Requester Pays buckets, and queries that retrieve data
|
|
@@ -4590,7 +4590,7 @@ export interface WorkGroupConfigurationUpdates {
|
|
|
4590
4590
|
* in the <i>Amazon Simple Storage Service Developer Guide</i>.</p>
|
|
4591
4591
|
* @public
|
|
4592
4592
|
*/
|
|
4593
|
-
RequesterPaysEnabled?: boolean;
|
|
4593
|
+
RequesterPaysEnabled?: boolean | undefined;
|
|
4594
4594
|
/**
|
|
4595
4595
|
* <p>The engine version requested when a workgroup is updated. After the update, all
|
|
4596
4596
|
* queries on the workgroup run on the requested engine version. If no value was previously
|
|
@@ -4598,31 +4598,31 @@ export interface WorkGroupConfigurationUpdates {
|
|
|
4598
4598
|
* workgroup run on the preview engine regardless of this setting.</p>
|
|
4599
4599
|
* @public
|
|
4600
4600
|
*/
|
|
4601
|
-
EngineVersion?: EngineVersion;
|
|
4601
|
+
EngineVersion?: EngineVersion | undefined;
|
|
4602
4602
|
/**
|
|
4603
4603
|
* <p>Removes content encryption configuration from an Apache Spark-enabled Athena workgroup.</p>
|
|
4604
4604
|
* @public
|
|
4605
4605
|
*/
|
|
4606
|
-
RemoveCustomerContentEncryptionConfiguration?: boolean;
|
|
4606
|
+
RemoveCustomerContentEncryptionConfiguration?: boolean | undefined;
|
|
4607
4607
|
/**
|
|
4608
4608
|
* <p>Contains a user defined string in JSON format for a Spark-enabled workgroup.</p>
|
|
4609
4609
|
* @public
|
|
4610
4610
|
*/
|
|
4611
|
-
AdditionalConfiguration?: string;
|
|
4611
|
+
AdditionalConfiguration?: string | undefined;
|
|
4612
4612
|
/**
|
|
4613
4613
|
* <p>The ARN of the execution role used to access user resources for Spark sessions and
|
|
4614
4614
|
* Identity Center enabled workgroups. This property applies only to Spark enabled
|
|
4615
4615
|
* workgroups and Identity Center enabled workgroups.</p>
|
|
4616
4616
|
* @public
|
|
4617
4617
|
*/
|
|
4618
|
-
ExecutionRole?: string;
|
|
4618
|
+
ExecutionRole?: string | undefined;
|
|
4619
4619
|
/**
|
|
4620
4620
|
* <p>Specifies the customer managed KMS key that is used to encrypt the user's data stores
|
|
4621
4621
|
* in Athena. When an Amazon Web Services managed key is used, this value is
|
|
4622
4622
|
* null. This setting does not apply to Athena SQL workgroups.</p>
|
|
4623
4623
|
* @public
|
|
4624
4624
|
*/
|
|
4625
|
-
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration;
|
|
4625
|
+
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration | undefined;
|
|
4626
4626
|
/**
|
|
4627
4627
|
* <p>Enforces a minimal level of encryption for the workgroup for query and calculation
|
|
4628
4628
|
* results that are written to Amazon S3. When enabled, workgroup users can set
|
|
@@ -4635,13 +4635,13 @@ export interface WorkGroupConfigurationUpdates {
|
|
|
4635
4635
|
* configuration for encryption is used.</p>
|
|
4636
4636
|
* @public
|
|
4637
4637
|
*/
|
|
4638
|
-
EnableMinimumEncryptionConfiguration?: boolean;
|
|
4638
|
+
EnableMinimumEncryptionConfiguration?: boolean | undefined;
|
|
4639
4639
|
/**
|
|
4640
4640
|
* <p>Specifies whether Amazon S3 access grants are enabled for query
|
|
4641
4641
|
* results.</p>
|
|
4642
4642
|
* @public
|
|
4643
4643
|
*/
|
|
4644
|
-
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration;
|
|
4644
|
+
QueryResultsS3AccessGrantsConfiguration?: QueryResultsS3AccessGrantsConfiguration | undefined;
|
|
4645
4645
|
}
|
|
4646
4646
|
/**
|
|
4647
4647
|
* @public
|
|
@@ -4656,17 +4656,17 @@ export interface UpdateWorkGroupInput {
|
|
|
4656
4656
|
* <p>The workgroup description.</p>
|
|
4657
4657
|
* @public
|
|
4658
4658
|
*/
|
|
4659
|
-
Description?: string;
|
|
4659
|
+
Description?: string | undefined;
|
|
4660
4660
|
/**
|
|
4661
4661
|
* <p>Contains configuration updates for an Athena SQL workgroup.</p>
|
|
4662
4662
|
* @public
|
|
4663
4663
|
*/
|
|
4664
|
-
ConfigurationUpdates?: WorkGroupConfigurationUpdates;
|
|
4664
|
+
ConfigurationUpdates?: WorkGroupConfigurationUpdates | undefined;
|
|
4665
4665
|
/**
|
|
4666
4666
|
* <p>The workgroup state that will be updated for the given workgroup.</p>
|
|
4667
4667
|
* @public
|
|
4668
4668
|
*/
|
|
4669
|
-
State?: WorkGroupState;
|
|
4669
|
+
State?: WorkGroupState | undefined;
|
|
4670
4670
|
}
|
|
4671
4671
|
/**
|
|
4672
4672
|
* @public
|
|
@@ -4683,23 +4683,23 @@ export interface QueryStagePlanNode {
|
|
|
4683
4683
|
* part of query execution.</p>
|
|
4684
4684
|
* @public
|
|
4685
4685
|
*/
|
|
4686
|
-
Name?: string;
|
|
4686
|
+
Name?: string | undefined;
|
|
4687
4687
|
/**
|
|
4688
4688
|
* <p>Information about the operation this query stage plan node is performing.</p>
|
|
4689
4689
|
* @public
|
|
4690
4690
|
*/
|
|
4691
|
-
Identifier?: string;
|
|
4691
|
+
Identifier?: string | undefined;
|
|
4692
4692
|
/**
|
|
4693
4693
|
* <p>Stage plan information such as name, identifier, sub plans, and remote sources of
|
|
4694
4694
|
* child plan nodes/</p>
|
|
4695
4695
|
* @public
|
|
4696
4696
|
*/
|
|
4697
|
-
Children?: QueryStagePlanNode[];
|
|
4697
|
+
Children?: QueryStagePlanNode[] | undefined;
|
|
4698
4698
|
/**
|
|
4699
4699
|
* <p>Source plan node IDs.</p>
|
|
4700
4700
|
* @public
|
|
4701
4701
|
*/
|
|
4702
|
-
RemoteSources?: string[];
|
|
4702
|
+
RemoteSources?: string[] | undefined;
|
|
4703
4703
|
}
|
|
4704
4704
|
/**
|
|
4705
4705
|
* <p>Stage statistics such as input and output rows and bytes, execution time and stage
|
|
@@ -4711,47 +4711,47 @@ export interface QueryStage {
|
|
|
4711
4711
|
* <p>The identifier for a stage.</p>
|
|
4712
4712
|
* @public
|
|
4713
4713
|
*/
|
|
4714
|
-
StageId?: number;
|
|
4714
|
+
StageId?: number | undefined;
|
|
4715
4715
|
/**
|
|
4716
4716
|
* <p>State of the stage after query execution.</p>
|
|
4717
4717
|
* @public
|
|
4718
4718
|
*/
|
|
4719
|
-
State?: string;
|
|
4719
|
+
State?: string | undefined;
|
|
4720
4720
|
/**
|
|
4721
4721
|
* <p>The number of bytes output from the stage after execution.</p>
|
|
4722
4722
|
* @public
|
|
4723
4723
|
*/
|
|
4724
|
-
OutputBytes?: number;
|
|
4724
|
+
OutputBytes?: number | undefined;
|
|
4725
4725
|
/**
|
|
4726
4726
|
* <p>The number of rows output from the stage after execution.</p>
|
|
4727
4727
|
* @public
|
|
4728
4728
|
*/
|
|
4729
|
-
OutputRows?: number;
|
|
4729
|
+
OutputRows?: number | undefined;
|
|
4730
4730
|
/**
|
|
4731
4731
|
* <p>The number of bytes input into the stage for execution.</p>
|
|
4732
4732
|
* @public
|
|
4733
4733
|
*/
|
|
4734
|
-
InputBytes?: number;
|
|
4734
|
+
InputBytes?: number | undefined;
|
|
4735
4735
|
/**
|
|
4736
4736
|
* <p>The number of rows input into the stage for execution.</p>
|
|
4737
4737
|
* @public
|
|
4738
4738
|
*/
|
|
4739
|
-
InputRows?: number;
|
|
4739
|
+
InputRows?: number | undefined;
|
|
4740
4740
|
/**
|
|
4741
4741
|
* <p>Time taken to execute this stage.</p>
|
|
4742
4742
|
* @public
|
|
4743
4743
|
*/
|
|
4744
|
-
ExecutionTime?: number;
|
|
4744
|
+
ExecutionTime?: number | undefined;
|
|
4745
4745
|
/**
|
|
4746
4746
|
* <p>Stage plan information such as name, identifier, sub plans, and source stages.</p>
|
|
4747
4747
|
* @public
|
|
4748
4748
|
*/
|
|
4749
|
-
QueryStagePlan?: QueryStagePlanNode;
|
|
4749
|
+
QueryStagePlan?: QueryStagePlanNode | undefined;
|
|
4750
4750
|
/**
|
|
4751
4751
|
* <p>List of sub query stages that form this stage execution plan.</p>
|
|
4752
4752
|
* @public
|
|
4753
4753
|
*/
|
|
4754
|
-
SubStages?: QueryStage[];
|
|
4754
|
+
SubStages?: QueryStage[] | undefined;
|
|
4755
4755
|
}
|
|
4756
4756
|
/**
|
|
4757
4757
|
* <p>The query execution timeline, statistics on input and output rows and bytes, and the
|
|
@@ -4764,19 +4764,19 @@ export interface QueryRuntimeStatistics {
|
|
|
4764
4764
|
* processing time, and total execution time.</p>
|
|
4765
4765
|
* @public
|
|
4766
4766
|
*/
|
|
4767
|
-
Timeline?: QueryRuntimeStatisticsTimeline;
|
|
4767
|
+
Timeline?: QueryRuntimeStatisticsTimeline | undefined;
|
|
4768
4768
|
/**
|
|
4769
4769
|
* <p>Statistics such as input rows and bytes read by the query, rows and bytes output by
|
|
4770
4770
|
* the query, and the number of rows written by the query.</p>
|
|
4771
4771
|
* @public
|
|
4772
4772
|
*/
|
|
4773
|
-
Rows?: QueryRuntimeStatisticsRows;
|
|
4773
|
+
Rows?: QueryRuntimeStatisticsRows | undefined;
|
|
4774
4774
|
/**
|
|
4775
4775
|
* <p>Stage statistics such as input and output rows and bytes, execution time, and stage
|
|
4776
4776
|
* state. This information also includes substages and the query stage plan.</p>
|
|
4777
4777
|
* @public
|
|
4778
4778
|
*/
|
|
4779
|
-
OutputStage?: QueryStage;
|
|
4779
|
+
OutputStage?: QueryStage | undefined;
|
|
4780
4780
|
}
|
|
4781
4781
|
/**
|
|
4782
4782
|
* @public
|
|
@@ -4786,5 +4786,5 @@ export interface GetQueryRuntimeStatisticsOutput {
|
|
|
4786
4786
|
* <p>Runtime statistics about the query execution.</p>
|
|
4787
4787
|
* @public
|
|
4788
4788
|
*/
|
|
4789
|
-
QueryRuntimeStatistics?: QueryRuntimeStatistics;
|
|
4789
|
+
QueryRuntimeStatistics?: QueryRuntimeStatistics | undefined;
|
|
4790
4790
|
}
|