aws-sdk-athena 1.78.0 → 1.80.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-athena/client.rb +82 -10
- data/lib/aws-sdk-athena/client_api.rb +28 -1
- data/lib/aws-sdk-athena/types.rb +161 -21
- data/lib/aws-sdk-athena.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f5d691cbe84be625ed0fdd128696b2fab544e785933545755e0a3b578e0a1d7
|
4
|
+
data.tar.gz: 514d2d90b3708547c8f4c2125804c0f648178f66d0702c162a7e6cadd6f69dcc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7719d9c6c7db4573513002ec14ccfa00fe4b864035f2746e0447e2bdebb9e4ad85008c8b47896eb58f9ee3d8793960968eb27f7c4db7ab3cad1c73d841fe1518
|
7
|
+
data.tar.gz: 62dc62497d64469a2dd043351c7b8612985366139444c4f45e77cf680171651217e859d9e7628028e2b061d2f7814d690f5a48fe0c64a36950cc4b2a30870130
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2024-01-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown.
|
8
|
+
|
9
|
+
1.79.0 (2023-12-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adding IdentityCenter enabled request for interactive query
|
13
|
+
|
4
14
|
1.78.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -553,6 +553,9 @@ module Aws::Athena
|
|
553
553
|
# resp.query_executions[0].execution_parameters #=> Array
|
554
554
|
# resp.query_executions[0].execution_parameters[0] #=> String
|
555
555
|
# resp.query_executions[0].substatement_type #=> String
|
556
|
+
# resp.query_executions[0].query_results_s3_access_grants_configuration.enable_s3_access_grants #=> Boolean
|
557
|
+
# resp.query_executions[0].query_results_s3_access_grants_configuration.create_user_level_prefix #=> Boolean
|
558
|
+
# resp.query_executions[0].query_results_s3_access_grants_configuration.authentication_type #=> String, one of "DIRECTORY_IDENTITY"
|
556
559
|
# resp.unprocessed_query_execution_ids #=> Array
|
557
560
|
# resp.unprocessed_query_execution_ids[0].query_execution_id #=> String
|
558
561
|
# resp.unprocessed_query_execution_ids[0].error_code #=> String
|
@@ -959,6 +962,15 @@ module Aws::Athena
|
|
959
962
|
# kms_key: "KmsKey", # required
|
960
963
|
# },
|
961
964
|
# enable_minimum_encryption_configuration: false,
|
965
|
+
# identity_center_configuration: {
|
966
|
+
# enable_identity_center: false,
|
967
|
+
# identity_center_instance_arn: "IdentityCenterInstanceArn",
|
968
|
+
# },
|
969
|
+
# query_results_s3_access_grants_configuration: {
|
970
|
+
# enable_s3_access_grants: false, # required
|
971
|
+
# create_user_level_prefix: false,
|
972
|
+
# authentication_type: "DIRECTORY_IDENTITY", # required, accepts DIRECTORY_IDENTITY
|
973
|
+
# },
|
962
974
|
# },
|
963
975
|
# description: "WorkGroupDescriptionString",
|
964
976
|
# tags: [
|
@@ -1350,6 +1362,10 @@ module Aws::Athena
|
|
1350
1362
|
# @option params [required, String] :name
|
1351
1363
|
# The name of the data catalog to return.
|
1352
1364
|
#
|
1365
|
+
# @option params [String] :work_group
|
1366
|
+
# The name of the workgroup. Required if making an IAM Identity Center
|
1367
|
+
# request.
|
1368
|
+
#
|
1353
1369
|
# @return [Types::GetDataCatalogOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1354
1370
|
#
|
1355
1371
|
# * {Types::GetDataCatalogOutput#data_catalog #data_catalog} => Types::DataCatalog
|
@@ -1358,6 +1374,7 @@ module Aws::Athena
|
|
1358
1374
|
#
|
1359
1375
|
# resp = client.get_data_catalog({
|
1360
1376
|
# name: "CatalogNameString", # required
|
1377
|
+
# work_group: "WorkGroupName",
|
1361
1378
|
# })
|
1362
1379
|
#
|
1363
1380
|
# @example Response structure
|
@@ -1385,6 +1402,11 @@ module Aws::Athena
|
|
1385
1402
|
# @option params [required, String] :database_name
|
1386
1403
|
# The name of the database to return.
|
1387
1404
|
#
|
1405
|
+
# @option params [String] :work_group
|
1406
|
+
# The name of the workgroup for which the metadata is being fetched.
|
1407
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
1408
|
+
# Catalog.
|
1409
|
+
#
|
1388
1410
|
# @return [Types::GetDatabaseOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1389
1411
|
#
|
1390
1412
|
# * {Types::GetDatabaseOutput#database #database} => Types::Database
|
@@ -1394,6 +1416,7 @@ module Aws::Athena
|
|
1394
1416
|
# resp = client.get_database({
|
1395
1417
|
# catalog_name: "CatalogNameString", # required
|
1396
1418
|
# database_name: "NameString", # required
|
1419
|
+
# work_group: "WorkGroupName",
|
1397
1420
|
# })
|
1398
1421
|
#
|
1399
1422
|
# @example Response structure
|
@@ -1571,6 +1594,9 @@ module Aws::Athena
|
|
1571
1594
|
# resp.query_execution.execution_parameters #=> Array
|
1572
1595
|
# resp.query_execution.execution_parameters[0] #=> String
|
1573
1596
|
# resp.query_execution.substatement_type #=> String
|
1597
|
+
# resp.query_execution.query_results_s3_access_grants_configuration.enable_s3_access_grants #=> Boolean
|
1598
|
+
# resp.query_execution.query_results_s3_access_grants_configuration.create_user_level_prefix #=> Boolean
|
1599
|
+
# resp.query_execution.query_results_s3_access_grants_configuration.authentication_type #=> String, one of "DIRECTORY_IDENTITY"
|
1574
1600
|
#
|
1575
1601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryExecution AWS API Documentation
|
1576
1602
|
#
|
@@ -1823,6 +1849,11 @@ module Aws::Athena
|
|
1823
1849
|
# @option params [required, String] :table_name
|
1824
1850
|
# The name of the table for which metadata is returned.
|
1825
1851
|
#
|
1852
|
+
# @option params [String] :work_group
|
1853
|
+
# The name of the workgroup for which the metadata is being fetched.
|
1854
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
1855
|
+
# Catalog.
|
1856
|
+
#
|
1826
1857
|
# @return [Types::GetTableMetadataOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1827
1858
|
#
|
1828
1859
|
# * {Types::GetTableMetadataOutput#table_metadata #table_metadata} => Types::TableMetadata
|
@@ -1833,6 +1864,7 @@ module Aws::Athena
|
|
1833
1864
|
# catalog_name: "CatalogNameString", # required
|
1834
1865
|
# database_name: "NameString", # required
|
1835
1866
|
# table_name: "NameString", # required
|
1867
|
+
# work_group: "WorkGroupName",
|
1836
1868
|
# })
|
1837
1869
|
#
|
1838
1870
|
# @example Response structure
|
@@ -1895,8 +1927,14 @@ module Aws::Athena
|
|
1895
1927
|
# resp.work_group.configuration.execution_role #=> String
|
1896
1928
|
# resp.work_group.configuration.customer_content_encryption_configuration.kms_key #=> String
|
1897
1929
|
# resp.work_group.configuration.enable_minimum_encryption_configuration #=> Boolean
|
1930
|
+
# resp.work_group.configuration.identity_center_configuration.enable_identity_center #=> Boolean
|
1931
|
+
# resp.work_group.configuration.identity_center_configuration.identity_center_instance_arn #=> String
|
1932
|
+
# resp.work_group.configuration.query_results_s3_access_grants_configuration.enable_s3_access_grants #=> Boolean
|
1933
|
+
# resp.work_group.configuration.query_results_s3_access_grants_configuration.create_user_level_prefix #=> Boolean
|
1934
|
+
# resp.work_group.configuration.query_results_s3_access_grants_configuration.authentication_type #=> String, one of "DIRECTORY_IDENTITY"
|
1898
1935
|
# resp.work_group.description #=> String
|
1899
1936
|
# resp.work_group.creation_time #=> Time
|
1937
|
+
# resp.work_group.identity_center_application_arn #=> String
|
1900
1938
|
#
|
1901
1939
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetWorkGroup AWS API Documentation
|
1902
1940
|
#
|
@@ -1907,10 +1945,12 @@ module Aws::Athena
|
|
1907
1945
|
req.send_request(options)
|
1908
1946
|
end
|
1909
1947
|
|
1910
|
-
# Imports a single `ipynb` file to a Spark enabled workgroup.
|
1911
|
-
#
|
1912
|
-
#
|
1913
|
-
#
|
1948
|
+
# Imports a single `ipynb` file to a Spark enabled workgroup. To import
|
1949
|
+
# the notebook, the request must specify a value for either `Payload` or
|
1950
|
+
# `NoteBookS3LocationUri`. If neither is specified or both are
|
1951
|
+
# specified, an `InvalidRequestException` occurs. The maximum file size
|
1952
|
+
# that can be imported is 10 megabytes. If an `ipynb` file with the same
|
1953
|
+
# name already exists in the workgroup, throws an error.
|
1914
1954
|
#
|
1915
1955
|
# @option params [required, String] :work_group
|
1916
1956
|
# The name of the Spark enabled workgroup to import the notebook to.
|
@@ -1918,12 +1958,17 @@ module Aws::Athena
|
|
1918
1958
|
# @option params [required, String] :name
|
1919
1959
|
# The name of the notebook to import.
|
1920
1960
|
#
|
1921
|
-
# @option params [
|
1922
|
-
# The notebook content to be imported.
|
1961
|
+
# @option params [String] :payload
|
1962
|
+
# The notebook content to be imported. The payload must be in `ipynb`
|
1963
|
+
# format.
|
1923
1964
|
#
|
1924
1965
|
# @option params [required, String] :type
|
1925
1966
|
# The notebook content type. Currently, the only valid type is `IPYNB`.
|
1926
1967
|
#
|
1968
|
+
# @option params [String] :notebook_s3_location_uri
|
1969
|
+
# A URI that specifies the Amazon S3 location of a notebook file in
|
1970
|
+
# `ipynb` format.
|
1971
|
+
#
|
1927
1972
|
# @option params [String] :client_request_token
|
1928
1973
|
# A unique case-sensitive string used to ensure the request to import
|
1929
1974
|
# the notebook is idempotent (executes only once).
|
@@ -1943,8 +1988,9 @@ module Aws::Athena
|
|
1943
1988
|
# resp = client.import_notebook({
|
1944
1989
|
# work_group: "WorkGroupName", # required
|
1945
1990
|
# name: "NotebookName", # required
|
1946
|
-
# payload: "Payload",
|
1991
|
+
# payload: "Payload",
|
1947
1992
|
# type: "IPYNB", # required, accepts IPYNB
|
1993
|
+
# notebook_s3_location_uri: "S3Uri",
|
1948
1994
|
# client_request_token: "ClientRequestToken",
|
1949
1995
|
# })
|
1950
1996
|
#
|
@@ -2139,6 +2185,10 @@ module Aws::Athena
|
|
2139
2185
|
# @option params [Integer] :max_results
|
2140
2186
|
# Specifies the maximum number of data catalogs to return.
|
2141
2187
|
#
|
2188
|
+
# @option params [String] :work_group
|
2189
|
+
# The name of the workgroup. Required if making an IAM Identity Center
|
2190
|
+
# request.
|
2191
|
+
#
|
2142
2192
|
# @return [Types::ListDataCatalogsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2143
2193
|
#
|
2144
2194
|
# * {Types::ListDataCatalogsOutput#data_catalogs_summary #data_catalogs_summary} => Array<Types::DataCatalogSummary>
|
@@ -2151,6 +2201,7 @@ module Aws::Athena
|
|
2151
2201
|
# resp = client.list_data_catalogs({
|
2152
2202
|
# next_token: "Token",
|
2153
2203
|
# max_results: 1,
|
2204
|
+
# work_group: "WorkGroupName",
|
2154
2205
|
# })
|
2155
2206
|
#
|
2156
2207
|
# @example Response structure
|
@@ -2183,6 +2234,11 @@ module Aws::Athena
|
|
2183
2234
|
# @option params [Integer] :max_results
|
2184
2235
|
# Specifies the maximum number of results to return.
|
2185
2236
|
#
|
2237
|
+
# @option params [String] :work_group
|
2238
|
+
# The name of the workgroup for which the metadata is being fetched.
|
2239
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
2240
|
+
# Catalog.
|
2241
|
+
#
|
2186
2242
|
# @return [Types::ListDatabasesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2187
2243
|
#
|
2188
2244
|
# * {Types::ListDatabasesOutput#database_list #database_list} => Array<Types::Database>
|
@@ -2196,6 +2252,7 @@ module Aws::Athena
|
|
2196
2252
|
# catalog_name: "CatalogNameString", # required
|
2197
2253
|
# next_token: "Token",
|
2198
2254
|
# max_results: 1,
|
2255
|
+
# work_group: "WorkGroupName",
|
2199
2256
|
# })
|
2200
2257
|
#
|
2201
2258
|
# @example Response structure
|
@@ -2675,6 +2732,11 @@ module Aws::Athena
|
|
2675
2732
|
# @option params [Integer] :max_results
|
2676
2733
|
# Specifies the maximum number of results to return.
|
2677
2734
|
#
|
2735
|
+
# @option params [String] :work_group
|
2736
|
+
# The name of the workgroup for which the metadata is being fetched.
|
2737
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
2738
|
+
# Catalog.
|
2739
|
+
#
|
2678
2740
|
# @return [Types::ListTableMetadataOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2679
2741
|
#
|
2680
2742
|
# * {Types::ListTableMetadataOutput#table_metadata_list #table_metadata_list} => Array<Types::TableMetadata>
|
@@ -2690,6 +2752,7 @@ module Aws::Athena
|
|
2690
2752
|
# expression: "ExpressionString",
|
2691
2753
|
# next_token: "Token",
|
2692
2754
|
# max_results: 1,
|
2755
|
+
# work_group: "WorkGroupName",
|
2693
2756
|
# })
|
2694
2757
|
#
|
2695
2758
|
# @example Response structure
|
@@ -2799,6 +2862,7 @@ module Aws::Athena
|
|
2799
2862
|
# resp.work_groups[0].creation_time #=> Time
|
2800
2863
|
# resp.work_groups[0].engine_version.selected_engine_version #=> String
|
2801
2864
|
# resp.work_groups[0].engine_version.effective_engine_version #=> String
|
2865
|
+
# resp.work_groups[0].identity_center_application_arn #=> String
|
2802
2866
|
# resp.next_token #=> String
|
2803
2867
|
#
|
2804
2868
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListWorkGroups AWS API Documentation
|
@@ -2930,8 +2994,11 @@ module Aws::Athena
|
|
2930
2994
|
# A unique case-sensitive string used to ensure the request to create
|
2931
2995
|
# the query is idempotent (executes only once). If another
|
2932
2996
|
# `StartQueryExecution` request is received, the same response is
|
2933
|
-
# returned and another query is not created.
|
2934
|
-
#
|
2997
|
+
# returned and another query is not created. An error is returned if a
|
2998
|
+
# parameter, such as `QueryString`, has changed. A call to
|
2999
|
+
# `StartQueryExecution` that uses a previous client request token
|
3000
|
+
# returns the same `QueryExecutionId` even if the requester doesn't
|
3001
|
+
# have permission on the tables specified in `QueryString`.
|
2935
3002
|
#
|
2936
3003
|
# This token is listed as not required because Amazon Web Services SDKs
|
2937
3004
|
# (for example the Amazon Web Services SDK for Java) auto-generate the
|
@@ -3560,6 +3627,11 @@ module Aws::Athena
|
|
3560
3627
|
# kms_key: "KmsKey", # required
|
3561
3628
|
# },
|
3562
3629
|
# enable_minimum_encryption_configuration: false,
|
3630
|
+
# query_results_s3_access_grants_configuration: {
|
3631
|
+
# enable_s3_access_grants: false, # required
|
3632
|
+
# create_user_level_prefix: false,
|
3633
|
+
# authentication_type: "DIRECTORY_IDENTITY", # required, accepts DIRECTORY_IDENTITY
|
3634
|
+
# },
|
3563
3635
|
# },
|
3564
3636
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
3565
3637
|
# })
|
@@ -3586,7 +3658,7 @@ module Aws::Athena
|
|
3586
3658
|
params: params,
|
3587
3659
|
config: config)
|
3588
3660
|
context[:gem_name] = 'aws-sdk-athena'
|
3589
|
-
context[:gem_version] = '1.
|
3661
|
+
context[:gem_version] = '1.80.0'
|
3590
3662
|
Seahorse::Client::Request.new(handlers, context)
|
3591
3663
|
end
|
3592
3664
|
|
@@ -21,6 +21,7 @@ module Aws::Athena
|
|
21
21
|
ApplicationDPUSizesList = Shapes::ListShape.new(name: 'ApplicationDPUSizesList')
|
22
22
|
AthenaError = Shapes::StructureShape.new(name: 'AthenaError')
|
23
23
|
AuthToken = Shapes::StringShape.new(name: 'AuthToken')
|
24
|
+
AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
|
24
25
|
AwsAccountId = Shapes::StringShape.new(name: 'AwsAccountId')
|
25
26
|
BatchGetNamedQueryInput = Shapes::StructureShape.new(name: 'BatchGetNamedQueryInput')
|
26
27
|
BatchGetNamedQueryOutput = Shapes::StructureShape.new(name: 'BatchGetNamedQueryOutput')
|
@@ -154,6 +155,9 @@ module Aws::Athena
|
|
154
155
|
GetWorkGroupInput = Shapes::StructureShape.new(name: 'GetWorkGroupInput')
|
155
156
|
GetWorkGroupOutput = Shapes::StructureShape.new(name: 'GetWorkGroupOutput')
|
156
157
|
IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
|
158
|
+
IdentityCenterApplicationArn = Shapes::StringShape.new(name: 'IdentityCenterApplicationArn')
|
159
|
+
IdentityCenterConfiguration = Shapes::StructureShape.new(name: 'IdentityCenterConfiguration')
|
160
|
+
IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
|
157
161
|
ImportNotebookInput = Shapes::StructureShape.new(name: 'ImportNotebookInput')
|
158
162
|
ImportNotebookOutput = Shapes::StructureShape.new(name: 'ImportNotebookOutput')
|
159
163
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
@@ -243,6 +247,7 @@ module Aws::Athena
|
|
243
247
|
QueryExecutionState = Shapes::StringShape.new(name: 'QueryExecutionState')
|
244
248
|
QueryExecutionStatistics = Shapes::StructureShape.new(name: 'QueryExecutionStatistics')
|
245
249
|
QueryExecutionStatus = Shapes::StructureShape.new(name: 'QueryExecutionStatus')
|
250
|
+
QueryResultsS3AccessGrantsConfiguration = Shapes::StructureShape.new(name: 'QueryResultsS3AccessGrantsConfiguration')
|
246
251
|
QueryRuntimeStatistics = Shapes::StructureShape.new(name: 'QueryRuntimeStatistics')
|
247
252
|
QueryRuntimeStatisticsRows = Shapes::StructureShape.new(name: 'QueryRuntimeStatisticsRows')
|
248
253
|
QueryRuntimeStatisticsTimeline = Shapes::StructureShape.new(name: 'QueryRuntimeStatisticsTimeline')
|
@@ -650,6 +655,7 @@ module Aws::Athena
|
|
650
655
|
GetCapacityReservationOutput.struct_class = Types::GetCapacityReservationOutput
|
651
656
|
|
652
657
|
GetDataCatalogInput.add_member(:name, Shapes::ShapeRef.new(shape: CatalogNameString, required: true, location_name: "Name"))
|
658
|
+
GetDataCatalogInput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroupName, location_name: "WorkGroup"))
|
653
659
|
GetDataCatalogInput.struct_class = Types::GetDataCatalogInput
|
654
660
|
|
655
661
|
GetDataCatalogOutput.add_member(:data_catalog, Shapes::ShapeRef.new(shape: DataCatalog, location_name: "DataCatalog"))
|
@@ -657,6 +663,7 @@ module Aws::Athena
|
|
657
663
|
|
658
664
|
GetDatabaseInput.add_member(:catalog_name, Shapes::ShapeRef.new(shape: CatalogNameString, required: true, location_name: "CatalogName"))
|
659
665
|
GetDatabaseInput.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
666
|
+
GetDatabaseInput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroupName, location_name: "WorkGroup"))
|
660
667
|
GetDatabaseInput.struct_class = Types::GetDatabaseInput
|
661
668
|
|
662
669
|
GetDatabaseOutput.add_member(:database, Shapes::ShapeRef.new(shape: Database, location_name: "Database"))
|
@@ -727,6 +734,7 @@ module Aws::Athena
|
|
727
734
|
GetTableMetadataInput.add_member(:catalog_name, Shapes::ShapeRef.new(shape: CatalogNameString, required: true, location_name: "CatalogName"))
|
728
735
|
GetTableMetadataInput.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
729
736
|
GetTableMetadataInput.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
|
737
|
+
GetTableMetadataInput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroupName, location_name: "WorkGroup"))
|
730
738
|
GetTableMetadataInput.struct_class = Types::GetTableMetadataInput
|
731
739
|
|
732
740
|
GetTableMetadataOutput.add_member(:table_metadata, Shapes::ShapeRef.new(shape: TableMetadata, location_name: "TableMetadata"))
|
@@ -738,10 +746,15 @@ module Aws::Athena
|
|
738
746
|
GetWorkGroupOutput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroup, location_name: "WorkGroup"))
|
739
747
|
GetWorkGroupOutput.struct_class = Types::GetWorkGroupOutput
|
740
748
|
|
749
|
+
IdentityCenterConfiguration.add_member(:enable_identity_center, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "EnableIdentityCenter"))
|
750
|
+
IdentityCenterConfiguration.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "IdentityCenterInstanceArn"))
|
751
|
+
IdentityCenterConfiguration.struct_class = Types::IdentityCenterConfiguration
|
752
|
+
|
741
753
|
ImportNotebookInput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroupName, required: true, location_name: "WorkGroup"))
|
742
754
|
ImportNotebookInput.add_member(:name, Shapes::ShapeRef.new(shape: NotebookName, required: true, location_name: "Name"))
|
743
|
-
ImportNotebookInput.add_member(:payload, Shapes::ShapeRef.new(shape: Payload,
|
755
|
+
ImportNotebookInput.add_member(:payload, Shapes::ShapeRef.new(shape: Payload, location_name: "Payload"))
|
744
756
|
ImportNotebookInput.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, required: true, location_name: "Type"))
|
757
|
+
ImportNotebookInput.add_member(:notebook_s3_location_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "NotebookS3LocationUri"))
|
745
758
|
ImportNotebookInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
|
746
759
|
ImportNotebookInput.struct_class = Types::ImportNotebookInput
|
747
760
|
|
@@ -783,6 +796,7 @@ module Aws::Athena
|
|
783
796
|
|
784
797
|
ListDataCatalogsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
785
798
|
ListDataCatalogsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxDataCatalogsCount, location_name: "MaxResults"))
|
799
|
+
ListDataCatalogsInput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroupName, location_name: "WorkGroup"))
|
786
800
|
ListDataCatalogsInput.struct_class = Types::ListDataCatalogsInput
|
787
801
|
|
788
802
|
ListDataCatalogsOutput.add_member(:data_catalogs_summary, Shapes::ShapeRef.new(shape: DataCatalogSummaryList, location_name: "DataCatalogsSummary"))
|
@@ -792,6 +806,7 @@ module Aws::Athena
|
|
792
806
|
ListDatabasesInput.add_member(:catalog_name, Shapes::ShapeRef.new(shape: CatalogNameString, required: true, location_name: "CatalogName"))
|
793
807
|
ListDatabasesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
794
808
|
ListDatabasesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxDatabasesCount, location_name: "MaxResults"))
|
809
|
+
ListDatabasesInput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroupName, location_name: "WorkGroup"))
|
795
810
|
ListDatabasesInput.struct_class = Types::ListDatabasesInput
|
796
811
|
|
797
812
|
ListDatabasesOutput.add_member(:database_list, Shapes::ShapeRef.new(shape: DatabaseList, location_name: "DatabaseList"))
|
@@ -878,6 +893,7 @@ module Aws::Athena
|
|
878
893
|
ListTableMetadataInput.add_member(:expression, Shapes::ShapeRef.new(shape: ExpressionString, location_name: "Expression"))
|
879
894
|
ListTableMetadataInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
880
895
|
ListTableMetadataInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxTableMetadataCount, location_name: "MaxResults"))
|
896
|
+
ListTableMetadataInput.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroupName, location_name: "WorkGroup"))
|
881
897
|
ListTableMetadataInput.struct_class = Types::ListTableMetadataInput
|
882
898
|
|
883
899
|
ListTableMetadataOutput.add_member(:table_metadata_list, Shapes::ShapeRef.new(shape: TableMetadataList, location_name: "TableMetadataList"))
|
@@ -970,6 +986,7 @@ module Aws::Athena
|
|
970
986
|
QueryExecution.add_member(:engine_version, Shapes::ShapeRef.new(shape: EngineVersion, location_name: "EngineVersion"))
|
971
987
|
QueryExecution.add_member(:execution_parameters, Shapes::ShapeRef.new(shape: ExecutionParameters, location_name: "ExecutionParameters"))
|
972
988
|
QueryExecution.add_member(:substatement_type, Shapes::ShapeRef.new(shape: String, location_name: "SubstatementType"))
|
989
|
+
QueryExecution.add_member(:query_results_s3_access_grants_configuration, Shapes::ShapeRef.new(shape: QueryResultsS3AccessGrantsConfiguration, location_name: "QueryResultsS3AccessGrantsConfiguration"))
|
973
990
|
QueryExecution.struct_class = Types::QueryExecution
|
974
991
|
|
975
992
|
QueryExecutionContext.add_member(:database, Shapes::ShapeRef.new(shape: DatabaseString, location_name: "Database"))
|
@@ -998,6 +1015,11 @@ module Aws::Athena
|
|
998
1015
|
QueryExecutionStatus.add_member(:athena_error, Shapes::ShapeRef.new(shape: AthenaError, location_name: "AthenaError"))
|
999
1016
|
QueryExecutionStatus.struct_class = Types::QueryExecutionStatus
|
1000
1017
|
|
1018
|
+
QueryResultsS3AccessGrantsConfiguration.add_member(:enable_s3_access_grants, Shapes::ShapeRef.new(shape: BoxedBoolean, required: true, location_name: "EnableS3AccessGrants"))
|
1019
|
+
QueryResultsS3AccessGrantsConfiguration.add_member(:create_user_level_prefix, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "CreateUserLevelPrefix"))
|
1020
|
+
QueryResultsS3AccessGrantsConfiguration.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, required: true, location_name: "AuthenticationType"))
|
1021
|
+
QueryResultsS3AccessGrantsConfiguration.struct_class = Types::QueryResultsS3AccessGrantsConfiguration
|
1022
|
+
|
1001
1023
|
QueryRuntimeStatistics.add_member(:timeline, Shapes::ShapeRef.new(shape: QueryRuntimeStatisticsTimeline, location_name: "Timeline"))
|
1002
1024
|
QueryRuntimeStatistics.add_member(:rows, Shapes::ShapeRef.new(shape: QueryRuntimeStatisticsRows, location_name: "Rows"))
|
1003
1025
|
QueryRuntimeStatistics.add_member(:output_stage, Shapes::ShapeRef.new(shape: QueryStage, location_name: "OutputStage"))
|
@@ -1280,6 +1302,7 @@ module Aws::Athena
|
|
1280
1302
|
WorkGroup.add_member(:configuration, Shapes::ShapeRef.new(shape: WorkGroupConfiguration, location_name: "Configuration"))
|
1281
1303
|
WorkGroup.add_member(:description, Shapes::ShapeRef.new(shape: WorkGroupDescriptionString, location_name: "Description"))
|
1282
1304
|
WorkGroup.add_member(:creation_time, Shapes::ShapeRef.new(shape: Date, location_name: "CreationTime"))
|
1305
|
+
WorkGroup.add_member(:identity_center_application_arn, Shapes::ShapeRef.new(shape: IdentityCenterApplicationArn, location_name: "IdentityCenterApplicationArn"))
|
1283
1306
|
WorkGroup.struct_class = Types::WorkGroup
|
1284
1307
|
|
1285
1308
|
WorkGroupConfiguration.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ResultConfiguration, location_name: "ResultConfiguration"))
|
@@ -1292,6 +1315,8 @@ module Aws::Athena
|
|
1292
1315
|
WorkGroupConfiguration.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ExecutionRole"))
|
1293
1316
|
WorkGroupConfiguration.add_member(:customer_content_encryption_configuration, Shapes::ShapeRef.new(shape: CustomerContentEncryptionConfiguration, location_name: "CustomerContentEncryptionConfiguration"))
|
1294
1317
|
WorkGroupConfiguration.add_member(:enable_minimum_encryption_configuration, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "EnableMinimumEncryptionConfiguration"))
|
1318
|
+
WorkGroupConfiguration.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfiguration, location_name: "IdentityCenterConfiguration"))
|
1319
|
+
WorkGroupConfiguration.add_member(:query_results_s3_access_grants_configuration, Shapes::ShapeRef.new(shape: QueryResultsS3AccessGrantsConfiguration, location_name: "QueryResultsS3AccessGrantsConfiguration"))
|
1295
1320
|
WorkGroupConfiguration.struct_class = Types::WorkGroupConfiguration
|
1296
1321
|
|
1297
1322
|
WorkGroupConfigurationUpdates.add_member(:enforce_work_group_configuration, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "EnforceWorkGroupConfiguration"))
|
@@ -1306,6 +1331,7 @@ module Aws::Athena
|
|
1306
1331
|
WorkGroupConfigurationUpdates.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ExecutionRole"))
|
1307
1332
|
WorkGroupConfigurationUpdates.add_member(:customer_content_encryption_configuration, Shapes::ShapeRef.new(shape: CustomerContentEncryptionConfiguration, location_name: "CustomerContentEncryptionConfiguration"))
|
1308
1333
|
WorkGroupConfigurationUpdates.add_member(:enable_minimum_encryption_configuration, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "EnableMinimumEncryptionConfiguration"))
|
1334
|
+
WorkGroupConfigurationUpdates.add_member(:query_results_s3_access_grants_configuration, Shapes::ShapeRef.new(shape: QueryResultsS3AccessGrantsConfiguration, location_name: "QueryResultsS3AccessGrantsConfiguration"))
|
1309
1335
|
WorkGroupConfigurationUpdates.struct_class = Types::WorkGroupConfigurationUpdates
|
1310
1336
|
|
1311
1337
|
WorkGroupNamesList.member = Shapes::ShapeRef.new(shape: WorkGroupName)
|
@@ -1315,6 +1341,7 @@ module Aws::Athena
|
|
1315
1341
|
WorkGroupSummary.add_member(:description, Shapes::ShapeRef.new(shape: WorkGroupDescriptionString, location_name: "Description"))
|
1316
1342
|
WorkGroupSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Date, location_name: "CreationTime"))
|
1317
1343
|
WorkGroupSummary.add_member(:engine_version, Shapes::ShapeRef.new(shape: EngineVersion, location_name: "EngineVersion"))
|
1344
|
+
WorkGroupSummary.add_member(:identity_center_application_arn, Shapes::ShapeRef.new(shape: IdentityCenterApplicationArn, location_name: "IdentityCenterApplicationArn"))
|
1318
1345
|
WorkGroupSummary.struct_class = Types::WorkGroupSummary
|
1319
1346
|
|
1320
1347
|
WorkGroupsList.member = Shapes::ShapeRef.new(shape: WorkGroupSummary)
|
data/lib/aws-sdk-athena/types.rb
CHANGED
@@ -541,7 +541,7 @@ module Aws::Athena
|
|
541
541
|
# @return [Integer]
|
542
542
|
#
|
543
543
|
# @!attribute [rw] nullable
|
544
|
-
#
|
544
|
+
# Unsupported constraint. This value always shows as `UNKNOWN`.
|
545
545
|
# @return [String]
|
546
546
|
#
|
547
547
|
# @!attribute [rw] case_sensitive
|
@@ -1516,10 +1516,16 @@ module Aws::Athena
|
|
1516
1516
|
# The name of the data catalog to return.
|
1517
1517
|
# @return [String]
|
1518
1518
|
#
|
1519
|
+
# @!attribute [rw] work_group
|
1520
|
+
# The name of the workgroup. Required if making an IAM Identity Center
|
1521
|
+
# request.
|
1522
|
+
# @return [String]
|
1523
|
+
#
|
1519
1524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetDataCatalogInput AWS API Documentation
|
1520
1525
|
#
|
1521
1526
|
class GetDataCatalogInput < Struct.new(
|
1522
|
-
:name
|
1527
|
+
:name,
|
1528
|
+
:work_group)
|
1523
1529
|
SENSITIVE = []
|
1524
1530
|
include Aws::Structure
|
1525
1531
|
end
|
@@ -1544,11 +1550,18 @@ module Aws::Athena
|
|
1544
1550
|
# The name of the database to return.
|
1545
1551
|
# @return [String]
|
1546
1552
|
#
|
1553
|
+
# @!attribute [rw] work_group
|
1554
|
+
# The name of the workgroup for which the metadata is being fetched.
|
1555
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
1556
|
+
# Catalog.
|
1557
|
+
# @return [String]
|
1558
|
+
#
|
1547
1559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetDatabaseInput AWS API Documentation
|
1548
1560
|
#
|
1549
1561
|
class GetDatabaseInput < Struct.new(
|
1550
1562
|
:catalog_name,
|
1551
|
-
:database_name
|
1563
|
+
:database_name,
|
1564
|
+
:work_group)
|
1552
1565
|
SENSITIVE = []
|
1553
1566
|
include Aws::Structure
|
1554
1567
|
end
|
@@ -1850,12 +1863,19 @@ module Aws::Athena
|
|
1850
1863
|
# The name of the table for which metadata is returned.
|
1851
1864
|
# @return [String]
|
1852
1865
|
#
|
1866
|
+
# @!attribute [rw] work_group
|
1867
|
+
# The name of the workgroup for which the metadata is being fetched.
|
1868
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
1869
|
+
# Catalog.
|
1870
|
+
# @return [String]
|
1871
|
+
#
|
1853
1872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetTableMetadataInput AWS API Documentation
|
1854
1873
|
#
|
1855
1874
|
class GetTableMetadataInput < Struct.new(
|
1856
1875
|
:catalog_name,
|
1857
1876
|
:database_name,
|
1858
|
-
:table_name
|
1877
|
+
:table_name,
|
1878
|
+
:work_group)
|
1859
1879
|
SENSITIVE = []
|
1860
1880
|
include Aws::Structure
|
1861
1881
|
end
|
@@ -1896,6 +1916,26 @@ module Aws::Athena
|
|
1896
1916
|
include Aws::Structure
|
1897
1917
|
end
|
1898
1918
|
|
1919
|
+
# Specifies whether the workgroup is IAM Identity Center supported.
|
1920
|
+
#
|
1921
|
+
# @!attribute [rw] enable_identity_center
|
1922
|
+
# Specifies whether the workgroup is IAM Identity Center supported.
|
1923
|
+
# @return [Boolean]
|
1924
|
+
#
|
1925
|
+
# @!attribute [rw] identity_center_instance_arn
|
1926
|
+
# The IAM Identity Center instance ARN that the workgroup associates
|
1927
|
+
# to.
|
1928
|
+
# @return [String]
|
1929
|
+
#
|
1930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/IdentityCenterConfiguration AWS API Documentation
|
1931
|
+
#
|
1932
|
+
class IdentityCenterConfiguration < Struct.new(
|
1933
|
+
:enable_identity_center,
|
1934
|
+
:identity_center_instance_arn)
|
1935
|
+
SENSITIVE = []
|
1936
|
+
include Aws::Structure
|
1937
|
+
end
|
1938
|
+
|
1899
1939
|
# @!attribute [rw] work_group
|
1900
1940
|
# The name of the Spark enabled workgroup to import the notebook to.
|
1901
1941
|
# @return [String]
|
@@ -1905,7 +1945,8 @@ module Aws::Athena
|
|
1905
1945
|
# @return [String]
|
1906
1946
|
#
|
1907
1947
|
# @!attribute [rw] payload
|
1908
|
-
# The notebook content to be imported.
|
1948
|
+
# The notebook content to be imported. The payload must be in `ipynb`
|
1949
|
+
# format.
|
1909
1950
|
# @return [String]
|
1910
1951
|
#
|
1911
1952
|
# @!attribute [rw] type
|
@@ -1913,6 +1954,11 @@ module Aws::Athena
|
|
1913
1954
|
# `IPYNB`.
|
1914
1955
|
# @return [String]
|
1915
1956
|
#
|
1957
|
+
# @!attribute [rw] notebook_s3_location_uri
|
1958
|
+
# A URI that specifies the Amazon S3 location of a notebook file in
|
1959
|
+
# `ipynb` format.
|
1960
|
+
# @return [String]
|
1961
|
+
#
|
1916
1962
|
# @!attribute [rw] client_request_token
|
1917
1963
|
# A unique case-sensitive string used to ensure the request to import
|
1918
1964
|
# the notebook is idempotent (executes only once).
|
@@ -1931,6 +1977,7 @@ module Aws::Athena
|
|
1931
1977
|
:name,
|
1932
1978
|
:payload,
|
1933
1979
|
:type,
|
1980
|
+
:notebook_s3_location_uri,
|
1934
1981
|
:client_request_token)
|
1935
1982
|
SENSITIVE = []
|
1936
1983
|
include Aws::Structure
|
@@ -2139,11 +2186,17 @@ module Aws::Athena
|
|
2139
2186
|
# Specifies the maximum number of data catalogs to return.
|
2140
2187
|
# @return [Integer]
|
2141
2188
|
#
|
2189
|
+
# @!attribute [rw] work_group
|
2190
|
+
# The name of the workgroup. Required if making an IAM Identity Center
|
2191
|
+
# request.
|
2192
|
+
# @return [String]
|
2193
|
+
#
|
2142
2194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListDataCatalogsInput AWS API Documentation
|
2143
2195
|
#
|
2144
2196
|
class ListDataCatalogsInput < Struct.new(
|
2145
2197
|
:next_token,
|
2146
|
-
:max_results
|
2198
|
+
:max_results,
|
2199
|
+
:work_group)
|
2147
2200
|
SENSITIVE = []
|
2148
2201
|
include Aws::Structure
|
2149
2202
|
end
|
@@ -2183,12 +2236,19 @@ module Aws::Athena
|
|
2183
2236
|
# Specifies the maximum number of results to return.
|
2184
2237
|
# @return [Integer]
|
2185
2238
|
#
|
2239
|
+
# @!attribute [rw] work_group
|
2240
|
+
# The name of the workgroup for which the metadata is being fetched.
|
2241
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
2242
|
+
# Catalog.
|
2243
|
+
# @return [String]
|
2244
|
+
#
|
2186
2245
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListDatabasesInput AWS API Documentation
|
2187
2246
|
#
|
2188
2247
|
class ListDatabasesInput < Struct.new(
|
2189
2248
|
:catalog_name,
|
2190
2249
|
:next_token,
|
2191
|
-
:max_results
|
2250
|
+
:max_results,
|
2251
|
+
:work_group)
|
2192
2252
|
SENSITIVE = []
|
2193
2253
|
include Aws::Structure
|
2194
2254
|
end
|
@@ -2648,6 +2708,12 @@ module Aws::Athena
|
|
2648
2708
|
# Specifies the maximum number of results to return.
|
2649
2709
|
# @return [Integer]
|
2650
2710
|
#
|
2711
|
+
# @!attribute [rw] work_group
|
2712
|
+
# The name of the workgroup for which the metadata is being fetched.
|
2713
|
+
# Required if requesting an IAM Identity Center enabled Glue Data
|
2714
|
+
# Catalog.
|
2715
|
+
# @return [String]
|
2716
|
+
#
|
2651
2717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListTableMetadataInput AWS API Documentation
|
2652
2718
|
#
|
2653
2719
|
class ListTableMetadataInput < Struct.new(
|
@@ -2655,7 +2721,8 @@ module Aws::Athena
|
|
2655
2721
|
:database_name,
|
2656
2722
|
:expression,
|
2657
2723
|
:next_token,
|
2658
|
-
:max_results
|
2724
|
+
:max_results,
|
2725
|
+
:work_group)
|
2659
2726
|
SENSITIVE = []
|
2660
2727
|
include Aws::Structure
|
2661
2728
|
end
|
@@ -3022,6 +3089,11 @@ module Aws::Athena
|
|
3022
3089
|
# The kind of query statement that was run.
|
3023
3090
|
# @return [String]
|
3024
3091
|
#
|
3092
|
+
# @!attribute [rw] query_results_s3_access_grants_configuration
|
3093
|
+
# Specifies whether Amazon S3 access grants are enabled for query
|
3094
|
+
# results.
|
3095
|
+
# @return [Types::QueryResultsS3AccessGrantsConfiguration]
|
3096
|
+
#
|
3025
3097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/QueryExecution AWS API Documentation
|
3026
3098
|
#
|
3027
3099
|
class QueryExecution < Struct.new(
|
@@ -3036,7 +3108,8 @@ module Aws::Athena
|
|
3036
3108
|
:work_group,
|
3037
3109
|
:engine_version,
|
3038
3110
|
:execution_parameters,
|
3039
|
-
:substatement_type
|
3111
|
+
:substatement_type,
|
3112
|
+
:query_results_s3_access_grants_configuration)
|
3040
3113
|
SENSITIVE = []
|
3041
3114
|
include Aws::Structure
|
3042
3115
|
end
|
@@ -3185,6 +3258,34 @@ module Aws::Athena
|
|
3185
3258
|
include Aws::Structure
|
3186
3259
|
end
|
3187
3260
|
|
3261
|
+
# Specifies whether Amazon S3 access grants are enabled for query
|
3262
|
+
# results.
|
3263
|
+
#
|
3264
|
+
# @!attribute [rw] enable_s3_access_grants
|
3265
|
+
# Specifies whether Amazon S3 access grants are enabled for query
|
3266
|
+
# results.
|
3267
|
+
# @return [Boolean]
|
3268
|
+
#
|
3269
|
+
# @!attribute [rw] create_user_level_prefix
|
3270
|
+
# When enabled, appends the user ID as an Amazon S3 path prefix to the
|
3271
|
+
# query result output location.
|
3272
|
+
# @return [Boolean]
|
3273
|
+
#
|
3274
|
+
# @!attribute [rw] authentication_type
|
3275
|
+
# The authentication type used for Amazon S3 access grants. Currently,
|
3276
|
+
# only `DIRECTORY_IDENTITY` is supported.
|
3277
|
+
# @return [String]
|
3278
|
+
#
|
3279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/QueryResultsS3AccessGrantsConfiguration AWS API Documentation
|
3280
|
+
#
|
3281
|
+
class QueryResultsS3AccessGrantsConfiguration < Struct.new(
|
3282
|
+
:enable_s3_access_grants,
|
3283
|
+
:create_user_level_prefix,
|
3284
|
+
:authentication_type)
|
3285
|
+
SENSITIVE = []
|
3286
|
+
include Aws::Structure
|
3287
|
+
end
|
3288
|
+
|
3188
3289
|
# The query execution timeline, statistics on input and output rows and
|
3189
3290
|
# bytes, and the different query stages that form the query execution
|
3190
3291
|
# plan.
|
@@ -3736,8 +3837,10 @@ module Aws::Athena
|
|
3736
3837
|
# Contains session configuration information.
|
3737
3838
|
#
|
3738
3839
|
# @!attribute [rw] execution_role
|
3739
|
-
# The ARN of the execution role used
|
3740
|
-
#
|
3840
|
+
# The ARN of the execution role used to access user resources for
|
3841
|
+
# Spark sessions and Identity Center enabled workgroups. This property
|
3842
|
+
# applies only to Spark enabled workgroups and Identity Center enabled
|
3843
|
+
# workgroups.
|
3741
3844
|
# @return [String]
|
3742
3845
|
#
|
3743
3846
|
# @!attribute [rw] working_directory
|
@@ -3960,8 +4063,11 @@ module Aws::Athena
|
|
3960
4063
|
# A unique case-sensitive string used to ensure the request to create
|
3961
4064
|
# the query is idempotent (executes only once). If another
|
3962
4065
|
# `StartQueryExecution` request is received, the same response is
|
3963
|
-
# returned and another query is not created.
|
3964
|
-
#
|
4066
|
+
# returned and another query is not created. An error is returned if a
|
4067
|
+
# parameter, such as `QueryString`, has changed. A call to
|
4068
|
+
# `StartQueryExecution` that uses a previous client request token
|
4069
|
+
# returns the same `QueryExecutionId` even if the requester doesn't
|
4070
|
+
# have permission on the tables specified in `QueryString`.
|
3965
4071
|
#
|
3966
4072
|
# This token is listed as not required because Amazon Web Services
|
3967
4073
|
# SDKs (for example the Amazon Web Services SDK for Java)
|
@@ -4748,6 +4854,11 @@ module Aws::Athena
|
|
4748
4854
|
# The date and time the workgroup was created.
|
4749
4855
|
# @return [Time]
|
4750
4856
|
#
|
4857
|
+
# @!attribute [rw] identity_center_application_arn
|
4858
|
+
# The ARN of the IAM Identity Center enabled application associated
|
4859
|
+
# with the workgroup.
|
4860
|
+
# @return [String]
|
4861
|
+
#
|
4751
4862
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/WorkGroup AWS API Documentation
|
4752
4863
|
#
|
4753
4864
|
class WorkGroup < Struct.new(
|
@@ -4755,7 +4866,8 @@ module Aws::Athena
|
|
4755
4866
|
:state,
|
4756
4867
|
:configuration,
|
4757
4868
|
:description,
|
4758
|
-
:creation_time
|
4869
|
+
:creation_time,
|
4870
|
+
:identity_center_application_arn)
|
4759
4871
|
SENSITIVE = []
|
4760
4872
|
include Aws::Structure
|
4761
4873
|
end
|
@@ -4835,8 +4947,11 @@ module Aws::Athena
|
|
4835
4947
|
# @return [String]
|
4836
4948
|
#
|
4837
4949
|
# @!attribute [rw] execution_role
|
4838
|
-
#
|
4839
|
-
#
|
4950
|
+
# The ARN of the execution role used to access user resources for
|
4951
|
+
# Spark sessions and IAM Identity Center enabled workgroups. This
|
4952
|
+
# property applies only to Spark enabled workgroups and IAM Identity
|
4953
|
+
# Center enabled workgroups. The property is required for IAM Identity
|
4954
|
+
# Center enabled workgroups.
|
4840
4955
|
# @return [String]
|
4841
4956
|
#
|
4842
4957
|
# @!attribute [rw] customer_content_encryption_configuration
|
@@ -4858,6 +4973,15 @@ module Aws::Athena
|
|
4858
4973
|
# workgroup configuration for encryption is used.
|
4859
4974
|
# @return [Boolean]
|
4860
4975
|
#
|
4976
|
+
# @!attribute [rw] identity_center_configuration
|
4977
|
+
# Specifies whether the workgroup is IAM Identity Center supported.
|
4978
|
+
# @return [Types::IdentityCenterConfiguration]
|
4979
|
+
#
|
4980
|
+
# @!attribute [rw] query_results_s3_access_grants_configuration
|
4981
|
+
# Specifies whether Amazon S3 access grants are enabled for query
|
4982
|
+
# results.
|
4983
|
+
# @return [Types::QueryResultsS3AccessGrantsConfiguration]
|
4984
|
+
#
|
4861
4985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/WorkGroupConfiguration AWS API Documentation
|
4862
4986
|
#
|
4863
4987
|
class WorkGroupConfiguration < Struct.new(
|
@@ -4870,7 +4994,9 @@ module Aws::Athena
|
|
4870
4994
|
:additional_configuration,
|
4871
4995
|
:execution_role,
|
4872
4996
|
:customer_content_encryption_configuration,
|
4873
|
-
:enable_minimum_encryption_configuration
|
4997
|
+
:enable_minimum_encryption_configuration,
|
4998
|
+
:identity_center_configuration,
|
4999
|
+
:query_results_s3_access_grants_configuration)
|
4874
5000
|
SENSITIVE = []
|
4875
5001
|
include Aws::Structure
|
4876
5002
|
end
|
@@ -4948,8 +5074,10 @@ module Aws::Athena
|
|
4948
5074
|
# @return [String]
|
4949
5075
|
#
|
4950
5076
|
# @!attribute [rw] execution_role
|
4951
|
-
# The ARN of the execution role used to access user resources
|
4952
|
-
#
|
5077
|
+
# The ARN of the execution role used to access user resources for
|
5078
|
+
# Spark sessions and Identity Center enabled workgroups. This property
|
5079
|
+
# applies only to Spark enabled workgroups and Identity Center enabled
|
5080
|
+
# workgroups.
|
4953
5081
|
# @return [String]
|
4954
5082
|
#
|
4955
5083
|
# @!attribute [rw] customer_content_encryption_configuration
|
@@ -4973,6 +5101,11 @@ module Aws::Athena
|
|
4973
5101
|
# workgroup configuration for encryption is used.
|
4974
5102
|
# @return [Boolean]
|
4975
5103
|
#
|
5104
|
+
# @!attribute [rw] query_results_s3_access_grants_configuration
|
5105
|
+
# Specifies whether Amazon S3 access grants are enabled for query
|
5106
|
+
# results.
|
5107
|
+
# @return [Types::QueryResultsS3AccessGrantsConfiguration]
|
5108
|
+
#
|
4976
5109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/WorkGroupConfigurationUpdates AWS API Documentation
|
4977
5110
|
#
|
4978
5111
|
class WorkGroupConfigurationUpdates < Struct.new(
|
@@ -4987,7 +5120,8 @@ module Aws::Athena
|
|
4987
5120
|
:additional_configuration,
|
4988
5121
|
:execution_role,
|
4989
5122
|
:customer_content_encryption_configuration,
|
4990
|
-
:enable_minimum_encryption_configuration
|
5123
|
+
:enable_minimum_encryption_configuration,
|
5124
|
+
:query_results_s3_access_grants_configuration)
|
4991
5125
|
SENSITIVE = []
|
4992
5126
|
include Aws::Structure
|
4993
5127
|
end
|
@@ -5017,6 +5151,11 @@ module Aws::Athena
|
|
5017
5151
|
# preview engine regardless of this setting.
|
5018
5152
|
# @return [Types::EngineVersion]
|
5019
5153
|
#
|
5154
|
+
# @!attribute [rw] identity_center_application_arn
|
5155
|
+
# The ARN of the IAM Identity Center enabled application associated
|
5156
|
+
# with the workgroup.
|
5157
|
+
# @return [String]
|
5158
|
+
#
|
5020
5159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/WorkGroupSummary AWS API Documentation
|
5021
5160
|
#
|
5022
5161
|
class WorkGroupSummary < Struct.new(
|
@@ -5024,7 +5163,8 @@ module Aws::Athena
|
|
5024
5163
|
:state,
|
5025
5164
|
:description,
|
5026
5165
|
:creation_time,
|
5027
|
-
:engine_version
|
5166
|
+
:engine_version,
|
5167
|
+
:identity_center_application_arn)
|
5028
5168
|
SENSITIVE = []
|
5029
5169
|
include Aws::Structure
|
5030
5170
|
end
|
data/lib/aws-sdk-athena.rb
CHANGED
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.
|
4
|
+
version: 1.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -72,7 +72,7 @@ licenses:
|
|
72
72
|
metadata:
|
73
73
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-athena
|
74
74
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-athena/CHANGELOG.md
|
75
|
-
post_install_message:
|
75
|
+
post_install_message:
|
76
76
|
rdoc_options: []
|
77
77
|
require_paths:
|
78
78
|
- lib
|
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
90
|
+
rubygems_version: 3.4.10
|
91
|
+
signing_key:
|
92
92
|
specification_version: 4
|
93
93
|
summary: AWS SDK for Ruby - Amazon Athena
|
94
94
|
test_files: []
|