@aws-sdk/client-athena 3.288.0 → 3.290.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/dist-types/commands/BatchGetNamedQueryCommand.d.ts +9 -0
  2. package/dist-types/commands/BatchGetPreparedStatementCommand.d.ts +9 -0
  3. package/dist-types/commands/BatchGetQueryExecutionCommand.d.ts +9 -0
  4. package/dist-types/commands/CreateDataCatalogCommand.d.ts +9 -0
  5. package/dist-types/commands/CreateNamedQueryCommand.d.ts +9 -0
  6. package/dist-types/commands/CreateNotebookCommand.d.ts +12 -0
  7. package/dist-types/commands/CreatePreparedStatementCommand.d.ts +9 -0
  8. package/dist-types/commands/CreatePresignedNotebookUrlCommand.d.ts +12 -0
  9. package/dist-types/commands/CreateWorkGroupCommand.d.ts +9 -0
  10. package/dist-types/commands/DeleteDataCatalogCommand.d.ts +9 -0
  11. package/dist-types/commands/DeleteNamedQueryCommand.d.ts +9 -0
  12. package/dist-types/commands/DeleteNotebookCommand.d.ts +12 -0
  13. package/dist-types/commands/DeletePreparedStatementCommand.d.ts +12 -0
  14. package/dist-types/commands/DeleteWorkGroupCommand.d.ts +9 -0
  15. package/dist-types/commands/ExportNotebookCommand.d.ts +12 -0
  16. package/dist-types/commands/GetCalculationExecutionCodeCommand.d.ts +12 -0
  17. package/dist-types/commands/GetCalculationExecutionCommand.d.ts +12 -0
  18. package/dist-types/commands/GetCalculationExecutionStatusCommand.d.ts +12 -0
  19. package/dist-types/commands/GetDataCatalogCommand.d.ts +9 -0
  20. package/dist-types/commands/GetDatabaseCommand.d.ts +17 -0
  21. package/dist-types/commands/GetNamedQueryCommand.d.ts +9 -0
  22. package/dist-types/commands/GetNotebookMetadataCommand.d.ts +12 -0
  23. package/dist-types/commands/GetPreparedStatementCommand.d.ts +12 -0
  24. package/dist-types/commands/GetQueryExecutionCommand.d.ts +9 -0
  25. package/dist-types/commands/GetQueryResultsCommand.d.ts +12 -0
  26. package/dist-types/commands/GetQueryRuntimeStatisticsCommand.d.ts +9 -0
  27. package/dist-types/commands/GetSessionCommand.d.ts +12 -0
  28. package/dist-types/commands/GetSessionStatusCommand.d.ts +12 -0
  29. package/dist-types/commands/GetTableMetadataCommand.d.ts +17 -0
  30. package/dist-types/commands/GetWorkGroupCommand.d.ts +9 -0
  31. package/dist-types/commands/ImportNotebookCommand.d.ts +12 -0
  32. package/dist-types/commands/ListApplicationDPUSizesCommand.d.ts +12 -0
  33. package/dist-types/commands/ListCalculationExecutionsCommand.d.ts +12 -0
  34. package/dist-types/commands/ListDataCatalogsCommand.d.ts +9 -0
  35. package/dist-types/commands/ListDatabasesCommand.d.ts +17 -0
  36. package/dist-types/commands/ListEngineVersionsCommand.d.ts +9 -0
  37. package/dist-types/commands/ListExecutorsCommand.d.ts +12 -0
  38. package/dist-types/commands/ListNamedQueriesCommand.d.ts +9 -0
  39. package/dist-types/commands/ListNotebookMetadataCommand.d.ts +12 -0
  40. package/dist-types/commands/ListNotebookSessionsCommand.d.ts +12 -0
  41. package/dist-types/commands/ListPreparedStatementsCommand.d.ts +9 -0
  42. package/dist-types/commands/ListQueryExecutionsCommand.d.ts +9 -0
  43. package/dist-types/commands/ListSessionsCommand.d.ts +12 -0
  44. package/dist-types/commands/ListTableMetadataCommand.d.ts +17 -0
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  46. package/dist-types/commands/ListWorkGroupsCommand.d.ts +9 -0
  47. package/dist-types/commands/StartCalculationExecutionCommand.d.ts +12 -0
  48. package/dist-types/commands/StartQueryExecutionCommand.d.ts +12 -0
  49. package/dist-types/commands/StartSessionCommand.d.ts +18 -0
  50. package/dist-types/commands/StopCalculationExecutionCommand.d.ts +12 -0
  51. package/dist-types/commands/StopQueryExecutionCommand.d.ts +9 -0
  52. package/dist-types/commands/TagResourceCommand.d.ts +12 -0
  53. package/dist-types/commands/TerminateSessionCommand.d.ts +12 -0
  54. package/dist-types/commands/UntagResourceCommand.d.ts +12 -0
  55. package/dist-types/commands/UpdateDataCatalogCommand.d.ts +9 -0
  56. package/dist-types/commands/UpdateNamedQueryCommand.d.ts +9 -0
  57. package/dist-types/commands/UpdateNotebookCommand.d.ts +12 -0
  58. package/dist-types/commands/UpdateNotebookMetadataCommand.d.ts +12 -0
  59. package/dist-types/commands/UpdatePreparedStatementCommand.d.ts +12 -0
  60. package/dist-types/commands/UpdateWorkGroupCommand.d.ts +9 -0
  61. package/package.json +29 -29
@@ -37,6 +37,15 @@ export interface BatchGetNamedQueryCommandOutput extends BatchGetNamedQueryOutpu
37
37
  * @see {@link BatchGetNamedQueryCommandOutput} for command's `response` shape.
38
38
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
39
39
  *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>Indicates a platform issue, which may be due to a transient condition or
42
+ * outage.</p>
43
+ *
44
+ * @throws {@link InvalidRequestException} (client fault)
45
+ * <p>Indicates that something is wrong with the input to the request. For example, a
46
+ * required parameter may be missing or out of range.</p>
47
+ *
48
+ *
40
49
  */
41
50
  export declare class BatchGetNamedQueryCommand extends $Command<BatchGetNamedQueryCommandInput, BatchGetNamedQueryCommandOutput, AthenaClientResolvedConfig> {
42
51
  readonly input: BatchGetNamedQueryCommandInput;
@@ -33,6 +33,15 @@ export interface BatchGetPreparedStatementCommandOutput extends BatchGetPrepared
33
33
  * @see {@link BatchGetPreparedStatementCommandOutput} for command's `response` shape.
34
34
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
35
35
  *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>Indicates a platform issue, which may be due to a transient condition or
38
+ * outage.</p>
39
+ *
40
+ * @throws {@link InvalidRequestException} (client fault)
41
+ * <p>Indicates that something is wrong with the input to the request. For example, a
42
+ * required parameter may be missing or out of range.</p>
43
+ *
44
+ *
36
45
  */
37
46
  export declare class BatchGetPreparedStatementCommand extends $Command<BatchGetPreparedStatementCommandInput, BatchGetPreparedStatementCommandOutput, AthenaClientResolvedConfig> {
38
47
  readonly input: BatchGetPreparedStatementCommandInput;
@@ -34,6 +34,15 @@ export interface BatchGetQueryExecutionCommandOutput extends BatchGetQueryExecut
34
34
  * @see {@link BatchGetQueryExecutionCommandOutput} for command's `response` shape.
35
35
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
36
36
  *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p>Indicates a platform issue, which may be due to a transient condition or
39
+ * outage.</p>
40
+ *
41
+ * @throws {@link InvalidRequestException} (client fault)
42
+ * <p>Indicates that something is wrong with the input to the request. For example, a
43
+ * required parameter may be missing or out of range.</p>
44
+ *
45
+ *
37
46
  */
38
47
  export declare class BatchGetQueryExecutionCommand extends $Command<BatchGetQueryExecutionCommandInput, BatchGetQueryExecutionCommandOutput, AthenaClientResolvedConfig> {
39
48
  readonly input: BatchGetQueryExecutionCommandInput;
@@ -30,6 +30,15 @@ export interface CreateDataCatalogCommandOutput extends CreateDataCatalogOutput,
30
30
  * @see {@link CreateDataCatalogCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ *
33
42
  */
34
43
  export declare class CreateDataCatalogCommand extends $Command<CreateDataCatalogCommandInput, CreateDataCatalogCommandOutput, AthenaClientResolvedConfig> {
35
44
  readonly input: CreateDataCatalogCommandInput;
@@ -33,6 +33,15 @@ export interface CreateNamedQueryCommandOutput extends CreateNamedQueryOutput, _
33
33
  * @see {@link CreateNamedQueryCommandOutput} for command's `response` shape.
34
34
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
35
35
  *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>Indicates a platform issue, which may be due to a transient condition or
38
+ * outage.</p>
39
+ *
40
+ * @throws {@link InvalidRequestException} (client fault)
41
+ * <p>Indicates that something is wrong with the input to the request. For example, a
42
+ * required parameter may be missing or out of range.</p>
43
+ *
44
+ *
36
45
  */
37
46
  export declare class CreateNamedQueryCommand extends $Command<CreateNamedQueryCommandInput, CreateNamedQueryCommandOutput, AthenaClientResolvedConfig> {
38
47
  readonly input: CreateNamedQueryCommandInput;
@@ -31,6 +31,18 @@ export interface CreateNotebookCommandOutput extends CreateNotebookOutput, __Met
31
31
  * @see {@link CreateNotebookCommandOutput} for command's `response` shape.
32
32
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServerException} (server fault)
35
+ * <p>Indicates a platform issue, which may be due to a transient condition or
36
+ * outage.</p>
37
+ *
38
+ * @throws {@link InvalidRequestException} (client fault)
39
+ * <p>Indicates that something is wrong with the input to the request. For example, a
40
+ * required parameter may be missing or out of range.</p>
41
+ *
42
+ * @throws {@link TooManyRequestsException} (client fault)
43
+ * <p>Indicates that the request was throttled.</p>
44
+ *
45
+ *
34
46
  */
35
47
  export declare class CreateNotebookCommand extends $Command<CreateNotebookCommandInput, CreateNotebookCommandOutput, AthenaClientResolvedConfig> {
36
48
  readonly input: CreateNotebookCommandInput;
@@ -29,6 +29,15 @@ export interface CreatePreparedStatementCommandOutput extends CreatePreparedStat
29
29
  * @see {@link CreatePreparedStatementCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ *
32
41
  */
33
42
  export declare class CreatePreparedStatementCommand extends $Command<CreatePreparedStatementCommandInput, CreatePreparedStatementCommandOutput, AthenaClientResolvedConfig> {
34
43
  readonly input: CreatePreparedStatementCommandInput;
@@ -31,6 +31,18 @@ export interface CreatePresignedNotebookUrlCommandOutput extends CreatePresigned
31
31
  * @see {@link CreatePresignedNotebookUrlCommandOutput} for command's `response` shape.
32
32
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServerException} (server fault)
35
+ * <p>Indicates a platform issue, which may be due to a transient condition or
36
+ * outage.</p>
37
+ *
38
+ * @throws {@link InvalidRequestException} (client fault)
39
+ * <p>Indicates that something is wrong with the input to the request. For example, a
40
+ * required parameter may be missing or out of range.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A resource, such as a workgroup, was not found.</p>
44
+ *
45
+ *
34
46
  */
35
47
  export declare class CreatePresignedNotebookUrlCommand extends $Command<CreatePresignedNotebookUrlCommandInput, CreatePresignedNotebookUrlCommandOutput, AthenaClientResolvedConfig> {
36
48
  readonly input: CreatePresignedNotebookUrlCommandInput;
@@ -32,6 +32,15 @@ export interface CreateWorkGroupCommandOutput extends CreateWorkGroupOutput, __M
32
32
  * @see {@link CreateWorkGroupCommandOutput} for command's `response` shape.
33
33
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
34
34
  *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Indicates a platform issue, which may be due to a transient condition or
37
+ * outage.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>Indicates that something is wrong with the input to the request. For example, a
41
+ * required parameter may be missing or out of range.</p>
42
+ *
43
+ *
35
44
  */
36
45
  export declare class CreateWorkGroupCommand extends $Command<CreateWorkGroupCommandInput, CreateWorkGroupCommandOutput, AthenaClientResolvedConfig> {
37
46
  readonly input: CreateWorkGroupCommandInput;
@@ -29,6 +29,15 @@ export interface DeleteDataCatalogCommandOutput extends DeleteDataCatalogOutput,
29
29
  * @see {@link DeleteDataCatalogCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ *
32
41
  */
33
42
  export declare class DeleteDataCatalogCommand extends $Command<DeleteDataCatalogCommandInput, DeleteDataCatalogCommandOutput, AthenaClientResolvedConfig> {
34
43
  readonly input: DeleteDataCatalogCommandInput;
@@ -33,6 +33,15 @@ export interface DeleteNamedQueryCommandOutput extends DeleteNamedQueryOutput, _
33
33
  * @see {@link DeleteNamedQueryCommandOutput} for command's `response` shape.
34
34
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
35
35
  *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>Indicates a platform issue, which may be due to a transient condition or
38
+ * outage.</p>
39
+ *
40
+ * @throws {@link InvalidRequestException} (client fault)
41
+ * <p>Indicates that something is wrong with the input to the request. For example, a
42
+ * required parameter may be missing or out of range.</p>
43
+ *
44
+ *
36
45
  */
37
46
  export declare class DeleteNamedQueryCommand extends $Command<DeleteNamedQueryCommandInput, DeleteNamedQueryCommandOutput, AthenaClientResolvedConfig> {
38
47
  readonly input: DeleteNamedQueryCommandInput;
@@ -29,6 +29,18 @@ export interface DeleteNotebookCommandOutput extends DeleteNotebookOutput, __Met
29
29
  * @see {@link DeleteNotebookCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link TooManyRequestsException} (client fault)
41
+ * <p>Indicates that the request was throttled.</p>
42
+ *
43
+ *
32
44
  */
33
45
  export declare class DeleteNotebookCommand extends $Command<DeleteNotebookCommandInput, DeleteNotebookCommandOutput, AthenaClientResolvedConfig> {
34
46
  readonly input: DeleteNotebookCommandInput;
@@ -30,6 +30,18 @@ export interface DeletePreparedStatementCommandOutput extends DeletePreparedStat
30
30
  * @see {@link DeletePreparedStatementCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A resource, such as a workgroup, was not found.</p>
43
+ *
44
+ *
33
45
  */
34
46
  export declare class DeletePreparedStatementCommand extends $Command<DeletePreparedStatementCommandInput, DeletePreparedStatementCommandOutput, AthenaClientResolvedConfig> {
35
47
  readonly input: DeletePreparedStatementCommandInput;
@@ -30,6 +30,15 @@ export interface DeleteWorkGroupCommandOutput extends DeleteWorkGroupOutput, __M
30
30
  * @see {@link DeleteWorkGroupCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ *
33
42
  */
34
43
  export declare class DeleteWorkGroupCommand extends $Command<DeleteWorkGroupCommandInput, DeleteWorkGroupCommandOutput, AthenaClientResolvedConfig> {
35
44
  readonly input: DeleteWorkGroupCommandInput;
@@ -29,6 +29,18 @@ export interface ExportNotebookCommandOutput extends ExportNotebookOutput, __Met
29
29
  * @see {@link ExportNotebookCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link TooManyRequestsException} (client fault)
41
+ * <p>Indicates that the request was throttled.</p>
42
+ *
43
+ *
32
44
  */
33
45
  export declare class ExportNotebookCommand extends $Command<ExportNotebookCommandInput, ExportNotebookCommandOutput, AthenaClientResolvedConfig> {
34
46
  readonly input: ExportNotebookCommandInput;
@@ -30,6 +30,18 @@ export interface GetCalculationExecutionCodeCommandOutput extends GetCalculation
30
30
  * @see {@link GetCalculationExecutionCodeCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A resource, such as a workgroup, was not found.</p>
43
+ *
44
+ *
33
45
  */
34
46
  export declare class GetCalculationExecutionCodeCommand extends $Command<GetCalculationExecutionCodeCommandInput, GetCalculationExecutionCodeCommandOutput, AthenaClientResolvedConfig> {
35
47
  readonly input: GetCalculationExecutionCodeCommandInput;
@@ -29,6 +29,18 @@ export interface GetCalculationExecutionCommandOutput extends GetCalculationExec
29
29
  * @see {@link GetCalculationExecutionCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>A resource, such as a workgroup, was not found.</p>
42
+ *
43
+ *
32
44
  */
33
45
  export declare class GetCalculationExecutionCommand extends $Command<GetCalculationExecutionCommandInput, GetCalculationExecutionCommandOutput, AthenaClientResolvedConfig> {
34
46
  readonly input: GetCalculationExecutionCommandInput;
@@ -29,6 +29,18 @@ export interface GetCalculationExecutionStatusCommandOutput extends GetCalculati
29
29
  * @see {@link GetCalculationExecutionStatusCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>A resource, such as a workgroup, was not found.</p>
42
+ *
43
+ *
32
44
  */
33
45
  export declare class GetCalculationExecutionStatusCommand extends $Command<GetCalculationExecutionStatusCommandInput, GetCalculationExecutionStatusCommandOutput, AthenaClientResolvedConfig> {
34
46
  readonly input: GetCalculationExecutionStatusCommandInput;
@@ -29,6 +29,15 @@ export interface GetDataCatalogCommandOutput extends GetDataCatalogOutput, __Met
29
29
  * @see {@link GetDataCatalogCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ *
32
41
  */
33
42
  export declare class GetDataCatalogCommand extends $Command<GetDataCatalogCommandInput, GetDataCatalogCommandOutput, AthenaClientResolvedConfig> {
34
43
  readonly input: GetDataCatalogCommandInput;
@@ -29,6 +29,23 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
29
29
  * @see {@link GetDatabaseCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link MetadataException} (client fault)
41
+ * <p>An exception that Athena received when it called a custom metastore.
42
+ * Occurs if the error is not caused by user input (<code>InvalidRequestException</code>)
43
+ * or from the Athena platform (<code>InternalServerException</code>). For
44
+ * example, if a user-created Lambda function is missing permissions, the
45
+ * Lambda
46
+ * <code>4XX</code> exception is returned in a <code>MetadataException</code>.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class GetDatabaseCommand extends $Command<GetDatabaseCommandInput, GetDatabaseCommandOutput, AthenaClientResolvedConfig> {
34
51
  readonly input: GetDatabaseCommandInput;
@@ -30,6 +30,15 @@ export interface GetNamedQueryCommandOutput extends GetNamedQueryOutput, __Metad
30
30
  * @see {@link GetNamedQueryCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ *
33
42
  */
34
43
  export declare class GetNamedQueryCommand extends $Command<GetNamedQueryCommandInput, GetNamedQueryCommandOutput, AthenaClientResolvedConfig> {
35
44
  readonly input: GetNamedQueryCommandInput;
@@ -29,6 +29,18 @@ export interface GetNotebookMetadataCommandOutput extends GetNotebookMetadataOut
29
29
  * @see {@link GetNotebookMetadataCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link TooManyRequestsException} (client fault)
41
+ * <p>Indicates that the request was throttled.</p>
42
+ *
43
+ *
32
44
  */
33
45
  export declare class GetNotebookMetadataCommand extends $Command<GetNotebookMetadataCommandInput, GetNotebookMetadataCommandOutput, AthenaClientResolvedConfig> {
34
46
  readonly input: GetNotebookMetadataCommandInput;
@@ -30,6 +30,18 @@ export interface GetPreparedStatementCommandOutput extends GetPreparedStatementO
30
30
  * @see {@link GetPreparedStatementCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A resource, such as a workgroup, was not found.</p>
43
+ *
44
+ *
33
45
  */
34
46
  export declare class GetPreparedStatementCommand extends $Command<GetPreparedStatementCommandInput, GetPreparedStatementCommandOutput, AthenaClientResolvedConfig> {
35
47
  readonly input: GetPreparedStatementCommandInput;
@@ -31,6 +31,15 @@ export interface GetQueryExecutionCommandOutput extends GetQueryExecutionOutput,
31
31
  * @see {@link GetQueryExecutionCommandOutput} for command's `response` shape.
32
32
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServerException} (server fault)
35
+ * <p>Indicates a platform issue, which may be due to a transient condition or
36
+ * outage.</p>
37
+ *
38
+ * @throws {@link InvalidRequestException} (client fault)
39
+ * <p>Indicates that something is wrong with the input to the request. For example, a
40
+ * required parameter may be missing or out of range.</p>
41
+ *
42
+ *
34
43
  */
35
44
  export declare class GetQueryExecutionCommand extends $Command<GetQueryExecutionCommandInput, GetQueryExecutionCommandOutput, AthenaClientResolvedConfig> {
36
45
  readonly input: GetQueryExecutionCommandInput;
@@ -43,6 +43,18 @@ export interface GetQueryResultsCommandOutput extends GetQueryResultsOutput, __M
43
43
  * @see {@link GetQueryResultsCommandOutput} for command's `response` shape.
44
44
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
45
45
  *
46
+ * @throws {@link InternalServerException} (server fault)
47
+ * <p>Indicates a platform issue, which may be due to a transient condition or
48
+ * outage.</p>
49
+ *
50
+ * @throws {@link InvalidRequestException} (client fault)
51
+ * <p>Indicates that something is wrong with the input to the request. For example, a
52
+ * required parameter may be missing or out of range.</p>
53
+ *
54
+ * @throws {@link TooManyRequestsException} (client fault)
55
+ * <p>Indicates that the request was throttled.</p>
56
+ *
57
+ *
46
58
  */
47
59
  export declare class GetQueryResultsCommand extends $Command<GetQueryResultsCommandInput, GetQueryResultsCommandOutput, AthenaClientResolvedConfig> {
48
60
  readonly input: GetQueryResultsCommandInput;
@@ -34,6 +34,15 @@ export interface GetQueryRuntimeStatisticsCommandOutput extends GetQueryRuntimeS
34
34
  * @see {@link GetQueryRuntimeStatisticsCommandOutput} for command's `response` shape.
35
35
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
36
36
  *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p>Indicates a platform issue, which may be due to a transient condition or
39
+ * outage.</p>
40
+ *
41
+ * @throws {@link InvalidRequestException} (client fault)
42
+ * <p>Indicates that something is wrong with the input to the request. For example, a
43
+ * required parameter may be missing or out of range.</p>
44
+ *
45
+ *
37
46
  */
38
47
  export declare class GetQueryRuntimeStatisticsCommand extends $Command<GetQueryRuntimeStatisticsCommandInput, GetQueryRuntimeStatisticsCommandOutput, AthenaClientResolvedConfig> {
39
48
  readonly input: GetQueryRuntimeStatisticsCommandInput;
@@ -30,6 +30,18 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB
30
30
  * @see {@link GetSessionCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A resource, such as a workgroup, was not found.</p>
43
+ *
44
+ *
33
45
  */
34
46
  export declare class GetSessionCommand extends $Command<GetSessionCommandInput, GetSessionCommandOutput, AthenaClientResolvedConfig> {
35
47
  readonly input: GetSessionCommandInput;
@@ -29,6 +29,18 @@ export interface GetSessionStatusCommandOutput extends GetSessionStatusResponse,
29
29
  * @see {@link GetSessionStatusCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>A resource, such as a workgroup, was not found.</p>
42
+ *
43
+ *
32
44
  */
33
45
  export declare class GetSessionStatusCommand extends $Command<GetSessionStatusCommandInput, GetSessionStatusCommandOutput, AthenaClientResolvedConfig> {
34
46
  readonly input: GetSessionStatusCommandInput;
@@ -29,6 +29,23 @@ export interface GetTableMetadataCommandOutput extends GetTableMetadataOutput, _
29
29
  * @see {@link GetTableMetadataCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ * @throws {@link MetadataException} (client fault)
41
+ * <p>An exception that Athena received when it called a custom metastore.
42
+ * Occurs if the error is not caused by user input (<code>InvalidRequestException</code>)
43
+ * or from the Athena platform (<code>InternalServerException</code>). For
44
+ * example, if a user-created Lambda function is missing permissions, the
45
+ * Lambda
46
+ * <code>4XX</code> exception is returned in a <code>MetadataException</code>.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class GetTableMetadataCommand extends $Command<GetTableMetadataCommandInput, GetTableMetadataCommandOutput, AthenaClientResolvedConfig> {
34
51
  readonly input: GetTableMetadataCommandInput;
@@ -29,6 +29,15 @@ export interface GetWorkGroupCommandOutput extends GetWorkGroupOutput, __Metadat
29
29
  * @see {@link GetWorkGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>Indicates a platform issue, which may be due to a transient condition or
34
+ * outage.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>Indicates that something is wrong with the input to the request. For example, a
38
+ * required parameter may be missing or out of range.</p>
39
+ *
40
+ *
32
41
  */
33
42
  export declare class GetWorkGroupCommand extends $Command<GetWorkGroupCommandInput, GetWorkGroupCommandOutput, AthenaClientResolvedConfig> {
34
43
  readonly input: GetWorkGroupCommandInput;
@@ -31,6 +31,18 @@ export interface ImportNotebookCommandOutput extends ImportNotebookOutput, __Met
31
31
  * @see {@link ImportNotebookCommandOutput} for command's `response` shape.
32
32
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServerException} (server fault)
35
+ * <p>Indicates a platform issue, which may be due to a transient condition or
36
+ * outage.</p>
37
+ *
38
+ * @throws {@link InvalidRequestException} (client fault)
39
+ * <p>Indicates that something is wrong with the input to the request. For example, a
40
+ * required parameter may be missing or out of range.</p>
41
+ *
42
+ * @throws {@link TooManyRequestsException} (client fault)
43
+ * <p>Indicates that the request was throttled.</p>
44
+ *
45
+ *
34
46
  */
35
47
  export declare class ImportNotebookCommand extends $Command<ImportNotebookCommandInput, ImportNotebookCommandOutput, AthenaClientResolvedConfig> {
36
48
  readonly input: ImportNotebookCommandInput;
@@ -30,6 +30,18 @@ export interface ListApplicationDPUSizesCommandOutput extends ListApplicationDPU
30
30
  * @see {@link ListApplicationDPUSizesCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ * @throws {@link TooManyRequestsException} (client fault)
42
+ * <p>Indicates that the request was throttled.</p>
43
+ *
44
+ *
33
45
  */
34
46
  export declare class ListApplicationDPUSizesCommand extends $Command<ListApplicationDPUSizesCommandInput, ListApplicationDPUSizesCommandOutput, AthenaClientResolvedConfig> {
35
47
  readonly input: ListApplicationDPUSizesCommandInput;
@@ -30,6 +30,18 @@ export interface ListCalculationExecutionsCommandOutput extends ListCalculationE
30
30
  * @see {@link ListCalculationExecutionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link AthenaClientResolvedConfig | config} for AthenaClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>Indicates a platform issue, which may be due to a transient condition or
35
+ * outage.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>Indicates that something is wrong with the input to the request. For example, a
39
+ * required parameter may be missing or out of range.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A resource, such as a workgroup, was not found.</p>
43
+ *
44
+ *
33
45
  */
34
46
  export declare class ListCalculationExecutionsCommand extends $Command<ListCalculationExecutionsCommandInput, ListCalculationExecutionsCommandOutput, AthenaClientResolvedConfig> {
35
47
  readonly input: ListCalculationExecutionsCommandInput;