@aws-sdk/client-athena 3.806.0 → 3.807.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,8 @@ declare const CreateDataCatalogCommand_base: {
29
29
  /**
30
30
  * <p>Creates (registers) a data catalog with the specified name and properties. Catalogs
31
31
  * created are visible to all users of the same Amazon Web Services account.</p>
32
- * <p>This API operation creates the following resources.</p>
32
+ * <p>For a <code>FEDERATED</code> catalog, this API operation creates the following
33
+ * resources.</p>
33
34
  * <ul>
34
35
  * <li>
35
36
  * <p>CFN Stack Name with a maximum length of 128 characters and prefix
@@ -672,8 +672,8 @@ export interface QueryExecution {
672
672
  * <p>The type of query statement that was run. <code>DDL</code> indicates DDL query
673
673
  * statements. <code>DML</code> indicates DML (Data Manipulation Language) query
674
674
  * statements, such as <code>CREATE TABLE AS SELECT</code>. <code>UTILITY</code> indicates
675
- * query statements other than DDL and DML, such as <code>SHOW CREATE TABLE</code>, or
676
- * <code>DESCRIBE TABLE</code>.</p>
675
+ * query statements other than DDL and DML, such as <code>SHOW CREATE TABLE</code>,
676
+ * <code>EXPLAIN</code>, <code>DESCRIBE</code>, or <code>SHOW TABLES</code>.</p>
677
677
  * @public
678
678
  */
679
679
  StatementType?: StatementType | undefined;
@@ -893,6 +893,7 @@ export interface CreateDataCatalogInput {
893
893
  * external Apache Hive metastore. <code>FEDERATED</code> is a federated catalog for which
894
894
  * Athena creates the connection and the Lambda function for
895
895
  * you based on the parameters that you pass.</p>
896
+ * <p>For <code>FEDERATED</code> type, we do not support IAM identity center.</p>
896
897
  * @public
897
898
  */
898
899
  Type: DataCatalogType | undefined;
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.806.0",
4
+ "version": "3.807.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-athena",