aws-sdk-athena 1.39.0 → 1.40.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ed597ac16a476a05e4b0ac21f5af39d9cf2dfcd9fcfa356bd7aab056ae94ea0
4
- data.tar.gz: 5e07b1b22b11d931846360cca9c9781e776c7077c76fd89a2200a0df4d3ba5e5
3
+ metadata.gz: c274a6c62811a7212f970289fed59e6ad4e45960d65f5e897cf421307502ac99
4
+ data.tar.gz: 2d315e539775863197343855661939ad73ab32ef3a5693b07af2b5020c63646b
5
5
  SHA512:
6
- metadata.gz: d375d0bfd768d09d596e2b5c3f64f7a31496070020a5e347863141bd7138be74ab24c5341ec6596dc2e8111fc42ba74c2cbc63063dbd52edc3fb367b1fd357b5
7
- data.tar.gz: c765262f5827782873385c5fc7a0493213dc1dc94c594bb9cde13f1f3ec1d0286f89927195fc5801d256cf6ac751dd0b8480dcb59c8e1b224e476b9937adb5e8
6
+ metadata.gz: f42c558eba6b553f7aef9fa854e8a51b3d9aa645eb6d85883fbc5e753ee534b1e8697abf3de59cab1403a18eed2d0f144498414885111ba2b0cacb1098c2c98e
7
+ data.tar.gz: 167d97dca9c454bd4e6d22d4b71e79968581da21409193d9a0317de8065fb36417c725a70f0a9febc37636f4ce4430807df94c357a12454ee48f82b6bab1505b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2021-08-06)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Athena.
8
+
4
9
  1.39.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.40.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-athena/customizations'
48
48
  # @!group service
49
49
  module Aws::Athena
50
50
 
51
- GEM_VERSION = '1.39.0'
51
+ GEM_VERSION = '1.40.0'
52
52
 
53
53
  end
@@ -447,23 +447,18 @@ module Aws::Athena
447
447
  end
448
448
 
449
449
  # Creates (registers) a data catalog with the specified name and
450
- # properties. Catalogs created are visible to all users of the same AWS
451
- # account.
450
+ # properties. Catalogs created are visible to all users of the same
451
+ # Amazon Web Services account.
452
452
  #
453
453
  # @option params [required, String] :name
454
454
  # The name of the data catalog to create. The catalog name must be
455
- # unique for the AWS account and can use a maximum of 128 alphanumeric,
456
- # underscore, at sign, or hyphen characters.
455
+ # unique for the Amazon Web Services account and can use a maximum of
456
+ # 128 alphanumeric, underscore, at sign, or hyphen characters.
457
457
  #
458
458
  # @option params [required, String] :type
459
- # The type of data catalog to create: `LAMBDA` for a federated catalog
460
- # or `HIVE` for an external hive metastore.
461
- #
462
- # <note markdown="1"> Do not use the `GLUE` type. This refers to the `AwsDataCatalog` that
463
- # already exists in your account, of which you can have only one.
464
- # Specifying the `GLUE` type will result in an `INVALID_INPUT` error.
465
- #
466
- # </note>
459
+ # The type of data catalog to create: `LAMBDA` for a federated catalog,
460
+ # `HIVE` for an external hive metastore, or `GLUE` for an Glue Data
461
+ # Catalog.
467
462
  #
468
463
  # @option params [String] :description
469
464
  # A description of the data catalog to be created.
@@ -495,6 +490,23 @@ module Aws::Athena
495
490
  #
496
491
  # `function=lambda_arn `
497
492
  #
493
+ # * The `GLUE` type takes a catalog ID parameter and is required. The `
494
+ # catalog_id ` is the account ID of the Amazon Web Services account to
495
+ # which the Glue Data Catalog belongs.
496
+ #
497
+ # `catalog-id=catalog_id `
498
+ #
499
+ # * The `GLUE` data catalog type also applies to the default
500
+ # `AwsDataCatalog` that already exists in your account, of which you
501
+ # can have only one and cannot modify.
502
+ #
503
+ # * Queries that specify a Glue Data Catalog other than the default
504
+ # `AwsDataCatalog` must be run on Athena engine version 2.
505
+ #
506
+ # * In Regions where Athena engine version 2 is not available,
507
+ # creating new Glue data catalogs results in an `INVALID_INPUT`
508
+ # error.
509
+ #
498
510
  # @option params [Array<Types::Tag>] :tags
499
511
  # A list of comma separated tags to add to the data catalog that is
500
512
  # created.
@@ -530,8 +542,8 @@ module Aws::Athena
530
542
  # Creates a named query in the specified workgroup. Requires that you
531
543
  # have access to the workgroup.
532
544
  #
533
- # For code samples using the AWS SDK for Java, see [Examples and Code
534
- # Samples][1] in the *Amazon Athena User Guide*.
545
+ # For code samples using the Amazon Web Services SDK for Java, see
546
+ # [Examples and Code Samples][1] in the *Amazon Athena User Guide*.
535
547
  #
536
548
  #
537
549
  #
@@ -556,10 +568,11 @@ module Aws::Athena
556
568
  # and another query is not created. If a parameter has changed, for
557
569
  # example, the `QueryString`, an error is returned.
558
570
  #
559
- # This token is listed as not required because AWS SDKs (for example the
560
- # AWS SDK for Java) auto-generate the token for users. If you are not
561
- # using the AWS SDK or the AWS CLI, you must provide this token or the
562
- # action will fail.
571
+ # This token is listed as not required because Amazon Web Services SDKs
572
+ # (for example the Amazon Web Services SDK for Java) auto-generate the
573
+ # token for users. If you are not using the Amazon Web Services SDK or
574
+ # the Amazon Web Services CLI, you must provide this token or the action
575
+ # will fail.
563
576
  #
564
577
  # **A suitable default value is auto-generated.** You should normally
565
578
  # not need to pass this option.**
@@ -641,8 +654,8 @@ module Aws::Athena
641
654
  # Amazon CloudWatch Metrics are enabled for the workgroup, the limit for
642
655
  # the amount of bytes scanned (cutoff) per query, if it is specified,
643
656
  # and whether workgroup's settings (specified with
644
- # EnforceWorkGroupConfiguration) in the WorkGroupConfiguration override
645
- # client-side settings. See
657
+ # `EnforceWorkGroupConfiguration`) in the `WorkGroupConfiguration`
658
+ # override client-side settings. See
646
659
  # WorkGroupConfiguration$EnforceWorkGroupConfiguration.
647
660
  #
648
661
  # @option params [String] :description
@@ -718,8 +731,8 @@ module Aws::Athena
718
731
  # Deletes the named query if you have access to the workgroup in which
719
732
  # the query was saved.
720
733
  #
721
- # For code samples using the AWS SDK for Java, see [Examples and Code
722
- # Samples][1] in the *Amazon Athena User Guide*.
734
+ # For code samples using the Amazon Web Services SDK for Java, see
735
+ # [Examples and Code Samples][1] in the *Amazon Athena User Guide*.
723
736
  #
724
737
  #
725
738
  #
@@ -1159,7 +1172,7 @@ module Aws::Athena
1159
1172
  req.send_request(options)
1160
1173
  end
1161
1174
 
1162
- # Lists the data catalogs in the current AWS account.
1175
+ # Lists the data catalogs in the current Amazon Web Services account.
1163
1176
  #
1164
1177
  # @option params [String] :next_token
1165
1178
  # A token generated by the Athena service that specifies where to
@@ -1292,8 +1305,8 @@ module Aws::Athena
1292
1305
  # workgroup. If a workgroup is not specified, lists the saved queries
1293
1306
  # for the primary workgroup.
1294
1307
  #
1295
- # For code samples using the AWS SDK for Java, see [Examples and Code
1296
- # Samples][1] in the *Amazon Athena User Guide*.
1308
+ # For code samples using the Amazon Web Services SDK for Java, see
1309
+ # [Examples and Code Samples][1] in the *Amazon Athena User Guide*.
1297
1310
  #
1298
1311
  #
1299
1312
  #
@@ -1393,8 +1406,8 @@ module Aws::Athena
1393
1406
  # list of query execution IDs for the primary workgroup. Requires you to
1394
1407
  # have access to the workgroup in which the queries ran.
1395
1408
  #
1396
- # For code samples using the AWS SDK for Java, see [Examples and Code
1397
- # Samples][1] in the *Amazon Athena User Guide*.
1409
+ # For code samples using the Amazon Web Services SDK for Java, see
1410
+ # [Examples and Code Samples][1] in the *Amazon Athena User Guide*.
1398
1411
  #
1399
1412
  #
1400
1413
  #
@@ -1606,8 +1619,9 @@ module Aws::Athena
1606
1619
  # Runs the SQL query statements contained in the `Query`. Requires you
1607
1620
  # to have access to the workgroup in which the query ran. Running
1608
1621
  # queries against an external catalog requires GetDataCatalog permission
1609
- # to the catalog. For code samples using the AWS SDK for Java, see
1610
- # [Examples and Code Samples][1] in the *Amazon Athena User Guide*.
1622
+ # to the catalog. For code samples using the Amazon Web Services SDK for
1623
+ # Java, see [Examples and Code Samples][1] in the *Amazon Athena User
1624
+ # Guide*.
1611
1625
  #
1612
1626
  #
1613
1627
  #
@@ -1623,10 +1637,11 @@ module Aws::Athena
1623
1637
  # returned and another query is not created. If a parameter has changed,
1624
1638
  # for example, the `QueryString`, an error is returned.
1625
1639
  #
1626
- # This token is listed as not required because AWS SDKs (for example the
1627
- # AWS SDK for Java) auto-generate the token for users. If you are not
1628
- # using the AWS SDK or the AWS CLI, you must provide this token or the
1629
- # action will fail.
1640
+ # This token is listed as not required because Amazon Web Services SDKs
1641
+ # (for example the Amazon Web Services SDK for Java) auto-generate the
1642
+ # token for users. If you are not using the Amazon Web Services SDK or
1643
+ # the Amazon Web Services CLI, you must provide this token or the action
1644
+ # will fail.
1630
1645
  #
1631
1646
  # **A suitable default value is auto-generated.** You should normally
1632
1647
  # not need to pass this option.**
@@ -1685,8 +1700,8 @@ module Aws::Athena
1685
1700
  # Stops a query execution. Requires you to have access to the workgroup
1686
1701
  # in which the query ran.
1687
1702
  #
1688
- # For code samples using the AWS SDK for Java, see [Examples and Code
1689
- # Samples][1] in the *Amazon Athena User Guide*.
1703
+ # For code samples using the Amazon Web Services SDK for Java, see
1704
+ # [Examples and Code Samples][1] in the *Amazon Athena User Guide*.
1690
1705
  #
1691
1706
  #
1692
1707
  #
@@ -1795,18 +1810,13 @@ module Aws::Athena
1795
1810
  #
1796
1811
  # @option params [required, String] :name
1797
1812
  # The name of the data catalog to update. The catalog name must be
1798
- # unique for the AWS account and can use a maximum of 128 alphanumeric,
1799
- # underscore, at sign, or hyphen characters.
1813
+ # unique for the Amazon Web Services account and can use a maximum of
1814
+ # 128 alphanumeric, underscore, at sign, or hyphen characters.
1800
1815
  #
1801
1816
  # @option params [required, String] :type
1802
1817
  # Specifies the type of data catalog to update. Specify `LAMBDA` for a
1803
- # federated catalog or `HIVE` for an external hive metastore.
1804
- #
1805
- # <note markdown="1"> Do not use the `GLUE` type. This refers to the `AwsDataCatalog` that
1806
- # already exists in your account, of which you can have only one.
1807
- # Specifying the `GLUE` type will result in an `INVALID_INPUT` error.
1808
- #
1809
- # </note>
1818
+ # federated catalog, `HIVE` for an external hive metastore, or `GLUE`
1819
+ # for an Glue Data Catalog.
1810
1820
  #
1811
1821
  # @option params [String] :description
1812
1822
  # New or modified text that describes the data catalog.
@@ -1962,7 +1972,7 @@ module Aws::Athena
1962
1972
  params: params,
1963
1973
  config: config)
1964
1974
  context[:gem_name] = 'aws-sdk-athena'
1965
- context[:gem_version] = '1.39.0'
1975
+ context[:gem_version] = '1.40.0'
1966
1976
  Seahorse::Client::Request.new(handlers, context)
1967
1977
  end
1968
1978
 
@@ -187,19 +187,14 @@ module Aws::Athena
187
187
  #
188
188
  # @!attribute [rw] name
189
189
  # The name of the data catalog to create. The catalog name must be
190
- # unique for the AWS account and can use a maximum of 128
191
- # alphanumeric, underscore, at sign, or hyphen characters.
190
+ # unique for the Amazon Web Services account and can use a maximum of
191
+ # 128 alphanumeric, underscore, at sign, or hyphen characters.
192
192
  # @return [String]
193
193
  #
194
194
  # @!attribute [rw] type
195
- # The type of data catalog to create: `LAMBDA` for a federated catalog
196
- # or `HIVE` for an external hive metastore.
197
- #
198
- # <note markdown="1"> Do not use the `GLUE` type. This refers to the `AwsDataCatalog` that
199
- # already exists in your account, of which you can have only one.
200
- # Specifying the `GLUE` type will result in an `INVALID_INPUT` error.
201
- #
202
- # </note>
195
+ # The type of data catalog to create: `LAMBDA` for a federated
196
+ # catalog, `HIVE` for an external hive metastore, or `GLUE` for an
197
+ # Glue Data Catalog.
203
198
  # @return [String]
204
199
  #
205
200
  # @!attribute [rw] description
@@ -232,6 +227,23 @@ module Aws::Athena
232
227
  # Lambda function.
233
228
  #
234
229
  # `function=lambda_arn `
230
+ #
231
+ # * The `GLUE` type takes a catalog ID parameter and is required. The
232
+ # ` catalog_id ` is the account ID of the Amazon Web Services
233
+ # account to which the Glue Data Catalog belongs.
234
+ #
235
+ # `catalog-id=catalog_id `
236
+ #
237
+ # * The `GLUE` data catalog type also applies to the default
238
+ # `AwsDataCatalog` that already exists in your account, of which
239
+ # you can have only one and cannot modify.
240
+ #
241
+ # * Queries that specify a Glue Data Catalog other than the default
242
+ # `AwsDataCatalog` must be run on Athena engine version 2.
243
+ #
244
+ # * In Regions where Athena engine version 2 is not available,
245
+ # creating new Glue data catalogs results in an `INVALID_INPUT`
246
+ # error.
235
247
  # @return [Hash<String,String>]
236
248
  #
237
249
  # @!attribute [rw] tags
@@ -290,10 +302,11 @@ module Aws::Athena
290
302
  # returned and another query is not created. If a parameter has
291
303
  # changed, for example, the `QueryString`, an error is returned.
292
304
  #
293
- # This token is listed as not required because AWS SDKs (for example
294
- # the AWS SDK for Java) auto-generate the token for users. If you are
295
- # not using the AWS SDK or the AWS CLI, you must provide this token or
296
- # the action will fail.
305
+ # This token is listed as not required because Amazon Web Services
306
+ # SDKs (for example the Amazon Web Services SDK for Java)
307
+ # auto-generate the token for users. If you are not using the Amazon
308
+ # Web Services SDK or the Amazon Web Services CLI, you must provide
309
+ # this token or the action will fail.
297
310
  #
298
311
  # **A suitable default value is auto-generated.** You should normally
299
312
  # not need to pass this option.
@@ -411,7 +424,7 @@ module Aws::Athena
411
424
  # the Amazon CloudWatch Metrics are enabled for the workgroup, the
412
425
  # limit for the amount of bytes scanned (cutoff) per query, if it is
413
426
  # specified, and whether workgroup's settings (specified with
414
- # EnforceWorkGroupConfiguration) in the WorkGroupConfiguration
427
+ # `EnforceWorkGroupConfiguration`) in the `WorkGroupConfiguration`
415
428
  # override client-side settings. See
416
429
  # WorkGroupConfiguration$EnforceWorkGroupConfiguration.
417
430
  # @return [Types::WorkGroupConfiguration]
@@ -440,12 +453,13 @@ module Aws::Athena
440
453
  #
441
454
  class CreateWorkGroupOutput < Aws::EmptyStructure; end
442
455
 
443
- # Contains information about a data catalog in an AWS account.
456
+ # Contains information about a data catalog in an Amazon Web Services
457
+ # account.
444
458
  #
445
459
  # @!attribute [rw] name
446
460
  # The name of the data catalog. The catalog name must be unique for
447
- # the AWS account and can use a maximum of 128 alphanumeric,
448
- # underscore, at sign, or hyphen characters.
461
+ # the Amazon Web Services account and can use a maximum of 128
462
+ # alphanumeric, underscore, at sign, or hyphen characters.
449
463
  # @return [String]
450
464
  #
451
465
  # @!attribute [rw] description
@@ -453,10 +467,9 @@ module Aws::Athena
453
467
  # @return [String]
454
468
  #
455
469
  # @!attribute [rw] type
456
- # The type of data catalog: `LAMBDA` for a federated catalog or `HIVE`
457
- # for an external hive metastore. `GLUE` refers to the
458
- # `AwsDataCatalog` that already exists in your account, of which you
459
- # can have only one.
470
+ # The type of data catalog to create: `LAMBDA` for a federated
471
+ # catalog, `HIVE` for an external hive metastore, or `GLUE` for an
472
+ # Glue Data Catalog.
460
473
  # @return [String]
461
474
  #
462
475
  # @!attribute [rw] parameters
@@ -484,6 +497,19 @@ module Aws::Athena
484
497
  # Lambda function.
485
498
  #
486
499
  # `function=lambda_arn `
500
+ #
501
+ # * The `GLUE` type takes a catalog ID parameter and is required. The
502
+ # ` catalog_id ` is the account ID of the Amazon Web Services
503
+ # account to which the Glue catalog belongs.
504
+ #
505
+ # `catalog-id=catalog_id `
506
+ #
507
+ # * The `GLUE` data catalog type also applies to the default
508
+ # `AwsDataCatalog` that already exists in your account, of which
509
+ # you can have only one and cannot modify.
510
+ #
511
+ # * Queries that specify a Glue Data Catalog other than the default
512
+ # `AwsDataCatalog` must be run on Athena engine version 2.
487
513
  # @return [Hash<String,String>]
488
514
  #
489
515
  # @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/DataCatalog AWS API Documentation
@@ -936,7 +962,8 @@ module Aws::Athena
936
962
  end
937
963
 
938
964
  # @!attribute [rw] update_count
939
- # The number of rows inserted with a CREATE TABLE AS SELECT statement.
965
+ # The number of rows inserted with a `CREATE TABLE AS SELECT`
966
+ # statement.
940
967
  # @return [Integer]
941
968
  #
942
969
  # @!attribute [rw] result_set
@@ -1677,7 +1704,7 @@ module Aws::Athena
1677
1704
  # statements. `DML` indicates DML (Data Manipulation Language) query
1678
1705
  # statements, such as `CREATE TABLE AS SELECT`. `UTILITY` indicates
1679
1706
  # query statements other than DDL and DML, such as `SHOW CREATE
1680
- # TABLE`, or `DESCRIBE <table>`.
1707
+ # TABLE`, or `DESCRIBE TABLE`.
1681
1708
  # @return [String]
1682
1709
  #
1683
1710
  # @!attribute [rw] result_configuration
@@ -1740,7 +1767,8 @@ module Aws::Athena
1740
1767
  # }
1741
1768
  #
1742
1769
  # @!attribute [rw] database
1743
- # The name of the database used in the query execution.
1770
+ # The name of the database used in the query execution. The database
1771
+ # must exist in the catalog.
1744
1772
  # @return [String]
1745
1773
  #
1746
1774
  # @!attribute [rw] catalog
@@ -1959,8 +1987,8 @@ module Aws::Athena
1959
1987
  # then the query uses the location for the query results and the
1960
1988
  # encryption configuration that are specified for the workgroup. The
1961
1989
  # "workgroup settings override" is specified in
1962
- # EnforceWorkGroupConfiguration (true/false) in the
1963
- # WorkGroupConfiguration. See
1990
+ # `EnforceWorkGroupConfiguration` (true/false) in the
1991
+ # `WorkGroupConfiguration`. See
1964
1992
  # WorkGroupConfiguration$EnforceWorkGroupConfiguration.
1965
1993
  #
1966
1994
  #
@@ -1972,9 +2000,9 @@ module Aws::Athena
1972
2000
  # If set to "true", indicates that the previously-specified query
1973
2001
  # results location (also known as a client-side setting) for queries
1974
2002
  # in this workgroup should be ignored and set to null. If set to
1975
- # "false" or not set, and a value is present in the OutputLocation
1976
- # in ResultConfigurationUpdates (the client-side setting), the
1977
- # OutputLocation in the workgroup's ResultConfiguration will be
2003
+ # "false" or not set, and a value is present in the `OutputLocation`
2004
+ # in `ResultConfigurationUpdates` (the client-side setting), the
2005
+ # `OutputLocation` in the workgroup's `ResultConfiguration` will be
1978
2006
  # updated with the new value. For more information, see [Workgroup
1979
2007
  # Settings Override Client-Side Settings][1].
1980
2008
  #
@@ -1992,11 +2020,11 @@ module Aws::Athena
1992
2020
  # encryption configuration (also known as the client-side setting) for
1993
2021
  # queries in this workgroup should be ignored and set to null. If set
1994
2022
  # to "false" or not set, and a value is present in the
1995
- # EncryptionConfiguration in ResultConfigurationUpdates (the
1996
- # client-side setting), the EncryptionConfiguration in the
1997
- # workgroup's ResultConfiguration will be updated with the new value.
1998
- # For more information, see [Workgroup Settings Override Client-Side
1999
- # Settings][1].
2023
+ # `EncryptionConfiguration` in `ResultConfigurationUpdates` (the
2024
+ # client-side setting), the `EncryptionConfiguration` in the
2025
+ # workgroup's `ResultConfiguration` will be updated with the new
2026
+ # value. For more information, see [Workgroup Settings Override
2027
+ # Client-Side Settings][1].
2000
2028
  #
2001
2029
  #
2002
2030
  #
@@ -2097,10 +2125,11 @@ module Aws::Athena
2097
2125
  # returned and another query is not created. If a parameter has
2098
2126
  # changed, for example, the `QueryString`, an error is returned.
2099
2127
  #
2100
- # This token is listed as not required because AWS SDKs (for example
2101
- # the AWS SDK for Java) auto-generate the token for users. If you are
2102
- # not using the AWS SDK or the AWS CLI, you must provide this token or
2103
- # the action will fail.
2128
+ # This token is listed as not required because Amazon Web Services
2129
+ # SDKs (for example the Amazon Web Services SDK for Java)
2130
+ # auto-generate the token for users. If you are not using the Amazon
2131
+ # Web Services SDK or the Amazon Web Services CLI, you must provide
2132
+ # this token or the action will fail.
2104
2133
  #
2105
2134
  # **A suitable default value is auto-generated.** You should normally
2106
2135
  # not need to pass this option.
@@ -2417,19 +2446,14 @@ module Aws::Athena
2417
2446
  #
2418
2447
  # @!attribute [rw] name
2419
2448
  # The name of the data catalog to update. The catalog name must be
2420
- # unique for the AWS account and can use a maximum of 128
2421
- # alphanumeric, underscore, at sign, or hyphen characters.
2449
+ # unique for the Amazon Web Services account and can use a maximum of
2450
+ # 128 alphanumeric, underscore, at sign, or hyphen characters.
2422
2451
  # @return [String]
2423
2452
  #
2424
2453
  # @!attribute [rw] type
2425
2454
  # Specifies the type of data catalog to update. Specify `LAMBDA` for a
2426
- # federated catalog or `HIVE` for an external hive metastore.
2427
- #
2428
- # <note markdown="1"> Do not use the `GLUE` type. This refers to the `AwsDataCatalog` that
2429
- # already exists in your account, of which you can have only one.
2430
- # Specifying the `GLUE` type will result in an `INVALID_INPUT` error.
2431
- #
2432
- # </note>
2455
+ # federated catalog, `HIVE` for an external hive metastore, or `GLUE`
2456
+ # for an Glue Data Catalog.
2433
2457
  # @return [String]
2434
2458
  #
2435
2459
  # @!attribute [rw] description
@@ -2589,8 +2613,8 @@ module Aws::Athena
2589
2613
  # settings), to enable sending query metrics to Amazon CloudWatch, and
2590
2614
  # to establish per-query data usage control limits for all queries in a
2591
2615
  # workgroup. The workgroup settings override is specified in
2592
- # EnforceWorkGroupConfiguration (true/false) in the
2593
- # WorkGroupConfiguration. See
2616
+ # `EnforceWorkGroupConfiguration` (true/false) in the
2617
+ # `WorkGroupConfiguration`. See
2594
2618
  # WorkGroupConfiguration$EnforceWorkGroupConfiguration.
2595
2619
  #
2596
2620
  # @!attribute [rw] name
@@ -2609,8 +2633,8 @@ module Aws::Athena
2609
2633
  # settings override client-side settings; and the data usage limits
2610
2634
  # for the amount of data scanned per query or per workgroup. The
2611
2635
  # workgroup settings override is specified in
2612
- # EnforceWorkGroupConfiguration (true/false) in the
2613
- # WorkGroupConfiguration. See
2636
+ # `EnforceWorkGroupConfiguration` (true/false) in the
2637
+ # `WorkGroupConfiguration`. See
2614
2638
  # WorkGroupConfiguration$EnforceWorkGroupConfiguration.
2615
2639
  # @return [Types::WorkGroupConfiguration]
2616
2640
  #
@@ -2640,8 +2664,8 @@ module Aws::Athena
2640
2664
  # enabled for the workgroup and whether workgroup settings override
2641
2665
  # query settings, and the data usage limits for the amount of data
2642
2666
  # scanned per query or per workgroup. The workgroup settings override is
2643
- # specified in EnforceWorkGroupConfiguration (true/false) in the
2644
- # WorkGroupConfiguration. See
2667
+ # specified in `EnforceWorkGroupConfiguration` (true/false) in the
2668
+ # `WorkGroupConfiguration`. See
2645
2669
  # WorkGroupConfiguration$EnforceWorkGroupConfiguration.
2646
2670
  #
2647
2671
  # @note When making an API call, you may pass WorkGroupConfiguration
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-athena
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core