aws-sdk-athena 1.112.0 → 1.113.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.
data/sig/types.rbs CHANGED
@@ -133,6 +133,20 @@ module Aws::Athena
133
133
  SENSITIVE: []
134
134
  end
135
135
 
136
+ class Classification
137
+ attr_accessor name: ::String
138
+ attr_accessor properties: ::Hash[::String, ::String]
139
+ SENSITIVE: []
140
+ end
141
+
142
+ class CloudWatchLoggingConfiguration
143
+ attr_accessor enabled: bool
144
+ attr_accessor log_group: ::String
145
+ attr_accessor log_stream_name_prefix: ::String
146
+ attr_accessor log_types: ::Hash[::String, ::Array[::String]]
147
+ SENSITIVE: []
148
+ end
149
+
136
150
  class Column
137
151
  attr_accessor name: ::String
138
152
  attr_accessor type: ::String
@@ -341,6 +355,7 @@ module Aws::Athena
341
355
  attr_accessor default_executor_dpu_size: ::Integer
342
356
  attr_accessor additional_configs: ::Hash[::String, ::String]
343
357
  attr_accessor spark_properties: ::Hash[::String, ::String]
358
+ attr_accessor classifications: ::Array[Types::Classification]
344
359
  SENSITIVE: []
345
360
  end
346
361
 
@@ -522,6 +537,28 @@ module Aws::Athena
522
537
  SENSITIVE: []
523
538
  end
524
539
 
540
+ class GetResourceDashboardRequest
541
+ attr_accessor resource_arn: ::String
542
+ SENSITIVE: []
543
+ end
544
+
545
+ class GetResourceDashboardResponse
546
+ attr_accessor url: ::String
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class GetSessionEndpointRequest
551
+ attr_accessor session_id: ::String
552
+ SENSITIVE: []
553
+ end
554
+
555
+ class GetSessionEndpointResponse
556
+ attr_accessor endpoint_url: ::String
557
+ attr_accessor auth_token: ::String
558
+ attr_accessor auth_token_expiration_time: ::Time
559
+ SENSITIVE: []
560
+ end
561
+
525
562
  class GetSessionRequest
526
563
  attr_accessor session_id: ::String
527
564
  SENSITIVE: []
@@ -534,6 +571,7 @@ module Aws::Athena
534
571
  attr_accessor engine_version: ::String
535
572
  attr_accessor engine_configuration: Types::EngineConfiguration
536
573
  attr_accessor notebook_version: ::String
574
+ attr_accessor monitoring_configuration: Types::MonitoringConfiguration
537
575
  attr_accessor session_configuration: Types::SessionConfiguration
538
576
  attr_accessor status: Types::SessionStatus
539
577
  attr_accessor statistics: Types::SessionStatistics
@@ -819,6 +857,12 @@ module Aws::Athena
819
857
  SENSITIVE: []
820
858
  end
821
859
 
860
+ class ManagedLoggingConfiguration
861
+ attr_accessor enabled: bool
862
+ attr_accessor kms_key: ::String
863
+ SENSITIVE: []
864
+ end
865
+
822
866
  class ManagedQueryResultsConfiguration
823
867
  attr_accessor enabled: bool
824
868
  attr_accessor encryption_configuration: Types::ManagedQueryResultsEncryptionConfiguration
@@ -842,6 +886,13 @@ module Aws::Athena
842
886
  SENSITIVE: []
843
887
  end
844
888
 
889
+ class MonitoringConfiguration
890
+ attr_accessor cloud_watch_logging_configuration: Types::CloudWatchLoggingConfiguration
891
+ attr_accessor managed_logging_configuration: Types::ManagedLoggingConfiguration
892
+ attr_accessor s3_logging_configuration: Types::S3LoggingConfiguration
893
+ SENSITIVE: []
894
+ end
895
+
845
896
  class NamedQuery
846
897
  attr_accessor name: ::String
847
898
  attr_accessor description: ::String
@@ -926,6 +977,7 @@ module Aws::Athena
926
977
  attr_accessor query_planning_time_in_millis: ::Integer
927
978
  attr_accessor service_processing_time_in_millis: ::Integer
928
979
  attr_accessor result_reuse_information: Types::ResultReuseInformation
980
+ attr_accessor dpu_count: ::Float
929
981
  SENSITIVE: []
930
982
  end
931
983
 
@@ -1049,6 +1101,13 @@ module Aws::Athena
1049
1101
  SENSITIVE: []
1050
1102
  end
1051
1103
 
1104
+ class S3LoggingConfiguration
1105
+ attr_accessor enabled: bool
1106
+ attr_accessor kms_key: ::String
1107
+ attr_accessor log_location: ::String
1108
+ SENSITIVE: []
1109
+ end
1110
+
1052
1111
  class SessionAlreadyExistsException
1053
1112
  attr_accessor message: ::String
1054
1113
  SENSITIVE: []
@@ -1058,6 +1117,7 @@ module Aws::Athena
1058
1117
  attr_accessor execution_role: ::String
1059
1118
  attr_accessor working_directory: ::String
1060
1119
  attr_accessor idle_timeout_seconds: ::Integer
1120
+ attr_accessor session_idle_timeout_in_minutes: ::Integer
1061
1121
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
1062
1122
  SENSITIVE: []
1063
1123
  end
@@ -1109,6 +1169,7 @@ module Aws::Athena
1109
1169
  attr_accessor work_group: ::String
1110
1170
  attr_accessor execution_parameters: ::Array[::String]
1111
1171
  attr_accessor result_reuse_configuration: Types::ResultReuseConfiguration
1172
+ attr_accessor engine_configuration: Types::EngineConfiguration
1112
1173
  SENSITIVE: []
1113
1174
  end
1114
1175
 
@@ -1121,9 +1182,13 @@ module Aws::Athena
1121
1182
  attr_accessor description: ::String
1122
1183
  attr_accessor work_group: ::String
1123
1184
  attr_accessor engine_configuration: Types::EngineConfiguration
1185
+ attr_accessor execution_role: ::String
1186
+ attr_accessor monitoring_configuration: Types::MonitoringConfiguration
1124
1187
  attr_accessor notebook_version: ::String
1125
1188
  attr_accessor session_idle_timeout_in_minutes: ::Integer
1126
1189
  attr_accessor client_request_token: ::String
1190
+ attr_accessor tags: ::Array[Types::Tag]
1191
+ attr_accessor copy_work_group_tags: bool
1127
1192
  SENSITIVE: []
1128
1193
  end
1129
1194
 
@@ -1318,6 +1383,8 @@ module Aws::Athena
1318
1383
  attr_accessor engine_version: Types::EngineVersion
1319
1384
  attr_accessor additional_configuration: ::String
1320
1385
  attr_accessor execution_role: ::String
1386
+ attr_accessor monitoring_configuration: Types::MonitoringConfiguration
1387
+ attr_accessor engine_configuration: Types::EngineConfiguration
1321
1388
  attr_accessor customer_content_encryption_configuration: Types::CustomerContentEncryptionConfiguration
1322
1389
  attr_accessor enable_minimum_encryption_configuration: bool
1323
1390
  attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
@@ -1340,6 +1407,8 @@ module Aws::Athena
1340
1407
  attr_accessor customer_content_encryption_configuration: Types::CustomerContentEncryptionConfiguration
1341
1408
  attr_accessor enable_minimum_encryption_configuration: bool
1342
1409
  attr_accessor query_results_s3_access_grants_configuration: Types::QueryResultsS3AccessGrantsConfiguration
1410
+ attr_accessor monitoring_configuration: Types::MonitoringConfiguration
1411
+ attr_accessor engine_configuration: Types::EngineConfiguration
1343
1412
  SENSITIVE: []
1344
1413
  end
1345
1414
 
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.112.0
4
+ version: 1.113.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement