aws-sdk-athena 1.69.0 → 1.70.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: c2f52f266a1e28dbd160ca5af18fa887c726dccd32f938466526319e165ef0cb
4
- data.tar.gz: 5dbaa3903aafbd7dcc1d079672947b36bd0afb176aa4f04cca184ed6c5ba5b93
3
+ metadata.gz: 68e67440bddc1509347603f21e3ee3eb4fccb60051c47d4d9c01608a89145d20
4
+ data.tar.gz: 138fa7fdfe2ff8e2d803e054fdead313c9a5a06216a43ec8dfc2cbec5b5ffc22
5
5
  SHA512:
6
- metadata.gz: cbf876de04df87813510795b071e3e334fa9b0be35d47717c75c42394e01431b5d7a7aa71b9e4e8943433d6bb3a94869602017444729280d947d6f7765e53b26
7
- data.tar.gz: 3d016cf9c6d1a104867b4403ec0f5036f6224795c5082a8098bd374d10cbfc687bfd9a9c4ceeedb7d81d6be7a9882c9708062e6625d84324f0b5c64eb6d85be3
6
+ metadata.gz: efdf08522a24208d5cd004e544805b0f1aee3fee45d35397c0dc1763ef86f350ab6ca59f2f85f5cc61dc3ba89550e57d380436df3ca3050854478e436d29fd6a
7
+ data.tar.gz: b1fb8ece89b881754ff146966698f87a57282d89e8fc18b12375b7163d692035a041ad586ab45f2e592ef9bda65f4593b516ff2003ff938204d9d757bd043981
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2023-06-08)
5
+ ------------------
6
+
7
+ * Feature - You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.
8
+
4
9
  1.69.0 (2023-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.70.0
@@ -1752,6 +1752,8 @@ module Aws::Athena
1752
1752
  # resp.engine_configuration.default_executor_dpu_size #=> Integer
1753
1753
  # resp.engine_configuration.additional_configs #=> Hash
1754
1754
  # resp.engine_configuration.additional_configs["KeyString"] #=> String
1755
+ # resp.engine_configuration.spark_properties #=> Hash
1756
+ # resp.engine_configuration.spark_properties["KeyString"] #=> String
1755
1757
  # resp.notebook_version #=> String
1756
1758
  # resp.session_configuration.execution_role #=> String
1757
1759
  # resp.session_configuration.working_directory #=> String
@@ -3069,6 +3071,9 @@ module Aws::Athena
3069
3071
  # additional_configs: {
3070
3072
  # "KeyString" => "ParametersMapValue",
3071
3073
  # },
3074
+ # spark_properties: {
3075
+ # "KeyString" => "ParametersMapValue",
3076
+ # },
3072
3077
  # },
3073
3078
  # notebook_version: "NameString",
3074
3079
  # session_idle_timeout_in_minutes: 1,
@@ -3593,7 +3598,7 @@ module Aws::Athena
3593
3598
  params: params,
3594
3599
  config: config)
3595
3600
  context[:gem_name] = 'aws-sdk-athena'
3596
- context[:gem_version] = '1.69.0'
3601
+ context[:gem_version] = '1.70.0'
3597
3602
  Seahorse::Client::Request.new(handlers, context)
3598
3603
  end
3599
3604
 
@@ -581,6 +581,7 @@ module Aws::Athena
581
581
  EngineConfiguration.add_member(:max_concurrent_dpus, Shapes::ShapeRef.new(shape: MaxConcurrentDpus, required: true, location_name: "MaxConcurrentDpus"))
582
582
  EngineConfiguration.add_member(:default_executor_dpu_size, Shapes::ShapeRef.new(shape: DefaultExecutorDpuSize, location_name: "DefaultExecutorDpuSize"))
583
583
  EngineConfiguration.add_member(:additional_configs, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "AdditionalConfigs"))
584
+ EngineConfiguration.add_member(:spark_properties, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "SparkProperties"))
584
585
  EngineConfiguration.struct_class = Types::EngineConfiguration
585
586
 
586
587
  EngineVersion.add_member(:selected_engine_version, Shapes::ShapeRef.new(shape: NameString, location_name: "SelectedEngineVersion"))
@@ -889,7 +889,7 @@ module Aws::Athena
889
889
  class CreateWorkGroupOutput < Aws::EmptyStructure; end
890
890
 
891
891
  # Specifies the KMS key that is used to encrypt the user's data stores
892
- # in Athena.
892
+ # in Athena. This setting does not apply to Athena SQL workgroups.
893
893
  #
894
894
  # @!attribute [rw] kms_key
895
895
  # The KMS key that is used to encrypt the user's data stores in
@@ -1211,13 +1211,19 @@ module Aws::Athena
1211
1211
  # value of the Athena notebook ID.
1212
1212
  # @return [Hash<String,String>]
1213
1213
  #
1214
+ # @!attribute [rw] spark_properties
1215
+ # Specifies custom jar files and Spark properties for use cases like
1216
+ # cluster encryption, table formats, and general Spark tuning.
1217
+ # @return [Hash<String,String>]
1218
+ #
1214
1219
  # @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/EngineConfiguration AWS API Documentation
1215
1220
  #
1216
1221
  class EngineConfiguration < Struct.new(
1217
1222
  :coordinator_dpu_size,
1218
1223
  :max_concurrent_dpus,
1219
1224
  :default_executor_dpu_size,
1220
- :additional_configs)
1225
+ :additional_configs,
1226
+ :spark_properties)
1221
1227
  SENSITIVE = []
1222
1228
  include Aws::Structure
1223
1229
  end
@@ -4823,7 +4829,8 @@ module Aws::Athena
4823
4829
  #
4824
4830
  # @!attribute [rw] customer_content_encryption_configuration
4825
4831
  # Specifies the KMS key that is used to encrypt the user's data
4826
- # stores in Athena.
4832
+ # stores in Athena. This setting does not apply to Athena SQL
4833
+ # workgroups.
4827
4834
  # @return [Types::CustomerContentEncryptionConfiguration]
4828
4835
  #
4829
4836
  # @!attribute [rw] enable_minimum_encryption_configuration
@@ -4919,7 +4926,8 @@ module Aws::Athena
4919
4926
  # @return [Types::EngineVersion]
4920
4927
  #
4921
4928
  # @!attribute [rw] remove_customer_content_encryption_configuration
4922
- # Removes content encryption configuration for a workgroup.
4929
+ # Removes content encryption configuration from an Apache
4930
+ # Spark-enabled Athena workgroup.
4923
4931
  # @return [Boolean]
4924
4932
  #
4925
4933
  # @!attribute [rw] additional_configuration
@@ -4933,7 +4941,8 @@ module Aws::Athena
4933
4941
  #
4934
4942
  # @!attribute [rw] customer_content_encryption_configuration
4935
4943
  # Specifies the KMS key that is used to encrypt the user's data
4936
- # stores in Athena.
4944
+ # stores in Athena. This setting does not apply to Athena SQL
4945
+ # workgroups.
4937
4946
  # @return [Types::CustomerContentEncryptionConfiguration]
4938
4947
  #
4939
4948
  # @!attribute [rw] enable_minimum_encryption_configuration
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-athena/customizations'
52
52
  # @!group service
53
53
  module Aws::Athena
54
54
 
55
- GEM_VERSION = '1.69.0'
55
+ GEM_VERSION = '1.70.0'
56
56
 
57
57
  end
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.69.0
4
+ version: 1.70.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: 2023-06-02 00:00:00.000000000 Z
11
+ date: 2023-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core