aws-sdk-athena 1.116.0 → 1.117.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: 8f957b9050defca30794e81aa5eaec28ed31e2ac89d364c0fc77ee3b1426bfa8
4
- data.tar.gz: 413f7e2468e60e6328b22f4929e59830970c8c7f903857c4f0b51b70d1bbb39d
3
+ metadata.gz: 4d0afdbf9e2609cc28608a98ff0c758fcb3eb894532d0d17f5ed07e442ffe92c
4
+ data.tar.gz: 916211dd5c5c696a4d063c54653d748acd7a31486ea92c4cbca77b8a9d2804fc
5
5
  SHA512:
6
- metadata.gz: 82b417c496b78fe9a0dca98f7e920b39039fe9c8d3da33628b63c6e3c1caf94ff96dc2ae7395496a99d927731706732748bbfedde7e728e377ec1d8a96fc28c3
7
- data.tar.gz: 77dbc554b6a7904a9c1e90942737da23869166536ca18691e1464b32ca0ecb58ded6d9c545515b6821d1992b1bbe6d1ff9b94ff4d64806090117b83d446f32af
6
+ metadata.gz: 814eb6c6c8f6bdca87a94529f8ae30b40cc98263f3430c92e2ad3b92d70827fae0eb193341a59cb9641b0b8d53371cbf83d279a6ea11c1a06b487e7ce4ea7fc2
7
+ data.tar.gz: 0a3e06bb6a7703da2ce0beaa53666b466bf4bca07319a879c11ea3fce49a2c2395973f31ad7ccf91836f5590570b6916ee4b8f968fe4866d042670099c53a86c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.117.0 (2026-02-05)
5
+ ------------------
6
+
7
+ * Feature - Reduces the minimum TargetDpus to create or update capacity reservations from 24 to 4.
8
+
4
9
  1.116.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.116.0
1
+ 1.117.0
@@ -3372,8 +3372,17 @@ module Aws::Athena
3372
3372
  # Specifies the query result reuse behavior for the query.
3373
3373
  #
3374
3374
  # @option params [Types::EngineConfiguration] :engine_configuration
3375
- # Contains data processing unit (DPU) configuration settings and
3376
- # parameter mappings for a notebook engine.
3375
+ # The engine configuration for the workgroup, which includes the
3376
+ # minimum/maximum number of Data Processing Units (DPU) that queries
3377
+ # should use when running in provisioned capacity. If not specified,
3378
+ # Athena uses default values (Default value for min is 4 and for max is
3379
+ # Minimum of 124 and allocated DPUs).
3380
+ #
3381
+ # To specify minimum and maximum DPU values for Capacity Reservations
3382
+ # queries, the workgroup containing `EngineConfiguration` should have
3383
+ # the following values: The name of the `Classifications` should be
3384
+ # `athena-query-engine-properties`, with the only allowed properties as
3385
+ # `max-dpu-count` and `min-dpu-count`.
3377
3386
  #
3378
3387
  # @return [Types::StartQueryExecutionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3379
3388
  #
@@ -4122,7 +4131,7 @@ module Aws::Athena
4122
4131
  tracer: tracer
4123
4132
  )
4124
4133
  context[:gem_name] = 'aws-sdk-athena'
4125
- context[:gem_version] = '1.116.0'
4134
+ context[:gem_version] = '1.117.0'
4126
4135
  Seahorse::Client::Request.new(handlers, context)
4127
4136
  end
4128
4137
 
@@ -1428,8 +1428,16 @@ module Aws::Athena
1428
1428
  include Aws::Structure
1429
1429
  end
1430
1430
 
1431
- # Contains data processing unit (DPU) configuration settings and
1432
- # parameter mappings for a notebook engine.
1431
+ # The engine configuration for the workgroup, which includes the
1432
+ # minimum/maximum number of Data Processing Units (DPU) that queries
1433
+ # should use when running in provisioned capacity. If not specified,
1434
+ # Athena uses default values (Default value for min is 4 and for max is
1435
+ # Minimum of 124 and allocated DPUs).
1436
+ #
1437
+ # To specify DPU values for PC queries the WG containing
1438
+ # EngineConfiguration should have the following values: The name of the
1439
+ # Classifications should be `athena-query-engine-properties`, with the
1440
+ # only allowed properties as `max-dpu-count` and `min-dpu-count`.
1433
1441
  #
1434
1442
  # @!attribute [rw] coordinator_dpu_size
1435
1443
  # The number of DPUs to use for the coordinator. A coordinator is a
@@ -4589,8 +4597,17 @@ module Aws::Athena
4589
4597
  # @return [Types::ResultReuseConfiguration]
4590
4598
  #
4591
4599
  # @!attribute [rw] engine_configuration
4592
- # Contains data processing unit (DPU) configuration settings and
4593
- # parameter mappings for a notebook engine.
4600
+ # The engine configuration for the workgroup, which includes the
4601
+ # minimum/maximum number of Data Processing Units (DPU) that queries
4602
+ # should use when running in provisioned capacity. If not specified,
4603
+ # Athena uses default values (Default value for min is 4 and for max
4604
+ # is Minimum of 124 and allocated DPUs).
4605
+ #
4606
+ # To specify minimum and maximum DPU values for Capacity Reservations
4607
+ # queries, the workgroup containing `EngineConfiguration` should have
4608
+ # the following values: The name of the `Classifications` should be
4609
+ # `athena-query-engine-properties`, with the only allowed properties
4610
+ # as `max-dpu-count` and `min-dpu-count`.
4594
4611
  # @return [Types::EngineConfiguration]
4595
4612
  #
4596
4613
  # @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StartQueryExecutionInput AWS API Documentation
@@ -5475,8 +5492,16 @@ module Aws::Athena
5475
5492
  # @return [Types::MonitoringConfiguration]
5476
5493
  #
5477
5494
  # @!attribute [rw] engine_configuration
5478
- # Contains data processing unit (DPU) configuration settings and
5479
- # parameter mappings for a notebook engine.
5495
+ # The engine configuration for the workgroup, which includes the
5496
+ # minimum/maximum number of Data Processing Units (DPU) that queries
5497
+ # should use when running in provisioned capacity. If not specified,
5498
+ # Athena uses default values (Default value for min is 4 and for max
5499
+ # is Minimum of 124 and allocated DPUs).
5500
+ #
5501
+ # To specify DPU values for PC queries the WG containing
5502
+ # EngineConfiguration should have the following values: The name of
5503
+ # the Classifications should be `athena-query-engine-properties`, with
5504
+ # the only allowed properties as `max-dpu-count` and `min-dpu-count`.
5480
5505
  # @return [Types::EngineConfiguration]
5481
5506
  #
5482
5507
  # @!attribute [rw] customer_content_encryption_configuration
@@ -5646,8 +5671,16 @@ module Aws::Athena
5646
5671
  # @return [Types::MonitoringConfiguration]
5647
5672
  #
5648
5673
  # @!attribute [rw] engine_configuration
5649
- # Contains data processing unit (DPU) configuration settings and
5650
- # parameter mappings for a notebook engine.
5674
+ # The engine configuration for the workgroup, which includes the
5675
+ # minimum/maximum number of Data Processing Units (DPU) that queries
5676
+ # should use when running in provisioned capacity. If not specified,
5677
+ # Athena uses default values (Default value for min is 4 and for max
5678
+ # is Minimum of 124 and allocated DPUs).
5679
+ #
5680
+ # To specify DPU values for PC queries the WG containing
5681
+ # EngineConfiguration should have the following values: The name of
5682
+ # the Classifications should be `athena-query-engine-properties`, with
5683
+ # the only allowed properties as `max-dpu-count` and `min-dpu-count`.
5651
5684
  # @return [Types::EngineConfiguration]
5652
5685
  #
5653
5686
  # @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/WorkGroupConfigurationUpdates AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::Athena
54
54
  autoload :EndpointProvider, 'aws-sdk-athena/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-athena/endpoints'
56
56
 
57
- GEM_VERSION = '1.116.0'
57
+ GEM_VERSION = '1.117.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-athena
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.116.0
4
+ version: 1.117.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services