@aws-sdk/client-athena 3.428.0 → 3.429.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.
|
@@ -29,7 +29,7 @@ export interface AclConfiguration {
|
|
|
29
29
|
* specified in the workgroup's settings is used for all queries that run in the workgroup.
|
|
30
30
|
* For more information about Amazon S3 canned ACLs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#canned-acl">Canned ACL</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
31
31
|
*/
|
|
32
|
-
S3AclOption: S3AclOption |
|
|
32
|
+
S3AclOption: S3AclOption | undefined;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* @public
|
|
@@ -332,7 +332,7 @@ export interface EncryptionConfiguration {
|
|
|
332
332
|
* the workgroup's setting for encryption is used. It specifies whether query results must
|
|
333
333
|
* be encrypted, for all queries that run in this workgroup. </p>
|
|
334
334
|
*/
|
|
335
|
-
EncryptionOption: EncryptionOption |
|
|
335
|
+
EncryptionOption: EncryptionOption | undefined;
|
|
336
336
|
/**
|
|
337
337
|
* @public
|
|
338
338
|
* <p>For <code>SSE_KMS</code> and <code>CSE_KMS</code>, this is the KMS key ARN or
|
|
@@ -586,7 +586,7 @@ export interface QueryExecutionStatus {
|
|
|
586
586
|
* <code>RUNNING</code> or <code>FAILED</code> to <code>QUEUED</code>. </p>
|
|
587
587
|
* </note>
|
|
588
588
|
*/
|
|
589
|
-
State?: QueryExecutionState
|
|
589
|
+
State?: QueryExecutionState;
|
|
590
590
|
/**
|
|
591
591
|
* @public
|
|
592
592
|
* <p>Further detail about the status of the query.</p>
|
|
@@ -631,7 +631,7 @@ export interface QueryExecution {
|
|
|
631
631
|
* query statements other than DDL and DML, such as <code>SHOW CREATE TABLE</code>, or
|
|
632
632
|
* <code>DESCRIBE TABLE</code>.</p>
|
|
633
633
|
*/
|
|
634
|
-
StatementType?: StatementType
|
|
634
|
+
StatementType?: StatementType;
|
|
635
635
|
/**
|
|
636
636
|
* @public
|
|
637
637
|
* <p>The location in Amazon S3 where query and calculation results are stored and the encryption
|
|
@@ -823,7 +823,7 @@ export interface CreateDataCatalogInput {
|
|
|
823
823
|
* <code>HIVE</code> for an external hive metastore, or <code>GLUE</code> for an
|
|
824
824
|
* Glue Data Catalog.</p>
|
|
825
825
|
*/
|
|
826
|
-
Type: DataCatalogType |
|
|
826
|
+
Type: DataCatalogType | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* @public
|
|
829
829
|
* <p>A description of the data catalog to be created.</p>
|
|
@@ -1028,7 +1028,7 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
1028
1028
|
* <p>The reason for the query throttling, for example, when it exceeds the concurrent query
|
|
1029
1029
|
* limit.</p>
|
|
1030
1030
|
*/
|
|
1031
|
-
Reason?: ThrottleReason
|
|
1031
|
+
Reason?: ThrottleReason;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* @internal
|
|
1034
1034
|
*/
|
|
@@ -1393,7 +1393,7 @@ export interface NotebookMetadata {
|
|
|
1393
1393
|
* @public
|
|
1394
1394
|
* <p>The type of notebook. Currently, the only valid type is <code>IPYNB</code>.</p>
|
|
1395
1395
|
*/
|
|
1396
|
-
Type?: NotebookType
|
|
1396
|
+
Type?: NotebookType;
|
|
1397
1397
|
/**
|
|
1398
1398
|
* @public
|
|
1399
1399
|
* <p>The time when the notebook was last modified.</p>
|
|
@@ -1524,7 +1524,7 @@ export interface CalculationStatus {
|
|
|
1524
1524
|
* <p>
|
|
1525
1525
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
1526
1526
|
*/
|
|
1527
|
-
State?: CalculationExecutionState
|
|
1527
|
+
State?: CalculationExecutionState;
|
|
1528
1528
|
/**
|
|
1529
1529
|
* @public
|
|
1530
1530
|
* <p>The reason for the calculation state change (for example, the calculation was canceled
|
|
@@ -1698,7 +1698,7 @@ export interface CapacityAllocation {
|
|
|
1698
1698
|
* @public
|
|
1699
1699
|
* <p>The status of the capacity allocation.</p>
|
|
1700
1700
|
*/
|
|
1701
|
-
Status: CapacityAllocationStatus |
|
|
1701
|
+
Status: CapacityAllocationStatus | undefined;
|
|
1702
1702
|
/**
|
|
1703
1703
|
* @public
|
|
1704
1704
|
* <p>The status message of the capacity allocation.</p>
|
|
@@ -1745,7 +1745,7 @@ export interface CapacityReservation {
|
|
|
1745
1745
|
* @public
|
|
1746
1746
|
* <p>The status of the capacity reservation.</p>
|
|
1747
1747
|
*/
|
|
1748
|
-
Status: CapacityReservationStatus |
|
|
1748
|
+
Status: CapacityReservationStatus | undefined;
|
|
1749
1749
|
/**
|
|
1750
1750
|
* @public
|
|
1751
1751
|
* <p>The number of data processing units requested.</p>
|
|
@@ -1883,7 +1883,7 @@ export interface DataCatalog {
|
|
|
1883
1883
|
* <code>HIVE</code> for an external hive metastore, or <code>GLUE</code> for an
|
|
1884
1884
|
* Glue Data Catalog.</p>
|
|
1885
1885
|
*/
|
|
1886
|
-
Type: DataCatalogType |
|
|
1886
|
+
Type: DataCatalogType | undefined;
|
|
1887
1887
|
/**
|
|
1888
1888
|
* @public
|
|
1889
1889
|
* <p>Specifies the Lambda function or functions to use for the data catalog.
|
|
@@ -2134,7 +2134,7 @@ export interface ColumnInfo {
|
|
|
2134
2134
|
* @public
|
|
2135
2135
|
* <p>Indicates the column's nullable status.</p>
|
|
2136
2136
|
*/
|
|
2137
|
-
Nullable?: ColumnNullable
|
|
2137
|
+
Nullable?: ColumnNullable;
|
|
2138
2138
|
/**
|
|
2139
2139
|
* @public
|
|
2140
2140
|
* <p>Indicates whether values in the column are case-sensitive.</p>
|
|
@@ -2446,7 +2446,7 @@ export interface SessionStatus {
|
|
|
2446
2446
|
* <code>FAILED</code> - Due to a failure, the session and its resources are no longer
|
|
2447
2447
|
* running.</p>
|
|
2448
2448
|
*/
|
|
2449
|
-
State?: SessionState
|
|
2449
|
+
State?: SessionState;
|
|
2450
2450
|
/**
|
|
2451
2451
|
* @public
|
|
2452
2452
|
* <p>The reason for the session state change (for example, canceled because the session was
|
|
@@ -2667,7 +2667,7 @@ export interface WorkGroup {
|
|
|
2667
2667
|
* @public
|
|
2668
2668
|
* <p>The state of the workgroup: ENABLED or DISABLED.</p>
|
|
2669
2669
|
*/
|
|
2670
|
-
State?: WorkGroupState
|
|
2670
|
+
State?: WorkGroupState;
|
|
2671
2671
|
/**
|
|
2672
2672
|
* @public
|
|
2673
2673
|
* <p>The configuration of the workgroup, which includes the location in Amazon S3
|
|
@@ -2723,7 +2723,7 @@ export interface ImportNotebookInput {
|
|
|
2723
2723
|
* <p>The notebook content type. Currently, the only valid type is
|
|
2724
2724
|
* <code>IPYNB</code>.</p>
|
|
2725
2725
|
*/
|
|
2726
|
-
Type: NotebookType |
|
|
2726
|
+
Type: NotebookType | undefined;
|
|
2727
2727
|
/**
|
|
2728
2728
|
* @public
|
|
2729
2729
|
* <p>A unique case-sensitive string used to ensure the request to import the notebook is
|
|
@@ -2829,7 +2829,7 @@ export interface ListCalculationExecutionsRequest {
|
|
|
2829
2829
|
* <p>
|
|
2830
2830
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
2831
2831
|
*/
|
|
2832
|
-
StateFilter?: CalculationExecutionState
|
|
2832
|
+
StateFilter?: CalculationExecutionState;
|
|
2833
2833
|
/**
|
|
2834
2834
|
* @public
|
|
2835
2835
|
* <p>The maximum number of calculation executions to return.</p>
|
|
@@ -2986,7 +2986,7 @@ export interface DataCatalogSummary {
|
|
|
2986
2986
|
* @public
|
|
2987
2987
|
* <p>The data catalog type.</p>
|
|
2988
2988
|
*/
|
|
2989
|
-
Type?: DataCatalogType
|
|
2989
|
+
Type?: DataCatalogType;
|
|
2990
2990
|
}
|
|
2991
2991
|
/**
|
|
2992
2992
|
* @public
|
|
@@ -3081,7 +3081,7 @@ export interface ListExecutorsRequest {
|
|
|
3081
3081
|
* <p>
|
|
3082
3082
|
* <code>FAILED</code> - Due to a failure, the executor is no longer running.</p>
|
|
3083
3083
|
*/
|
|
3084
|
-
ExecutorStateFilter?: ExecutorState
|
|
3084
|
+
ExecutorStateFilter?: ExecutorState;
|
|
3085
3085
|
/**
|
|
3086
3086
|
* @public
|
|
3087
3087
|
* <p>The maximum number of executors to return.</p>
|
|
@@ -3123,7 +3123,7 @@ export interface ExecutorsSummary {
|
|
|
3123
3123
|
* <p>The type of executor used for the application (<code>COORDINATOR</code>,
|
|
3124
3124
|
* <code>GATEWAY</code>, or <code>WORKER</code>).</p>
|
|
3125
3125
|
*/
|
|
3126
|
-
ExecutorType?: ExecutorType
|
|
3126
|
+
ExecutorType?: ExecutorType;
|
|
3127
3127
|
/**
|
|
3128
3128
|
* @public
|
|
3129
3129
|
* <p>The date and time that the executor started.</p>
|
|
@@ -3151,7 +3151,7 @@ export interface ExecutorsSummary {
|
|
|
3151
3151
|
* <p>
|
|
3152
3152
|
* <code>FAILED</code> - Due to a failure, the executor is no longer running.</p>
|
|
3153
3153
|
*/
|
|
3154
|
-
ExecutorState?: ExecutorState
|
|
3154
|
+
ExecutorState?: ExecutorState;
|
|
3155
3155
|
/**
|
|
3156
3156
|
* @public
|
|
3157
3157
|
* <p>The smallest unit of compute that a session can request from Athena. Size
|
|
@@ -3458,7 +3458,7 @@ export interface ListSessionsRequest {
|
|
|
3458
3458
|
* <code>FAILED</code> - Due to a failure, the session and its resources are no longer
|
|
3459
3459
|
* running.</p>
|
|
3460
3460
|
*/
|
|
3461
|
-
StateFilter?: SessionState
|
|
3461
|
+
StateFilter?: SessionState;
|
|
3462
3462
|
/**
|
|
3463
3463
|
* @public
|
|
3464
3464
|
* <p>The maximum number of sessions to return.</p>
|
|
@@ -3641,7 +3641,7 @@ export interface WorkGroupSummary {
|
|
|
3641
3641
|
* @public
|
|
3642
3642
|
* <p>The state of the workgroup.</p>
|
|
3643
3643
|
*/
|
|
3644
|
-
State?: WorkGroupState
|
|
3644
|
+
State?: WorkGroupState;
|
|
3645
3645
|
/**
|
|
3646
3646
|
* @public
|
|
3647
3647
|
* <p>The workgroup description.</p>
|
|
@@ -3781,7 +3781,7 @@ export interface StartCalculationExecutionResponse {
|
|
|
3781
3781
|
* <p>
|
|
3782
3782
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
3783
3783
|
*/
|
|
3784
|
-
State?: CalculationExecutionState
|
|
3784
|
+
State?: CalculationExecutionState;
|
|
3785
3785
|
}
|
|
3786
3786
|
/**
|
|
3787
3787
|
* @public
|
|
@@ -3936,7 +3936,7 @@ export interface StartSessionResponse {
|
|
|
3936
3936
|
* <code>FAILED</code> - Due to a failure, the session and its resources are no longer
|
|
3937
3937
|
* running.</p>
|
|
3938
3938
|
*/
|
|
3939
|
-
State?: SessionState
|
|
3939
|
+
State?: SessionState;
|
|
3940
3940
|
}
|
|
3941
3941
|
/**
|
|
3942
3942
|
* @public
|
|
@@ -3973,7 +3973,7 @@ export interface StopCalculationExecutionResponse {
|
|
|
3973
3973
|
* <p>
|
|
3974
3974
|
* <code>FAILED</code> - The calculation failed and is no longer running.</p>
|
|
3975
3975
|
*/
|
|
3976
|
-
State?: CalculationExecutionState
|
|
3976
|
+
State?: CalculationExecutionState;
|
|
3977
3977
|
}
|
|
3978
3978
|
/**
|
|
3979
3979
|
* @public
|
|
@@ -4048,7 +4048,7 @@ export interface TerminateSessionResponse {
|
|
|
4048
4048
|
* <code>FAILED</code> - Due to a failure, the session and its resources are no longer
|
|
4049
4049
|
* running.</p>
|
|
4050
4050
|
*/
|
|
4051
|
-
State?: SessionState
|
|
4051
|
+
State?: SessionState;
|
|
4052
4052
|
}
|
|
4053
4053
|
/**
|
|
4054
4054
|
* @public
|
|
@@ -4109,7 +4109,7 @@ export interface UpdateDataCatalogInput {
|
|
|
4109
4109
|
* federated catalog, <code>HIVE</code> for an external hive metastore, or
|
|
4110
4110
|
* <code>GLUE</code> for an Glue Data Catalog.</p>
|
|
4111
4111
|
*/
|
|
4112
|
-
Type: DataCatalogType |
|
|
4112
|
+
Type: DataCatalogType | undefined;
|
|
4113
4113
|
/**
|
|
4114
4114
|
* @public
|
|
4115
4115
|
* <p>New or modified text that describes the data catalog.</p>
|
|
@@ -4213,7 +4213,7 @@ export interface UpdateNotebookInput {
|
|
|
4213
4213
|
* <p>The notebook content type. Currently, the only valid type is
|
|
4214
4214
|
* <code>IPYNB</code>.</p>
|
|
4215
4215
|
*/
|
|
4216
|
-
Type: NotebookType |
|
|
4216
|
+
Type: NotebookType | undefined;
|
|
4217
4217
|
/**
|
|
4218
4218
|
* @public
|
|
4219
4219
|
* <p>The active notebook session ID. Required if the notebook has an active session.</p>
|
|
@@ -4495,7 +4495,7 @@ export interface UpdateWorkGroupInput {
|
|
|
4495
4495
|
* @public
|
|
4496
4496
|
* <p>The workgroup state that will be updated for the given workgroup.</p>
|
|
4497
4497
|
*/
|
|
4498
|
-
State?: WorkGroupState
|
|
4498
|
+
State?: WorkGroupState;
|
|
4499
4499
|
}
|
|
4500
4500
|
/**
|
|
4501
4501
|
* @public
|
|
@@ -5,7 +5,7 @@ export declare const S3AclOption: {
|
|
|
5
5
|
};
|
|
6
6
|
export type S3AclOption = (typeof S3AclOption)[keyof typeof S3AclOption];
|
|
7
7
|
export interface AclConfiguration {
|
|
8
|
-
S3AclOption: S3AclOption |
|
|
8
|
+
S3AclOption: S3AclOption | undefined;
|
|
9
9
|
}
|
|
10
10
|
export interface BatchGetNamedQueryInput {
|
|
11
11
|
NamedQueryIds: string[] | undefined;
|
|
@@ -83,7 +83,7 @@ export declare const EncryptionOption: {
|
|
|
83
83
|
export type EncryptionOption =
|
|
84
84
|
(typeof EncryptionOption)[keyof typeof EncryptionOption];
|
|
85
85
|
export interface EncryptionConfiguration {
|
|
86
|
-
EncryptionOption: EncryptionOption |
|
|
86
|
+
EncryptionOption: EncryptionOption | undefined;
|
|
87
87
|
KmsKey?: string;
|
|
88
88
|
}
|
|
89
89
|
export interface ResultConfiguration {
|
|
@@ -134,7 +134,7 @@ export declare const QueryExecutionState: {
|
|
|
134
134
|
export type QueryExecutionState =
|
|
135
135
|
(typeof QueryExecutionState)[keyof typeof QueryExecutionState];
|
|
136
136
|
export interface QueryExecutionStatus {
|
|
137
|
-
State?: QueryExecutionState
|
|
137
|
+
State?: QueryExecutionState;
|
|
138
138
|
StateChangeReason?: string;
|
|
139
139
|
SubmissionDateTime?: Date;
|
|
140
140
|
CompletionDateTime?: Date;
|
|
@@ -143,7 +143,7 @@ export interface QueryExecutionStatus {
|
|
|
143
143
|
export interface QueryExecution {
|
|
144
144
|
QueryExecutionId?: string;
|
|
145
145
|
Query?: string;
|
|
146
|
-
StatementType?: StatementType
|
|
146
|
+
StatementType?: StatementType;
|
|
147
147
|
ResultConfiguration?: ResultConfiguration;
|
|
148
148
|
ResultReuseConfiguration?: ResultReuseConfiguration;
|
|
149
149
|
QueryExecutionContext?: QueryExecutionContext;
|
|
@@ -186,7 +186,7 @@ export type DataCatalogType =
|
|
|
186
186
|
(typeof DataCatalogType)[keyof typeof DataCatalogType];
|
|
187
187
|
export interface CreateDataCatalogInput {
|
|
188
188
|
Name: string | undefined;
|
|
189
|
-
Type: DataCatalogType |
|
|
189
|
+
Type: DataCatalogType | undefined;
|
|
190
190
|
Description?: string;
|
|
191
191
|
Parameters?: Record<string, string>;
|
|
192
192
|
Tags?: Tag[];
|
|
@@ -220,7 +220,7 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
220
220
|
readonly name: "TooManyRequestsException";
|
|
221
221
|
readonly $fault: "client";
|
|
222
222
|
Message?: string;
|
|
223
|
-
Reason?: ThrottleReason
|
|
223
|
+
Reason?: ThrottleReason;
|
|
224
224
|
constructor(
|
|
225
225
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
226
226
|
);
|
|
@@ -309,7 +309,7 @@ export interface NotebookMetadata {
|
|
|
309
309
|
Name?: string;
|
|
310
310
|
WorkGroup?: string;
|
|
311
311
|
CreationTime?: Date;
|
|
312
|
-
Type?: NotebookType
|
|
312
|
+
Type?: NotebookType;
|
|
313
313
|
LastModifiedTime?: Date;
|
|
314
314
|
}
|
|
315
315
|
export interface ExportNotebookOutput {
|
|
@@ -344,7 +344,7 @@ export type CalculationExecutionState =
|
|
|
344
344
|
export interface CalculationStatus {
|
|
345
345
|
SubmissionDateTime?: Date;
|
|
346
346
|
CompletionDateTime?: Date;
|
|
347
|
-
State?: CalculationExecutionState
|
|
347
|
+
State?: CalculationExecutionState;
|
|
348
348
|
StateChangeReason?: string;
|
|
349
349
|
}
|
|
350
350
|
export interface GetCalculationExecutionResponse {
|
|
@@ -393,7 +393,7 @@ export declare const CapacityAllocationStatus: {
|
|
|
393
393
|
export type CapacityAllocationStatus =
|
|
394
394
|
(typeof CapacityAllocationStatus)[keyof typeof CapacityAllocationStatus];
|
|
395
395
|
export interface CapacityAllocation {
|
|
396
|
-
Status: CapacityAllocationStatus |
|
|
396
|
+
Status: CapacityAllocationStatus | undefined;
|
|
397
397
|
StatusMessage?: string;
|
|
398
398
|
RequestTime: Date | undefined;
|
|
399
399
|
RequestCompletionTime?: Date;
|
|
@@ -410,7 +410,7 @@ export type CapacityReservationStatus =
|
|
|
410
410
|
(typeof CapacityReservationStatus)[keyof typeof CapacityReservationStatus];
|
|
411
411
|
export interface CapacityReservation {
|
|
412
412
|
Name: string | undefined;
|
|
413
|
-
Status: CapacityReservationStatus |
|
|
413
|
+
Status: CapacityReservationStatus | undefined;
|
|
414
414
|
TargetDpus: number | undefined;
|
|
415
415
|
AllocatedDpus: number | undefined;
|
|
416
416
|
LastAllocation?: CapacityAllocation;
|
|
@@ -444,7 +444,7 @@ export interface GetDataCatalogInput {
|
|
|
444
444
|
export interface DataCatalog {
|
|
445
445
|
Name: string | undefined;
|
|
446
446
|
Description?: string;
|
|
447
|
-
Type: DataCatalogType |
|
|
447
|
+
Type: DataCatalogType | undefined;
|
|
448
448
|
Parameters?: Record<string, string>;
|
|
449
449
|
}
|
|
450
450
|
export interface GetDataCatalogOutput {
|
|
@@ -496,7 +496,7 @@ export interface ColumnInfo {
|
|
|
496
496
|
Type: string | undefined;
|
|
497
497
|
Precision?: number;
|
|
498
498
|
Scale?: number;
|
|
499
|
-
Nullable?: ColumnNullable
|
|
499
|
+
Nullable?: ColumnNullable;
|
|
500
500
|
CaseSensitive?: boolean;
|
|
501
501
|
}
|
|
502
502
|
export interface ResultSetMetadata {
|
|
@@ -568,7 +568,7 @@ export interface SessionStatus {
|
|
|
568
568
|
LastModifiedDateTime?: Date;
|
|
569
569
|
EndDateTime?: Date;
|
|
570
570
|
IdleSinceDateTime?: Date;
|
|
571
|
-
State?: SessionState
|
|
571
|
+
State?: SessionState;
|
|
572
572
|
StateChangeReason?: string;
|
|
573
573
|
}
|
|
574
574
|
export interface GetSessionResponse {
|
|
@@ -622,7 +622,7 @@ export type WorkGroupState =
|
|
|
622
622
|
(typeof WorkGroupState)[keyof typeof WorkGroupState];
|
|
623
623
|
export interface WorkGroup {
|
|
624
624
|
Name: string | undefined;
|
|
625
|
-
State?: WorkGroupState
|
|
625
|
+
State?: WorkGroupState;
|
|
626
626
|
Configuration?: WorkGroupConfiguration;
|
|
627
627
|
Description?: string;
|
|
628
628
|
CreationTime?: Date;
|
|
@@ -634,7 +634,7 @@ export interface ImportNotebookInput {
|
|
|
634
634
|
WorkGroup: string | undefined;
|
|
635
635
|
Name: string | undefined;
|
|
636
636
|
Payload: string | undefined;
|
|
637
|
-
Type: NotebookType |
|
|
637
|
+
Type: NotebookType | undefined;
|
|
638
638
|
ClientRequestToken?: string;
|
|
639
639
|
}
|
|
640
640
|
export interface ImportNotebookOutput {
|
|
@@ -654,7 +654,7 @@ export interface ListApplicationDPUSizesOutput {
|
|
|
654
654
|
}
|
|
655
655
|
export interface ListCalculationExecutionsRequest {
|
|
656
656
|
SessionId: string | undefined;
|
|
657
|
-
StateFilter?: CalculationExecutionState
|
|
657
|
+
StateFilter?: CalculationExecutionState;
|
|
658
658
|
MaxResults?: number;
|
|
659
659
|
NextToken?: string;
|
|
660
660
|
}
|
|
@@ -690,7 +690,7 @@ export interface ListDataCatalogsInput {
|
|
|
690
690
|
}
|
|
691
691
|
export interface DataCatalogSummary {
|
|
692
692
|
CatalogName?: string;
|
|
693
|
-
Type?: DataCatalogType
|
|
693
|
+
Type?: DataCatalogType;
|
|
694
694
|
}
|
|
695
695
|
export interface ListDataCatalogsOutput {
|
|
696
696
|
DataCatalogsSummary?: DataCatalogSummary[];
|
|
@@ -715,7 +715,7 @@ export declare const ExecutorState: {
|
|
|
715
715
|
export type ExecutorState = (typeof ExecutorState)[keyof typeof ExecutorState];
|
|
716
716
|
export interface ListExecutorsRequest {
|
|
717
717
|
SessionId: string | undefined;
|
|
718
|
-
ExecutorStateFilter?: ExecutorState
|
|
718
|
+
ExecutorStateFilter?: ExecutorState;
|
|
719
719
|
MaxResults?: number;
|
|
720
720
|
NextToken?: string;
|
|
721
721
|
}
|
|
@@ -727,10 +727,10 @@ export declare const ExecutorType: {
|
|
|
727
727
|
export type ExecutorType = (typeof ExecutorType)[keyof typeof ExecutorType];
|
|
728
728
|
export interface ExecutorsSummary {
|
|
729
729
|
ExecutorId: string | undefined;
|
|
730
|
-
ExecutorType?: ExecutorType
|
|
730
|
+
ExecutorType?: ExecutorType;
|
|
731
731
|
StartDateTime?: number;
|
|
732
732
|
TerminationDateTime?: number;
|
|
733
|
-
ExecutorState?: ExecutorState
|
|
733
|
+
ExecutorState?: ExecutorState;
|
|
734
734
|
ExecutorSize?: number;
|
|
735
735
|
}
|
|
736
736
|
export interface ListExecutorsResponse {
|
|
@@ -797,7 +797,7 @@ export interface ListQueryExecutionsOutput {
|
|
|
797
797
|
}
|
|
798
798
|
export interface ListSessionsRequest {
|
|
799
799
|
WorkGroup: string | undefined;
|
|
800
|
-
StateFilter?: SessionState
|
|
800
|
+
StateFilter?: SessionState;
|
|
801
801
|
MaxResults?: number;
|
|
802
802
|
NextToken?: string;
|
|
803
803
|
}
|
|
@@ -838,7 +838,7 @@ export interface ListWorkGroupsInput {
|
|
|
838
838
|
}
|
|
839
839
|
export interface WorkGroupSummary {
|
|
840
840
|
Name?: string;
|
|
841
|
-
State?: WorkGroupState
|
|
841
|
+
State?: WorkGroupState;
|
|
842
842
|
Description?: string;
|
|
843
843
|
CreationTime?: Date;
|
|
844
844
|
EngineVersion?: EngineVersion;
|
|
@@ -864,7 +864,7 @@ export interface StartCalculationExecutionRequest {
|
|
|
864
864
|
}
|
|
865
865
|
export interface StartCalculationExecutionResponse {
|
|
866
866
|
CalculationExecutionId?: string;
|
|
867
|
-
State?: CalculationExecutionState
|
|
867
|
+
State?: CalculationExecutionState;
|
|
868
868
|
}
|
|
869
869
|
export interface StartQueryExecutionInput {
|
|
870
870
|
QueryString: string | undefined;
|
|
@@ -896,13 +896,13 @@ export interface StartSessionRequest {
|
|
|
896
896
|
}
|
|
897
897
|
export interface StartSessionResponse {
|
|
898
898
|
SessionId?: string;
|
|
899
|
-
State?: SessionState
|
|
899
|
+
State?: SessionState;
|
|
900
900
|
}
|
|
901
901
|
export interface StopCalculationExecutionRequest {
|
|
902
902
|
CalculationExecutionId: string | undefined;
|
|
903
903
|
}
|
|
904
904
|
export interface StopCalculationExecutionResponse {
|
|
905
|
-
State?: CalculationExecutionState
|
|
905
|
+
State?: CalculationExecutionState;
|
|
906
906
|
}
|
|
907
907
|
export interface StopQueryExecutionInput {
|
|
908
908
|
QueryExecutionId?: string;
|
|
@@ -917,7 +917,7 @@ export interface TerminateSessionRequest {
|
|
|
917
917
|
SessionId: string | undefined;
|
|
918
918
|
}
|
|
919
919
|
export interface TerminateSessionResponse {
|
|
920
|
-
State?: SessionState
|
|
920
|
+
State?: SessionState;
|
|
921
921
|
}
|
|
922
922
|
export interface UntagResourceInput {
|
|
923
923
|
ResourceARN: string | undefined;
|
|
@@ -931,7 +931,7 @@ export interface UpdateCapacityReservationInput {
|
|
|
931
931
|
export interface UpdateCapacityReservationOutput {}
|
|
932
932
|
export interface UpdateDataCatalogInput {
|
|
933
933
|
Name: string | undefined;
|
|
934
|
-
Type: DataCatalogType |
|
|
934
|
+
Type: DataCatalogType | undefined;
|
|
935
935
|
Description?: string;
|
|
936
936
|
Parameters?: Record<string, string>;
|
|
937
937
|
}
|
|
@@ -946,7 +946,7 @@ export interface UpdateNamedQueryOutput {}
|
|
|
946
946
|
export interface UpdateNotebookInput {
|
|
947
947
|
NotebookId: string | undefined;
|
|
948
948
|
Payload: string | undefined;
|
|
949
|
-
Type: NotebookType |
|
|
949
|
+
Type: NotebookType | undefined;
|
|
950
950
|
SessionId?: string;
|
|
951
951
|
ClientRequestToken?: string;
|
|
952
952
|
}
|
|
@@ -992,7 +992,7 @@ export interface UpdateWorkGroupInput {
|
|
|
992
992
|
WorkGroup: string | undefined;
|
|
993
993
|
Description?: string;
|
|
994
994
|
ConfigurationUpdates?: WorkGroupConfigurationUpdates;
|
|
995
|
-
State?: WorkGroupState
|
|
995
|
+
State?: WorkGroupState;
|
|
996
996
|
}
|
|
997
997
|
export interface UpdateWorkGroupOutput {}
|
|
998
998
|
export interface QueryStagePlanNode {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-athena",
|
|
3
3
|
"description": "AWS SDK for JavaScript Athena Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|