@aws-sdk/client-athena 3.231.0 → 3.235.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.
@@ -170,19 +170,19 @@ export interface UnprocessedPreparedStatementName {
170
170
  /**
171
171
  * <p>The error message containing the reason why the prepared statement could not be
172
172
  * returned. The following error messages are possible:</p>
173
- * <ul>
173
+ * <ul>
174
174
  * <li>
175
- * <p>
175
+ * <p>
176
176
  * <code>INVALID_INPUT</code> - The name of the prepared statement that was
177
177
  * provided is not valid (for example, the name is too long).</p>
178
178
  * </li>
179
179
  * <li>
180
- * <p>
180
+ * <p>
181
181
  * <code>STATEMENT_NOT_FOUND</code> - A prepared statement with the name provided
182
182
  * could not be found.</p>
183
183
  * </li>
184
184
  * <li>
185
- * <p>
185
+ * <p>
186
186
  * <code>UNAUTHORIZED</code> - The requester does not have permission to access
187
187
  * the workgroup that contains the prepared statement.</p>
188
188
  * </li>
@@ -259,7 +259,7 @@ export interface EncryptionConfiguration {
259
259
  * <p>Indicates whether Amazon S3 server-side encryption with Amazon S3-managed keys (<code>SSE_S3</code>), server-side encryption with KMS-managed keys
260
260
  * (<code>SSE_KMS</code>), or client-side encryption with KMS-managed keys
261
261
  * (<code>CSE_KMS</code>) is used.</p>
262
- * <p>If a query runs in a workgroup and the workgroup overrides client-side settings, then
262
+ * <p>If a query runs in a workgroup and the workgroup overrides client-side settings, then
263
263
  * the workgroup's setting for encryption is used. It specifies whether query results must
264
264
  * be encrypted, for all queries that run in this workgroup. </p>
265
265
  */
@@ -302,7 +302,7 @@ export interface ResultConfiguration {
302
302
  * <code>ExpectedBucketOwner</code>
303
303
  * Amazon Web Services account ID does not match the actual owner of the Amazon S3
304
304
  * bucket, the call fails with a permissions error.</p>
305
- * <p>This is a client-side setting. If workgroup settings override client-side settings,
305
+ * <p>This is a client-side setting. If workgroup settings override client-side settings,
306
306
  * then the query uses the <code>ExpectedBucketOwner</code> setting that is specified for
307
307
  * the workgroup, and also uses the location for storing query results specified in the
308
308
  * workgroup. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>
@@ -417,11 +417,11 @@ export interface AthenaError {
417
417
  /**
418
418
  * <p>An integer value that specifies the category of a query failure error. The following
419
419
  * list shows the category for each integer value.</p>
420
- * <p>
420
+ * <p>
421
421
  * <b>1</b> - System</p>
422
- * <p>
422
+ * <p>
423
423
  * <b>2</b> - User</p>
424
- * <p>
424
+ * <p>
425
425
  * <b>3</b> - Other</p>
426
426
  */
427
427
  ErrorCategory?: number;
@@ -460,11 +460,11 @@ export interface QueryExecutionStatus {
460
460
  * <code>FAILED</code> indicates that the query experienced an error and did not
461
461
  * complete processing. <code>CANCELLED</code> indicates that a user input interrupted
462
462
  * query execution.</p>
463
- * <note>
463
+ * <note>
464
464
  * <p>Athena automatically retries your queries in cases of certain
465
465
  * transient errors. As a result, you may see the query state transition from
466
466
  * <code>RUNNING</code> or <code>FAILED</code> to <code>QUEUED</code>. </p>
467
- * </note>
467
+ * </note>
468
468
  */
469
469
  State?: QueryExecutionState | string;
470
470
  /**
@@ -625,69 +625,69 @@ export interface CreateDataCatalogInput {
625
625
  /**
626
626
  * <p>Specifies the Lambda function or functions to use for creating the data
627
627
  * catalog. This is a mapping whose values depend on the catalog type. </p>
628
- * <ul>
628
+ * <ul>
629
629
  * <li>
630
- * <p>For the <code>HIVE</code> data catalog type, use the following syntax. The
630
+ * <p>For the <code>HIVE</code> data catalog type, use the following syntax. The
631
631
  * <code>metadata-function</code> parameter is required. <code>The
632
632
  * sdk-version</code> parameter is optional and defaults to the currently
633
633
  * supported version.</p>
634
- * <p>
634
+ * <p>
635
635
  * <code>metadata-function=<i>lambda_arn</i>,
636
636
  * sdk-version=<i>version_number</i>
637
637
  * </code>
638
638
  * </p>
639
639
  * </li>
640
640
  * <li>
641
- * <p>For the <code>LAMBDA</code> data catalog type, use one of the following sets
641
+ * <p>For the <code>LAMBDA</code> data catalog type, use one of the following sets
642
642
  * of required parameters, but not both.</p>
643
- * <ul>
643
+ * <ul>
644
644
  * <li>
645
- * <p>If you have one Lambda function that processes metadata
645
+ * <p>If you have one Lambda function that processes metadata
646
646
  * and another for reading the actual data, use the following syntax. Both
647
647
  * parameters are required.</p>
648
- * <p>
648
+ * <p>
649
649
  * <code>metadata-function=<i>lambda_arn</i>,
650
650
  * record-function=<i>lambda_arn</i>
651
651
  * </code>
652
652
  * </p>
653
- * </li>
653
+ * </li>
654
654
  * <li>
655
- * <p> If you have a composite Lambda function that processes
655
+ * <p> If you have a composite Lambda function that processes
656
656
  * both metadata and data, use the following syntax to specify your Lambda function.</p>
657
- * <p>
657
+ * <p>
658
658
  * <code>function=<i>lambda_arn</i>
659
659
  * </code>
660
660
  * </p>
661
- * </li>
661
+ * </li>
662
662
  * </ul>
663
663
  * </li>
664
664
  * <li>
665
- * <p>The <code>GLUE</code> type takes a catalog ID parameter and is required. The
665
+ * <p>The <code>GLUE</code> type takes a catalog ID parameter and is required. The
666
666
  * <code>
667
667
  * <i>catalog_id</i>
668
668
  * </code> is the account ID of the
669
669
  * Amazon Web Services account to which the Glue Data Catalog
670
670
  * belongs.</p>
671
- * <p>
671
+ * <p>
672
672
  * <code>catalog-id=<i>catalog_id</i>
673
673
  * </code>
674
674
  * </p>
675
- * <ul>
675
+ * <ul>
676
676
  * <li>
677
- * <p>The <code>GLUE</code> data catalog type also applies to the default
677
+ * <p>The <code>GLUE</code> data catalog type also applies to the default
678
678
  * <code>AwsDataCatalog</code> that already exists in your account, of
679
679
  * which you can have only one and cannot modify.</p>
680
- * </li>
680
+ * </li>
681
681
  * <li>
682
- * <p>Queries that specify a Glue Data Catalog other than the default
682
+ * <p>Queries that specify a Glue Data Catalog other than the default
683
683
  * <code>AwsDataCatalog</code> must be run on Athena engine
684
684
  * version 2.</p>
685
- * </li>
685
+ * </li>
686
686
  * <li>
687
- * <p>In Regions where Athena engine version 2 is not available,
687
+ * <p>In Regions where Athena engine version 2 is not available,
688
688
  * creating new Glue data catalogs results in an
689
689
  * <code>INVALID_INPUT</code> error.</p>
690
- * </li>
690
+ * </li>
691
691
  * </ul>
692
692
  * </li>
693
693
  * </ul>
@@ -722,12 +722,12 @@ export interface CreateNamedQueryInput {
722
722
  * idempotent (executes only once). If another <code>CreateNamedQuery</code> request is
723
723
  * received, the same response is returned and another query is not created. If a parameter
724
724
  * has changed, for example, the <code>QueryString</code>, an error is returned.</p>
725
- * <important>
725
+ * <important>
726
726
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
727
727
  * the Amazon Web Services SDK for Java) auto-generate the token for users. If you are
728
728
  * not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
729
729
  * this token or the action will fail.</p>
730
- * </important>
730
+ * </important>
731
731
  */
732
732
  ClientRequestToken?: string;
733
733
  /**
@@ -754,12 +754,12 @@ export interface CreateNotebookInput {
754
754
  /**
755
755
  * <p>A unique case-sensitive string used to ensure the request to create the notebook is
756
756
  * idempotent (executes only once).</p>
757
- * <important>
757
+ * <important>
758
758
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
759
759
  * the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not
760
760
  * using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
761
761
  * this token or the action will fail.</p>
762
- * </important>
762
+ * </important>
763
763
  */
764
764
  ClientRequestToken?: string;
765
765
  }
@@ -1107,23 +1107,23 @@ export interface CalculationStatus {
1107
1107
  CompletionDateTime?: Date;
1108
1108
  /**
1109
1109
  * <p>The state of the calculation execution. A description of each state follows.</p>
1110
- * <p>
1110
+ * <p>
1111
1111
  * <code>CREATING</code> - The calculation is in the process of being created.</p>
1112
- * <p>
1112
+ * <p>
1113
1113
  * <code>CREATED</code> - The calculation has been created and is ready to run.</p>
1114
- * <p>
1114
+ * <p>
1115
1115
  * <code>QUEUED</code> - The calculation has been queued for processing.</p>
1116
- * <p>
1116
+ * <p>
1117
1117
  * <code>RUNNING</code> - The calculation is running.</p>
1118
- * <p>
1118
+ * <p>
1119
1119
  * <code>CANCELING</code> - A request to cancel the calculation has been received and the
1120
1120
  * system is working to stop it.</p>
1121
- * <p>
1121
+ * <p>
1122
1122
  * <code>CANCELED</code> - The calculation is no longer running as the result of a cancel
1123
1123
  * request.</p>
1124
- * <p>
1124
+ * <p>
1125
1125
  * <code>COMPLETED</code> - The calculation has completed without error.</p>
1126
- * <p>
1126
+ * <p>
1127
1127
  * <code>FAILED</code> - The calculation failed and is no longer running.</p>
1128
1128
  */
1129
1129
  State?: CalculationExecutionState | string;
@@ -1272,64 +1272,64 @@ export interface DataCatalog {
1272
1272
  /**
1273
1273
  * <p>Specifies the Lambda function or functions to use for the data catalog.
1274
1274
  * This is a mapping whose values depend on the catalog type. </p>
1275
- * <ul>
1275
+ * <ul>
1276
1276
  * <li>
1277
- * <p>For the <code>HIVE</code> data catalog type, use the following syntax. The
1277
+ * <p>For the <code>HIVE</code> data catalog type, use the following syntax. The
1278
1278
  * <code>metadata-function</code> parameter is required. <code>The
1279
1279
  * sdk-version</code> parameter is optional and defaults to the currently
1280
1280
  * supported version.</p>
1281
- * <p>
1281
+ * <p>
1282
1282
  * <code>metadata-function=<i>lambda_arn</i>,
1283
1283
  * sdk-version=<i>version_number</i>
1284
1284
  * </code>
1285
1285
  * </p>
1286
1286
  * </li>
1287
1287
  * <li>
1288
- * <p>For the <code>LAMBDA</code> data catalog type, use one of the following sets
1288
+ * <p>For the <code>LAMBDA</code> data catalog type, use one of the following sets
1289
1289
  * of required parameters, but not both.</p>
1290
- * <ul>
1290
+ * <ul>
1291
1291
  * <li>
1292
- * <p>If you have one Lambda function that processes metadata
1292
+ * <p>If you have one Lambda function that processes metadata
1293
1293
  * and another for reading the actual data, use the following syntax. Both
1294
1294
  * parameters are required.</p>
1295
- * <p>
1295
+ * <p>
1296
1296
  * <code>metadata-function=<i>lambda_arn</i>,
1297
1297
  * record-function=<i>lambda_arn</i>
1298
1298
  * </code>
1299
1299
  * </p>
1300
- * </li>
1300
+ * </li>
1301
1301
  * <li>
1302
- * <p> If you have a composite Lambda function that processes
1302
+ * <p> If you have a composite Lambda function that processes
1303
1303
  * both metadata and data, use the following syntax to specify your Lambda function.</p>
1304
- * <p>
1304
+ * <p>
1305
1305
  * <code>function=<i>lambda_arn</i>
1306
1306
  * </code>
1307
1307
  * </p>
1308
- * </li>
1308
+ * </li>
1309
1309
  * </ul>
1310
1310
  * </li>
1311
1311
  * <li>
1312
- * <p>The <code>GLUE</code> type takes a catalog ID parameter and is required. The
1312
+ * <p>The <code>GLUE</code> type takes a catalog ID parameter and is required. The
1313
1313
  * <code>
1314
1314
  * <i>catalog_id</i>
1315
1315
  * </code> is the account ID of the
1316
1316
  * Amazon Web Services account to which the Glue catalog
1317
1317
  * belongs.</p>
1318
- * <p>
1318
+ * <p>
1319
1319
  * <code>catalog-id=<i>catalog_id</i>
1320
1320
  * </code>
1321
1321
  * </p>
1322
- * <ul>
1322
+ * <ul>
1323
1323
  * <li>
1324
- * <p>The <code>GLUE</code> data catalog type also applies to the default
1324
+ * <p>The <code>GLUE</code> data catalog type also applies to the default
1325
1325
  * <code>AwsDataCatalog</code> that already exists in your account, of
1326
1326
  * which you can have only one and cannot modify.</p>
1327
- * </li>
1327
+ * </li>
1328
1328
  * <li>
1329
- * <p>Queries that specify a Glue Data Catalog other than the default
1329
+ * <p>Queries that specify a Glue Data Catalog other than the default
1330
1330
  * <code>AwsDataCatalog</code> must be run on Athena engine
1331
1331
  * version 2.</p>
1332
- * </li>
1332
+ * </li>
1333
1333
  * </ul>
1334
1334
  * </li>
1335
1335
  * </ul>
@@ -1683,23 +1683,23 @@ export interface SessionStatus {
1683
1683
  IdleSinceDateTime?: Date;
1684
1684
  /**
1685
1685
  * <p>The state of the session. A description of each state follows.</p>
1686
- * <p>
1686
+ * <p>
1687
1687
  * <code>CREATING</code> - The session is being started, including acquiring
1688
1688
  * resources.</p>
1689
- * <p>
1689
+ * <p>
1690
1690
  * <code>CREATED</code> - The session has been started.</p>
1691
- * <p>
1691
+ * <p>
1692
1692
  * <code>IDLE</code> - The session is able to accept a calculation.</p>
1693
- * <p>
1693
+ * <p>
1694
1694
  * <code>BUSY</code> - The session is processing another task and is unable to accept a
1695
1695
  * calculation.</p>
1696
- * <p>
1696
+ * <p>
1697
1697
  * <code>TERMINATING</code> - The session is in the process of shutting down.</p>
1698
- * <p>
1698
+ * <p>
1699
1699
  * <code>TERMINATED</code> - The session and its resources are no longer running.</p>
1700
- * <p>
1700
+ * <p>
1701
1701
  * <code>DEGRADED</code> - The session has no healthy coordinators.</p>
1702
- * <p>
1702
+ * <p>
1703
1703
  * <code>FAILED</code> - Due to a failure, the session and its resources are no longer
1704
1704
  * running.</p>
1705
1705
  */
@@ -1912,12 +1912,12 @@ export interface ImportNotebookInput {
1912
1912
  /**
1913
1913
  * <p>A unique case-sensitive string used to ensure the request to import the notebook is
1914
1914
  * idempotent (executes only once).</p>
1915
- * <important>
1915
+ * <important>
1916
1916
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
1917
1917
  * the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not
1918
1918
  * using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
1919
1919
  * this token or the action will fail.</p>
1920
- * </important>
1920
+ * </important>
1921
1921
  */
1922
1922
  ClientRequestToken?: string;
1923
1923
  }
@@ -1972,23 +1972,23 @@ export interface ListCalculationExecutionsRequest {
1972
1972
  /**
1973
1973
  * <p>A filter for a specific calculation execution state. A description of each state
1974
1974
  * follows.</p>
1975
- * <p>
1975
+ * <p>
1976
1976
  * <code>CREATING</code> - The calculation is in the process of being created.</p>
1977
- * <p>
1977
+ * <p>
1978
1978
  * <code>CREATED</code> - The calculation has been created and is ready to run.</p>
1979
- * <p>
1979
+ * <p>
1980
1980
  * <code>QUEUED</code> - The calculation has been queued for processing.</p>
1981
- * <p>
1981
+ * <p>
1982
1982
  * <code>RUNNING</code> - The calculation is running.</p>
1983
- * <p>
1983
+ * <p>
1984
1984
  * <code>CANCELING</code> - A request to cancel the calculation has been received and the
1985
1985
  * system is working to stop it.</p>
1986
- * <p>
1986
+ * <p>
1987
1987
  * <code>CANCELED</code> - The calculation is no longer running as the result of a cancel
1988
1988
  * request.</p>
1989
- * <p>
1989
+ * <p>
1990
1990
  * <code>COMPLETED</code> - The calculation has completed without error.</p>
1991
- * <p>
1991
+ * <p>
1992
1992
  * <code>FAILED</code> - The calculation failed and is no longer running.</p>
1993
1993
  */
1994
1994
  StateFilter?: CalculationExecutionState | string;
@@ -2138,18 +2138,18 @@ export interface ListExecutorsRequest {
2138
2138
  SessionId: string | undefined;
2139
2139
  /**
2140
2140
  * <p>A filter for a specific executor state. A description of each state follows.</p>
2141
- * <p>
2141
+ * <p>
2142
2142
  * <code>CREATING</code> - The executor is being started, including acquiring
2143
2143
  * resources.</p>
2144
- * <p>
2144
+ * <p>
2145
2145
  * <code>CREATED</code> - The executor has been started.</p>
2146
- * <p>
2146
+ * <p>
2147
2147
  * <code>REGISTERED</code> - The executor has been registered.</p>
2148
- * <p>
2148
+ * <p>
2149
2149
  * <code>TERMINATING</code> - The executor is in the process of shutting down.</p>
2150
- * <p>
2150
+ * <p>
2151
2151
  * <code>TERMINATED</code> - The executor is no longer running.</p>
2152
- * <p>
2152
+ * <p>
2153
2153
  * <code>FAILED</code> - Due to a failure, the executor is no longer running.</p>
2154
2154
  */
2155
2155
  ExecutorStateFilter?: ExecutorState | string;
@@ -2192,18 +2192,18 @@ export interface ExecutorsSummary {
2192
2192
  TerminationDateTime?: number;
2193
2193
  /**
2194
2194
  * <p>The processing state of the executor. A description of each state follows.</p>
2195
- * <p>
2195
+ * <p>
2196
2196
  * <code>CREATING</code> - The executor is being started, including acquiring
2197
2197
  * resources.</p>
2198
- * <p>
2198
+ * <p>
2199
2199
  * <code>CREATED</code> - The executor has been started.</p>
2200
- * <p>
2200
+ * <p>
2201
2201
  * <code>REGISTERED</code> - The executor has been registered.</p>
2202
- * <p>
2202
+ * <p>
2203
2203
  * <code>TERMINATING</code> - The executor is in the process of shutting down.</p>
2204
- * <p>
2204
+ * <p>
2205
2205
  * <code>TERMINATED</code> - The executor is no longer running.</p>
2206
- * <p>
2206
+ * <p>
2207
2207
  * <code>FAILED</code> - Due to a failure, the executor is no longer running.</p>
2208
2208
  */
2209
2209
  ExecutorState?: ExecutorState | string;
@@ -2417,23 +2417,23 @@ export interface ListSessionsRequest {
2417
2417
  WorkGroup: string | undefined;
2418
2418
  /**
2419
2419
  * <p>A filter for a specific session state. A description of each state follows.</p>
2420
- * <p>
2420
+ * <p>
2421
2421
  * <code>CREATING</code> - The session is being started, including acquiring
2422
2422
  * resources.</p>
2423
- * <p>
2423
+ * <p>
2424
2424
  * <code>CREATED</code> - The session has been started.</p>
2425
- * <p>
2425
+ * <p>
2426
2426
  * <code>IDLE</code> - The session is able to accept a calculation.</p>
2427
- * <p>
2427
+ * <p>
2428
2428
  * <code>BUSY</code> - The session is processing another task and is unable to accept a
2429
2429
  * calculation.</p>
2430
- * <p>
2430
+ * <p>
2431
2431
  * <code>TERMINATING</code> - The session is in the process of shutting down.</p>
2432
- * <p>
2432
+ * <p>
2433
2433
  * <code>TERMINATED</code> - The session and its resources are no longer running.</p>
2434
- * <p>
2434
+ * <p>
2435
2435
  * <code>DEGRADED</code> - The session has no healthy coordinators.</p>
2436
- * <p>
2436
+ * <p>
2437
2437
  * <code>FAILED</code> - Due to a failure, the session and its resources are no longer
2438
2438
  * running.</p>
2439
2439
  */
@@ -2638,12 +2638,12 @@ export interface StartCalculationExecutionRequest {
2638
2638
  * <code>StartCalculationExecutionRequest</code> is received, the same response is
2639
2639
  * returned and another calculation is not created. If a parameter has changed, an error is
2640
2640
  * returned.</p>
2641
- * <important>
2641
+ * <important>
2642
2642
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
2643
2643
  * the Amazon Web Services SDK for Java) auto-generate the token for users. If you are
2644
2644
  * not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
2645
2645
  * this token or the action will fail.</p>
2646
- * </important>
2646
+ * </important>
2647
2647
  */
2648
2648
  ClientRequestToken?: string;
2649
2649
  }
@@ -2655,21 +2655,21 @@ export interface StartCalculationExecutionResponse {
2655
2655
  /**
2656
2656
  * <p>
2657
2657
  * <code>CREATING</code> - The calculation is in the process of being created.</p>
2658
- * <p>
2658
+ * <p>
2659
2659
  * <code>CREATED</code> - The calculation has been created and is ready to run.</p>
2660
- * <p>
2660
+ * <p>
2661
2661
  * <code>QUEUED</code> - The calculation has been queued for processing.</p>
2662
- * <p>
2662
+ * <p>
2663
2663
  * <code>RUNNING</code> - The calculation is running.</p>
2664
- * <p>
2664
+ * <p>
2665
2665
  * <code>CANCELING</code> - A request to cancel the calculation has been received and the
2666
2666
  * system is working to stop it.</p>
2667
- * <p>
2667
+ * <p>
2668
2668
  * <code>CANCELED</code> - The calculation is no longer running as the result of a cancel
2669
2669
  * request.</p>
2670
- * <p>
2670
+ * <p>
2671
2671
  * <code>COMPLETED</code> - The calculation has completed without error.</p>
2672
- * <p>
2672
+ * <p>
2673
2673
  * <code>FAILED</code> - The calculation failed and is no longer running.</p>
2674
2674
  */
2675
2675
  State?: CalculationExecutionState | string;
@@ -2684,12 +2684,12 @@ export interface StartQueryExecutionInput {
2684
2684
  * idempotent (executes only once). If another <code>StartQueryExecution</code> request is
2685
2685
  * received, the same response is returned and another query is not created. If a parameter
2686
2686
  * has changed, for example, the <code>QueryString</code>, an error is returned.</p>
2687
- * <important>
2687
+ * <important>
2688
2688
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
2689
2689
  * the Amazon Web Services SDK for Java) auto-generate the token for users. If you are
2690
2690
  * not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
2691
2691
  * this token or the action will fail.</p>
2692
- * </important>
2692
+ * </important>
2693
2693
  */
2694
2694
  ClientRequestToken?: string;
2695
2695
  /**
@@ -2764,12 +2764,12 @@ export interface StartSessionRequest {
2764
2764
  * idempotent (executes only once). If another <code>StartSessionRequest</code> is
2765
2765
  * received, the same response is returned and another session is not created. If a
2766
2766
  * parameter has changed, an error is returned.</p>
2767
- * <important>
2767
+ * <important>
2768
2768
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
2769
2769
  * the Amazon Web Services SDK for Java) auto-generate the token for users. If you are
2770
2770
  * not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
2771
2771
  * this token or the action will fail.</p>
2772
- * </important>
2772
+ * </important>
2773
2773
  */
2774
2774
  ClientRequestToken?: string;
2775
2775
  }
@@ -2780,23 +2780,23 @@ export interface StartSessionResponse {
2780
2780
  SessionId?: string;
2781
2781
  /**
2782
2782
  * <p>The state of the session. A description of each state follows.</p>
2783
- * <p>
2783
+ * <p>
2784
2784
  * <code>CREATING</code> - The session is being started, including acquiring
2785
2785
  * resources.</p>
2786
- * <p>
2786
+ * <p>
2787
2787
  * <code>CREATED</code> - The session has been started.</p>
2788
- * <p>
2788
+ * <p>
2789
2789
  * <code>IDLE</code> - The session is able to accept a calculation.</p>
2790
- * <p>
2790
+ * <p>
2791
2791
  * <code>BUSY</code> - The session is processing another task and is unable to accept a
2792
2792
  * calculation.</p>
2793
- * <p>
2793
+ * <p>
2794
2794
  * <code>TERMINATING</code> - The session is in the process of shutting down.</p>
2795
- * <p>
2795
+ * <p>
2796
2796
  * <code>TERMINATED</code> - The session and its resources are no longer running.</p>
2797
- * <p>
2797
+ * <p>
2798
2798
  * <code>DEGRADED</code> - The session has no healthy coordinators.</p>
2799
- * <p>
2799
+ * <p>
2800
2800
  * <code>FAILED</code> - Due to a failure, the session and its resources are no longer
2801
2801
  * running.</p>
2802
2802
  */
@@ -2812,21 +2812,21 @@ export interface StopCalculationExecutionResponse {
2812
2812
  /**
2813
2813
  * <p>
2814
2814
  * <code>CREATING</code> - The calculation is in the process of being created.</p>
2815
- * <p>
2815
+ * <p>
2816
2816
  * <code>CREATED</code> - The calculation has been created and is ready to run.</p>
2817
- * <p>
2817
+ * <p>
2818
2818
  * <code>QUEUED</code> - The calculation has been queued for processing.</p>
2819
- * <p>
2819
+ * <p>
2820
2820
  * <code>RUNNING</code> - The calculation is running.</p>
2821
- * <p>
2821
+ * <p>
2822
2822
  * <code>CANCELING</code> - A request to cancel the calculation has been received and the
2823
2823
  * system is working to stop it.</p>
2824
- * <p>
2824
+ * <p>
2825
2825
  * <code>CANCELED</code> - The calculation is no longer running as the result of a cancel
2826
2826
  * request.</p>
2827
- * <p>
2827
+ * <p>
2828
2828
  * <code>COMPLETED</code> - The calculation has completed without error.</p>
2829
- * <p>
2829
+ * <p>
2830
2830
  * <code>FAILED</code> - The calculation failed and is no longer running.</p>
2831
2831
  */
2832
2832
  State?: CalculationExecutionState | string;
@@ -2861,23 +2861,23 @@ export interface TerminateSessionRequest {
2861
2861
  export interface TerminateSessionResponse {
2862
2862
  /**
2863
2863
  * <p>The state of the session. A description of each state follows.</p>
2864
- * <p>
2864
+ * <p>
2865
2865
  * <code>CREATING</code> - The session is being started, including acquiring
2866
2866
  * resources.</p>
2867
- * <p>
2867
+ * <p>
2868
2868
  * <code>CREATED</code> - The session has been started.</p>
2869
- * <p>
2869
+ * <p>
2870
2870
  * <code>IDLE</code> - The session is able to accept a calculation.</p>
2871
- * <p>
2871
+ * <p>
2872
2872
  * <code>BUSY</code> - The session is processing another task and is unable to accept a
2873
2873
  * calculation.</p>
2874
- * <p>
2874
+ * <p>
2875
2875
  * <code>TERMINATING</code> - The session is in the process of shutting down.</p>
2876
- * <p>
2876
+ * <p>
2877
2877
  * <code>TERMINATED</code> - The session and its resources are no longer running.</p>
2878
- * <p>
2878
+ * <p>
2879
2879
  * <code>DEGRADED</code> - The session has no healthy coordinators.</p>
2880
- * <p>
2880
+ * <p>
2881
2881
  * <code>FAILED</code> - Due to a failure, the session and its resources are no longer
2882
2882
  * running.</p>
2883
2883
  */
@@ -2917,40 +2917,40 @@ export interface UpdateDataCatalogInput {
2917
2917
  /**
2918
2918
  * <p>Specifies the Lambda function or functions to use for updating the data
2919
2919
  * catalog. This is a mapping whose values depend on the catalog type. </p>
2920
- * <ul>
2920
+ * <ul>
2921
2921
  * <li>
2922
- * <p>For the <code>HIVE</code> data catalog type, use the following syntax. The
2922
+ * <p>For the <code>HIVE</code> data catalog type, use the following syntax. The
2923
2923
  * <code>metadata-function</code> parameter is required. <code>The
2924
2924
  * sdk-version</code> parameter is optional and defaults to the currently
2925
2925
  * supported version.</p>
2926
- * <p>
2926
+ * <p>
2927
2927
  * <code>metadata-function=<i>lambda_arn</i>,
2928
2928
  * sdk-version=<i>version_number</i>
2929
2929
  * </code>
2930
2930
  * </p>
2931
2931
  * </li>
2932
2932
  * <li>
2933
- * <p>For the <code>LAMBDA</code> data catalog type, use one of the following sets
2933
+ * <p>For the <code>LAMBDA</code> data catalog type, use one of the following sets
2934
2934
  * of required parameters, but not both.</p>
2935
- * <ul>
2935
+ * <ul>
2936
2936
  * <li>
2937
- * <p>If you have one Lambda function that processes metadata
2937
+ * <p>If you have one Lambda function that processes metadata
2938
2938
  * and another for reading the actual data, use the following syntax. Both
2939
2939
  * parameters are required.</p>
2940
- * <p>
2940
+ * <p>
2941
2941
  * <code>metadata-function=<i>lambda_arn</i>,
2942
2942
  * record-function=<i>lambda_arn</i>
2943
2943
  * </code>
2944
2944
  * </p>
2945
- * </li>
2945
+ * </li>
2946
2946
  * <li>
2947
- * <p> If you have a composite Lambda function that processes
2947
+ * <p> If you have a composite Lambda function that processes
2948
2948
  * both metadata and data, use the following syntax to specify your Lambda function.</p>
2949
- * <p>
2949
+ * <p>
2950
2950
  * <code>function=<i>lambda_arn</i>
2951
2951
  * </code>
2952
2952
  * </p>
2953
- * </li>
2953
+ * </li>
2954
2954
  * </ul>
2955
2955
  * </li>
2956
2956
  * </ul>
@@ -2987,12 +2987,12 @@ export interface UpdateNotebookInput {
2987
2987
  /**
2988
2988
  * <p>The updated content for the notebook.</p>
2989
2989
  */
2990
- Payload?: string;
2990
+ Payload: string | undefined;
2991
2991
  /**
2992
2992
  * <p>The notebook content type. Currently, the only valid type is
2993
2993
  * <code>IPYNB</code>.</p>
2994
2994
  */
2995
- Type?: NotebookType | string;
2995
+ Type: NotebookType | string | undefined;
2996
2996
  /**
2997
2997
  * <p>The ID of the session in which the notebook will be updated.</p>
2998
2998
  */
@@ -3000,12 +3000,12 @@ export interface UpdateNotebookInput {
3000
3000
  /**
3001
3001
  * <p>A unique case-sensitive string used to ensure the request to create the notebook is
3002
3002
  * idempotent (executes only once).</p>
3003
- * <important>
3003
+ * <important>
3004
3004
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
3005
3005
  * the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not
3006
3006
  * using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
3007
3007
  * this token or the action will fail.</p>
3008
- * </important>
3008
+ * </important>
3009
3009
  */
3010
3010
  ClientRequestToken?: string;
3011
3011
  }
@@ -3019,12 +3019,12 @@ export interface UpdateNotebookMetadataInput {
3019
3019
  /**
3020
3020
  * <p>A unique case-sensitive string used to ensure the request to create the notebook is
3021
3021
  * idempotent (executes only once).</p>
3022
- * <important>
3022
+ * <important>
3023
3023
  * <p>This token is listed as not required because Amazon Web Services SDKs (for example
3024
3024
  * the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not
3025
3025
  * using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide
3026
3026
  * this token or the action will fail.</p>
3027
- * </important>
3027
+ * </important>
3028
3028
  */
3029
3029
  ClientRequestToken?: string;
3030
3030
  /**
@@ -3102,7 +3102,7 @@ export interface ResultConfigurationUpdates {
3102
3102
  * <code>ExpectedBucketOwner</code>
3103
3103
  * Amazon Web Services account ID does not match the actual owner of the Amazon S3
3104
3104
  * bucket, the call fails with a permissions error.</p>
3105
- * <p>If workgroup settings override client-side settings, then the query uses the
3105
+ * <p>If workgroup settings override client-side settings, then the query uses the
3106
3106
  * <code>ExpectedBucketOwner</code> setting that is specified for the workgroup, and
3107
3107
  * 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>
3108
3108
  */