aws-sdk-glue 1.199.0 → 1.200.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: b18d406971d62cb39cefa341e05454f61e45e32d7fa526113aae787c45c8bc56
4
- data.tar.gz: 4cba1a0f19bc9a640e3a54928bb63f0a79ff86f72d0f2210e6dea0993f1a9abd
3
+ metadata.gz: e977c6324a34a18feb97ff7fa7f67cca488c6e29844b8b4e4c715b5b3d56a56c
4
+ data.tar.gz: 779c4084264ba0a204c0db68bc3fa5ba9733def32fa3afe012305447f9a7c933
5
5
  SHA512:
6
- metadata.gz: a274f86d6fdaf3f93129a78a4ae7c57e65e573ba17b76f5f78342566e9fd8534ef79a64dd764371ffe03f839d913087c2008be6f9c8c04b818a3613d3a85ceb1
7
- data.tar.gz: 0c62a828731c3bfe3011bbb875bf86689aaae5ea89e33e86de65c8a32fbf3c2b9e797f57c7bc5b9e27f9df41d27707e08cd38badd308b23d3b6bb66440ab879a
6
+ metadata.gz: 22e97e24874dd46576a213881f8ac47a64ed04509cdccd0dd57b16f625b71bb41d7f476905d17a65676340a356b77028080d9acea7387cd261f1515174534772
7
+ data.tar.gz: df103bf07d67b4649879b53e07472124829ff7c819002dcf98db28ea457f9ec6e41a1e25e18953ca796a9029e57fc15ebc6d419764726becebb72ca0c02f87f0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.200.0 (2024-10-31)
5
+ ------------------
6
+
7
+ * Feature - Add schedule support for AWS Glue column statistics
8
+
4
9
  1.199.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.199.0
1
+ 1.200.0
@@ -2921,6 +2921,64 @@ module Aws::Glue
2921
2921
  req.send_request(options)
2922
2922
  end
2923
2923
 
2924
+ # Creates settings for a column statistics task.
2925
+ #
2926
+ # @option params [required, String] :database_name
2927
+ # The name of the database where the table resides.
2928
+ #
2929
+ # @option params [required, String] :table_name
2930
+ # The name of the table for which to generate column statistics.
2931
+ #
2932
+ # @option params [required, String] :role
2933
+ # The role used for running the column statistics.
2934
+ #
2935
+ # @option params [String] :schedule
2936
+ # A schedule for running the column statistics, specified in CRON
2937
+ # syntax.
2938
+ #
2939
+ # @option params [Array<String>] :column_name_list
2940
+ # A list of column names for which to run statistics.
2941
+ #
2942
+ # @option params [Float] :sample_size
2943
+ # The percentage of data to sample.
2944
+ #
2945
+ # @option params [String] :catalog_id
2946
+ # The ID of the Data Catalog in which the database resides.
2947
+ #
2948
+ # @option params [String] :security_configuration
2949
+ # Name of the security configuration that is used to encrypt CloudWatch
2950
+ # logs.
2951
+ #
2952
+ # @option params [Hash<String,String>] :tags
2953
+ # A map of tags.
2954
+ #
2955
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2956
+ #
2957
+ # @example Request syntax with placeholder values
2958
+ #
2959
+ # resp = client.create_column_statistics_task_settings({
2960
+ # database_name: "NameString", # required
2961
+ # table_name: "NameString", # required
2962
+ # role: "NameString", # required
2963
+ # schedule: "CronExpression",
2964
+ # column_name_list: ["NameString"],
2965
+ # sample_size: 1.0,
2966
+ # catalog_id: "NameString",
2967
+ # security_configuration: "NameString",
2968
+ # tags: {
2969
+ # "TagKey" => "TagValue",
2970
+ # },
2971
+ # })
2972
+ #
2973
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateColumnStatisticsTaskSettings AWS API Documentation
2974
+ #
2975
+ # @overload create_column_statistics_task_settings(params = {})
2976
+ # @param [Hash] params ({})
2977
+ def create_column_statistics_task_settings(params = {}, options = {})
2978
+ req = build_request(:create_column_statistics_task_settings, params)
2979
+ req.send_request(options)
2980
+ end
2981
+
2924
2982
  # Creates a connection definition in the Data Catalog.
2925
2983
  #
2926
2984
  # Connections used for creating federated resources require the IAM
@@ -5265,6 +5323,32 @@ module Aws::Glue
5265
5323
  req.send_request(options)
5266
5324
  end
5267
5325
 
5326
+ # Deletes settings for a column statistics task.
5327
+ #
5328
+ # @option params [required, String] :database_name
5329
+ # The name of the database where the table resides.
5330
+ #
5331
+ # @option params [required, String] :table_name
5332
+ # The name of the table for which to delete column statistics.
5333
+ #
5334
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5335
+ #
5336
+ # @example Request syntax with placeholder values
5337
+ #
5338
+ # resp = client.delete_column_statistics_task_settings({
5339
+ # database_name: "NameString", # required
5340
+ # table_name: "NameString", # required
5341
+ # })
5342
+ #
5343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteColumnStatisticsTaskSettings AWS API Documentation
5344
+ #
5345
+ # @overload delete_column_statistics_task_settings(params = {})
5346
+ # @param [Hash] params ({})
5347
+ def delete_column_statistics_task_settings(params = {}, options = {})
5348
+ req = build_request(:delete_column_statistics_task_settings, params)
5349
+ req.send_request(options)
5350
+ end
5351
+
5268
5352
  # Deletes a connection from the Data Catalog.
5269
5353
  #
5270
5354
  # @option params [String] :catalog_id
@@ -6522,6 +6606,7 @@ module Aws::Glue
6522
6606
  # resp.column_statistics_task_run.security_configuration #=> String
6523
6607
  # resp.column_statistics_task_run.number_of_workers #=> Integer
6524
6608
  # resp.column_statistics_task_run.worker_type #=> String
6609
+ # resp.column_statistics_task_run.computation_type #=> String, one of "FULL", "INCREMENTAL"
6525
6610
  # resp.column_statistics_task_run.status #=> String, one of "STARTING", "RUNNING", "SUCCEEDED", "FAILED", "STOPPED"
6526
6611
  # resp.column_statistics_task_run.creation_time #=> Time
6527
6612
  # resp.column_statistics_task_run.last_updated #=> Time
@@ -6585,6 +6670,7 @@ module Aws::Glue
6585
6670
  # resp.column_statistics_task_runs[0].security_configuration #=> String
6586
6671
  # resp.column_statistics_task_runs[0].number_of_workers #=> Integer
6587
6672
  # resp.column_statistics_task_runs[0].worker_type #=> String
6673
+ # resp.column_statistics_task_runs[0].computation_type #=> String, one of "FULL", "INCREMENTAL"
6588
6674
  # resp.column_statistics_task_runs[0].status #=> String, one of "STARTING", "RUNNING", "SUCCEEDED", "FAILED", "STOPPED"
6589
6675
  # resp.column_statistics_task_runs[0].creation_time #=> Time
6590
6676
  # resp.column_statistics_task_runs[0].last_updated #=> Time
@@ -6603,6 +6689,47 @@ module Aws::Glue
6603
6689
  req.send_request(options)
6604
6690
  end
6605
6691
 
6692
+ # Gets settings for a column statistics task.
6693
+ #
6694
+ # @option params [required, String] :database_name
6695
+ # The name of the database where the table resides.
6696
+ #
6697
+ # @option params [required, String] :table_name
6698
+ # The name of the table for which to retrieve column statistics.
6699
+ #
6700
+ # @return [Types::GetColumnStatisticsTaskSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6701
+ #
6702
+ # * {Types::GetColumnStatisticsTaskSettingsResponse#column_statistics_task_settings #column_statistics_task_settings} => Types::ColumnStatisticsTaskSettings
6703
+ #
6704
+ # @example Request syntax with placeholder values
6705
+ #
6706
+ # resp = client.get_column_statistics_task_settings({
6707
+ # database_name: "NameString", # required
6708
+ # table_name: "NameString", # required
6709
+ # })
6710
+ #
6711
+ # @example Response structure
6712
+ #
6713
+ # resp.column_statistics_task_settings.database_name #=> String
6714
+ # resp.column_statistics_task_settings.table_name #=> String
6715
+ # resp.column_statistics_task_settings.schedule.schedule_expression #=> String
6716
+ # resp.column_statistics_task_settings.schedule.state #=> String, one of "SCHEDULED", "NOT_SCHEDULED", "TRANSITIONING"
6717
+ # resp.column_statistics_task_settings.column_name_list #=> Array
6718
+ # resp.column_statistics_task_settings.column_name_list[0] #=> String
6719
+ # resp.column_statistics_task_settings.catalog_id #=> String
6720
+ # resp.column_statistics_task_settings.role #=> String
6721
+ # resp.column_statistics_task_settings.sample_size #=> Float
6722
+ # resp.column_statistics_task_settings.security_configuration #=> String
6723
+ #
6724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetColumnStatisticsTaskSettings AWS API Documentation
6725
+ #
6726
+ # @overload get_column_statistics_task_settings(params = {})
6727
+ # @param [Hash] params ({})
6728
+ def get_column_statistics_task_settings(params = {}, options = {})
6729
+ req = build_request(:get_column_statistics_task_settings, params)
6730
+ req.send_request(options)
6731
+ end
6732
+
6606
6733
  # Retrieves a connection definition from the Data Catalog.
6607
6734
  #
6608
6735
  # @option params [String] :catalog_id
@@ -15485,6 +15612,33 @@ module Aws::Glue
15485
15612
  req.send_request(options)
15486
15613
  end
15487
15614
 
15615
+ # Starts a column statistics task run schedule.
15616
+ #
15617
+ # @option params [required, String] :database_name
15618
+ # The name of the database where the table resides.
15619
+ #
15620
+ # @option params [required, String] :table_name
15621
+ # The name of the table for which to start a column statistic task run
15622
+ # schedule.
15623
+ #
15624
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
15625
+ #
15626
+ # @example Request syntax with placeholder values
15627
+ #
15628
+ # resp = client.start_column_statistics_task_run_schedule({
15629
+ # database_name: "NameString", # required
15630
+ # table_name: "NameString", # required
15631
+ # })
15632
+ #
15633
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartColumnStatisticsTaskRunSchedule AWS API Documentation
15634
+ #
15635
+ # @overload start_column_statistics_task_run_schedule(params = {})
15636
+ # @param [Hash] params ({})
15637
+ def start_column_statistics_task_run_schedule(params = {}, options = {})
15638
+ req = build_request(:start_column_statistics_task_run_schedule, params)
15639
+ req.send_request(options)
15640
+ end
15641
+
15488
15642
  # Starts a crawl using the specified crawler, regardless of what is
15489
15643
  # scheduled. If the crawler is already running, returns a
15490
15644
  # [CrawlerRunningException][1].
@@ -16191,6 +16345,33 @@ module Aws::Glue
16191
16345
  req.send_request(options)
16192
16346
  end
16193
16347
 
16348
+ # Stops a column statistics task run schedule.
16349
+ #
16350
+ # @option params [required, String] :database_name
16351
+ # The name of the database where the table resides.
16352
+ #
16353
+ # @option params [required, String] :table_name
16354
+ # The name of the table for which to stop a column statistic task run
16355
+ # schedule.
16356
+ #
16357
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
16358
+ #
16359
+ # @example Request syntax with placeholder values
16360
+ #
16361
+ # resp = client.stop_column_statistics_task_run_schedule({
16362
+ # database_name: "NameString", # required
16363
+ # table_name: "NameString", # required
16364
+ # })
16365
+ #
16366
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StopColumnStatisticsTaskRunSchedule AWS API Documentation
16367
+ #
16368
+ # @overload stop_column_statistics_task_run_schedule(params = {})
16369
+ # @param [Hash] params ({})
16370
+ def stop_column_statistics_task_run_schedule(params = {}, options = {})
16371
+ req = build_request(:stop_column_statistics_task_run_schedule, params)
16372
+ req.send_request(options)
16373
+ end
16374
+
16194
16375
  # If the specified crawler is running, stops the crawl.
16195
16376
  #
16196
16377
  # @option params [required, String] :name
@@ -16817,6 +16998,58 @@ module Aws::Glue
16817
16998
  req.send_request(options)
16818
16999
  end
16819
17000
 
17001
+ # Updates settings for a column statistics task.
17002
+ #
17003
+ # @option params [required, String] :database_name
17004
+ # The name of the database where the table resides.
17005
+ #
17006
+ # @option params [required, String] :table_name
17007
+ # The name of the table for which to generate column statistics.
17008
+ #
17009
+ # @option params [String] :role
17010
+ # The role used for running the column statistics.
17011
+ #
17012
+ # @option params [String] :schedule
17013
+ # A schedule for running the column statistics, specified in CRON
17014
+ # syntax.
17015
+ #
17016
+ # @option params [Array<String>] :column_name_list
17017
+ # A list of column names for which to run statistics.
17018
+ #
17019
+ # @option params [Float] :sample_size
17020
+ # The percentage of data to sample.
17021
+ #
17022
+ # @option params [String] :catalog_id
17023
+ # The ID of the Data Catalog in which the database resides.
17024
+ #
17025
+ # @option params [String] :security_configuration
17026
+ # Name of the security configuration that is used to encrypt CloudWatch
17027
+ # logs.
17028
+ #
17029
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
17030
+ #
17031
+ # @example Request syntax with placeholder values
17032
+ #
17033
+ # resp = client.update_column_statistics_task_settings({
17034
+ # database_name: "NameString", # required
17035
+ # table_name: "NameString", # required
17036
+ # role: "NameString",
17037
+ # schedule: "CronExpression",
17038
+ # column_name_list: ["NameString"],
17039
+ # sample_size: 1.0,
17040
+ # catalog_id: "NameString",
17041
+ # security_configuration: "NameString",
17042
+ # })
17043
+ #
17044
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateColumnStatisticsTaskSettings AWS API Documentation
17045
+ #
17046
+ # @overload update_column_statistics_task_settings(params = {})
17047
+ # @param [Hash] params ({})
17048
+ def update_column_statistics_task_settings(params = {}, options = {})
17049
+ req = build_request(:update_column_statistics_task_settings, params)
17050
+ req.send_request(options)
17051
+ end
17052
+
16820
17053
  # Updates a connection definition in the Data Catalog.
16821
17054
  #
16822
17055
  # @option params [String] :catalog_id
@@ -18223,7 +18456,7 @@ module Aws::Glue
18223
18456
  tracer: tracer
18224
18457
  )
18225
18458
  context[:gem_name] = 'aws-sdk-glue'
18226
- context[:gem_version] = '1.199.0'
18459
+ context[:gem_version] = '1.200.0'
18227
18460
  Seahorse::Client::Request.new(handlers, context)
18228
18461
  end
18229
18462
 
@@ -198,6 +198,7 @@ module Aws::Glue
198
198
  ColumnStatisticsTaskRunIdList = Shapes::ListShape.new(name: 'ColumnStatisticsTaskRunIdList')
199
199
  ColumnStatisticsTaskRunningException = Shapes::StructureShape.new(name: 'ColumnStatisticsTaskRunningException')
200
200
  ColumnStatisticsTaskRunsList = Shapes::ListShape.new(name: 'ColumnStatisticsTaskRunsList')
201
+ ColumnStatisticsTaskSettings = Shapes::StructureShape.new(name: 'ColumnStatisticsTaskSettings')
201
202
  ColumnStatisticsTaskStoppingException = Shapes::StructureShape.new(name: 'ColumnStatisticsTaskStoppingException')
202
203
  ColumnStatisticsType = Shapes::StringShape.new(name: 'ColumnStatisticsType')
203
204
  ColumnTypeString = Shapes::StringShape.new(name: 'ColumnTypeString')
@@ -209,6 +210,7 @@ module Aws::Glue
209
210
  Comparator = Shapes::StringShape.new(name: 'Comparator')
210
211
  Compatibility = Shapes::StringShape.new(name: 'Compatibility')
211
212
  CompressionType = Shapes::StringShape.new(name: 'CompressionType')
213
+ ComputationType = Shapes::StringShape.new(name: 'ComputationType')
212
214
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
213
215
  ConcurrentRunsExceededException = Shapes::StructureShape.new(name: 'ConcurrentRunsExceededException')
214
216
  Condition = Shapes::StructureShape.new(name: 'Condition')
@@ -264,6 +266,8 @@ module Aws::Glue
264
266
  CreateBlueprintResponse = Shapes::StructureShape.new(name: 'CreateBlueprintResponse')
265
267
  CreateClassifierRequest = Shapes::StructureShape.new(name: 'CreateClassifierRequest')
266
268
  CreateClassifierResponse = Shapes::StructureShape.new(name: 'CreateClassifierResponse')
269
+ CreateColumnStatisticsTaskSettingsRequest = Shapes::StructureShape.new(name: 'CreateColumnStatisticsTaskSettingsRequest')
270
+ CreateColumnStatisticsTaskSettingsResponse = Shapes::StructureShape.new(name: 'CreateColumnStatisticsTaskSettingsResponse')
267
271
  CreateConnectionRequest = Shapes::StructureShape.new(name: 'CreateConnectionRequest')
268
272
  CreateConnectionResponse = Shapes::StructureShape.new(name: 'CreateConnectionResponse')
269
273
  CreateCrawlerRequest = Shapes::StructureShape.new(name: 'CreateCrawlerRequest')
@@ -393,6 +397,8 @@ module Aws::Glue
393
397
  DeleteColumnStatisticsForPartitionResponse = Shapes::StructureShape.new(name: 'DeleteColumnStatisticsForPartitionResponse')
394
398
  DeleteColumnStatisticsForTableRequest = Shapes::StructureShape.new(name: 'DeleteColumnStatisticsForTableRequest')
395
399
  DeleteColumnStatisticsForTableResponse = Shapes::StructureShape.new(name: 'DeleteColumnStatisticsForTableResponse')
400
+ DeleteColumnStatisticsTaskSettingsRequest = Shapes::StructureShape.new(name: 'DeleteColumnStatisticsTaskSettingsRequest')
401
+ DeleteColumnStatisticsTaskSettingsResponse = Shapes::StructureShape.new(name: 'DeleteColumnStatisticsTaskSettingsResponse')
396
402
  DeleteConnectionNameList = Shapes::ListShape.new(name: 'DeleteConnectionNameList')
397
403
  DeleteConnectionRequest = Shapes::StructureShape.new(name: 'DeleteConnectionRequest')
398
404
  DeleteConnectionResponse = Shapes::StructureShape.new(name: 'DeleteConnectionResponse')
@@ -543,6 +549,8 @@ module Aws::Glue
543
549
  GetColumnStatisticsTaskRunResponse = Shapes::StructureShape.new(name: 'GetColumnStatisticsTaskRunResponse')
544
550
  GetColumnStatisticsTaskRunsRequest = Shapes::StructureShape.new(name: 'GetColumnStatisticsTaskRunsRequest')
545
551
  GetColumnStatisticsTaskRunsResponse = Shapes::StructureShape.new(name: 'GetColumnStatisticsTaskRunsResponse')
552
+ GetColumnStatisticsTaskSettingsRequest = Shapes::StructureShape.new(name: 'GetColumnStatisticsTaskSettingsRequest')
553
+ GetColumnStatisticsTaskSettingsResponse = Shapes::StructureShape.new(name: 'GetColumnStatisticsTaskSettingsResponse')
546
554
  GetConnectionRequest = Shapes::StructureShape.new(name: 'GetConnectionRequest')
547
555
  GetConnectionResponse = Shapes::StructureShape.new(name: 'GetConnectionResponse')
548
556
  GetConnectionsFilter = Shapes::StructureShape.new(name: 'GetConnectionsFilter')
@@ -1123,6 +1131,8 @@ module Aws::Glue
1123
1131
  StartBlueprintRunResponse = Shapes::StructureShape.new(name: 'StartBlueprintRunResponse')
1124
1132
  StartColumnStatisticsTaskRunRequest = Shapes::StructureShape.new(name: 'StartColumnStatisticsTaskRunRequest')
1125
1133
  StartColumnStatisticsTaskRunResponse = Shapes::StructureShape.new(name: 'StartColumnStatisticsTaskRunResponse')
1134
+ StartColumnStatisticsTaskRunScheduleRequest = Shapes::StructureShape.new(name: 'StartColumnStatisticsTaskRunScheduleRequest')
1135
+ StartColumnStatisticsTaskRunScheduleResponse = Shapes::StructureShape.new(name: 'StartColumnStatisticsTaskRunScheduleResponse')
1126
1136
  StartCrawlerRequest = Shapes::StructureShape.new(name: 'StartCrawlerRequest')
1127
1137
  StartCrawlerResponse = Shapes::StructureShape.new(name: 'StartCrawlerResponse')
1128
1138
  StartCrawlerScheduleRequest = Shapes::StructureShape.new(name: 'StartCrawlerScheduleRequest')
@@ -1163,6 +1173,8 @@ module Aws::Glue
1163
1173
  StatusDetails = Shapes::StructureShape.new(name: 'StatusDetails')
1164
1174
  StopColumnStatisticsTaskRunRequest = Shapes::StructureShape.new(name: 'StopColumnStatisticsTaskRunRequest')
1165
1175
  StopColumnStatisticsTaskRunResponse = Shapes::StructureShape.new(name: 'StopColumnStatisticsTaskRunResponse')
1176
+ StopColumnStatisticsTaskRunScheduleRequest = Shapes::StructureShape.new(name: 'StopColumnStatisticsTaskRunScheduleRequest')
1177
+ StopColumnStatisticsTaskRunScheduleResponse = Shapes::StructureShape.new(name: 'StopColumnStatisticsTaskRunScheduleResponse')
1166
1178
  StopCrawlerRequest = Shapes::StructureShape.new(name: 'StopCrawlerRequest')
1167
1179
  StopCrawlerResponse = Shapes::StructureShape.new(name: 'StopCrawlerResponse')
1168
1180
  StopCrawlerScheduleRequest = Shapes::StructureShape.new(name: 'StopCrawlerScheduleRequest')
@@ -1272,6 +1284,8 @@ module Aws::Glue
1272
1284
  UpdateColumnStatisticsForTableRequest = Shapes::StructureShape.new(name: 'UpdateColumnStatisticsForTableRequest')
1273
1285
  UpdateColumnStatisticsForTableResponse = Shapes::StructureShape.new(name: 'UpdateColumnStatisticsForTableResponse')
1274
1286
  UpdateColumnStatisticsList = Shapes::ListShape.new(name: 'UpdateColumnStatisticsList')
1287
+ UpdateColumnStatisticsTaskSettingsRequest = Shapes::StructureShape.new(name: 'UpdateColumnStatisticsTaskSettingsRequest')
1288
+ UpdateColumnStatisticsTaskSettingsResponse = Shapes::StructureShape.new(name: 'UpdateColumnStatisticsTaskSettingsResponse')
1275
1289
  UpdateConnectionRequest = Shapes::StructureShape.new(name: 'UpdateConnectionRequest')
1276
1290
  UpdateConnectionResponse = Shapes::StructureShape.new(name: 'UpdateConnectionResponse')
1277
1291
  UpdateCrawlerRequest = Shapes::StructureShape.new(name: 'UpdateCrawlerRequest')
@@ -2026,6 +2040,7 @@ module Aws::Glue
2026
2040
  ColumnStatisticsTaskRun.add_member(:security_configuration, Shapes::ShapeRef.new(shape: CrawlerSecurityConfiguration, location_name: "SecurityConfiguration"))
2027
2041
  ColumnStatisticsTaskRun.add_member(:number_of_workers, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "NumberOfWorkers"))
2028
2042
  ColumnStatisticsTaskRun.add_member(:worker_type, Shapes::ShapeRef.new(shape: NameString, location_name: "WorkerType"))
2043
+ ColumnStatisticsTaskRun.add_member(:computation_type, Shapes::ShapeRef.new(shape: ComputationType, location_name: "ComputationType"))
2029
2044
  ColumnStatisticsTaskRun.add_member(:status, Shapes::ShapeRef.new(shape: ColumnStatisticsState, location_name: "Status"))
2030
2045
  ColumnStatisticsTaskRun.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
2031
2046
  ColumnStatisticsTaskRun.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdated"))
@@ -2042,6 +2057,16 @@ module Aws::Glue
2042
2057
 
2043
2058
  ColumnStatisticsTaskRunsList.member = Shapes::ShapeRef.new(shape: ColumnStatisticsTaskRun)
2044
2059
 
2060
+ ColumnStatisticsTaskSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: DatabaseName, location_name: "DatabaseName"))
2061
+ ColumnStatisticsTaskSettings.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
2062
+ ColumnStatisticsTaskSettings.add_member(:schedule, Shapes::ShapeRef.new(shape: Schedule, location_name: "Schedule"))
2063
+ ColumnStatisticsTaskSettings.add_member(:column_name_list, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "ColumnNameList"))
2064
+ ColumnStatisticsTaskSettings.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogID"))
2065
+ ColumnStatisticsTaskSettings.add_member(:role, Shapes::ShapeRef.new(shape: Role, location_name: "Role"))
2066
+ ColumnStatisticsTaskSettings.add_member(:sample_size, Shapes::ShapeRef.new(shape: SampleSizePercentage, location_name: "SampleSize"))
2067
+ ColumnStatisticsTaskSettings.add_member(:security_configuration, Shapes::ShapeRef.new(shape: CrawlerSecurityConfiguration, location_name: "SecurityConfiguration"))
2068
+ ColumnStatisticsTaskSettings.struct_class = Types::ColumnStatisticsTaskSettings
2069
+
2045
2070
  ColumnStatisticsTaskStoppingException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
2046
2071
  ColumnStatisticsTaskStoppingException.struct_class = Types::ColumnStatisticsTaskStoppingException
2047
2072
 
@@ -2257,6 +2282,19 @@ module Aws::Glue
2257
2282
 
2258
2283
  CreateClassifierResponse.struct_class = Types::CreateClassifierResponse
2259
2284
 
2285
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2286
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
2287
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:role, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Role"))
2288
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: CronExpression, location_name: "Schedule"))
2289
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:column_name_list, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "ColumnNameList"))
2290
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:sample_size, Shapes::ShapeRef.new(shape: SampleSizePercentage, location_name: "SampleSize"))
2291
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: NameString, location_name: "CatalogID"))
2292
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
2293
+ CreateColumnStatisticsTaskSettingsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
2294
+ CreateColumnStatisticsTaskSettingsRequest.struct_class = Types::CreateColumnStatisticsTaskSettingsRequest
2295
+
2296
+ CreateColumnStatisticsTaskSettingsResponse.struct_class = Types::CreateColumnStatisticsTaskSettingsResponse
2297
+
2260
2298
  CreateConnectionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
2261
2299
  CreateConnectionRequest.add_member(:connection_input, Shapes::ShapeRef.new(shape: ConnectionInput, required: true, location_name: "ConnectionInput"))
2262
2300
  CreateConnectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
@@ -2847,6 +2885,12 @@ module Aws::Glue
2847
2885
 
2848
2886
  DeleteColumnStatisticsForTableResponse.struct_class = Types::DeleteColumnStatisticsForTableResponse
2849
2887
 
2888
+ DeleteColumnStatisticsTaskSettingsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2889
+ DeleteColumnStatisticsTaskSettingsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
2890
+ DeleteColumnStatisticsTaskSettingsRequest.struct_class = Types::DeleteColumnStatisticsTaskSettingsRequest
2891
+
2892
+ DeleteColumnStatisticsTaskSettingsResponse.struct_class = Types::DeleteColumnStatisticsTaskSettingsResponse
2893
+
2850
2894
  DeleteConnectionNameList.member = Shapes::ShapeRef.new(shape: NameString)
2851
2895
 
2852
2896
  DeleteConnectionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
@@ -3337,6 +3381,13 @@ module Aws::Glue
3337
3381
  GetColumnStatisticsTaskRunsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
3338
3382
  GetColumnStatisticsTaskRunsResponse.struct_class = Types::GetColumnStatisticsTaskRunsResponse
3339
3383
 
3384
+ GetColumnStatisticsTaskSettingsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
3385
+ GetColumnStatisticsTaskSettingsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
3386
+ GetColumnStatisticsTaskSettingsRequest.struct_class = Types::GetColumnStatisticsTaskSettingsRequest
3387
+
3388
+ GetColumnStatisticsTaskSettingsResponse.add_member(:column_statistics_task_settings, Shapes::ShapeRef.new(shape: ColumnStatisticsTaskSettings, location_name: "ColumnStatisticsTaskSettings"))
3389
+ GetColumnStatisticsTaskSettingsResponse.struct_class = Types::GetColumnStatisticsTaskSettingsResponse
3390
+
3340
3391
  GetConnectionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
3341
3392
  GetConnectionRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
3342
3393
  GetConnectionRequest.add_member(:hide_password, Shapes::ShapeRef.new(shape: Boolean, location_name: "HidePassword"))
@@ -5579,6 +5630,12 @@ module Aws::Glue
5579
5630
  StartColumnStatisticsTaskRunResponse.add_member(:column_statistics_task_run_id, Shapes::ShapeRef.new(shape: HashString, location_name: "ColumnStatisticsTaskRunId"))
5580
5631
  StartColumnStatisticsTaskRunResponse.struct_class = Types::StartColumnStatisticsTaskRunResponse
5581
5632
 
5633
+ StartColumnStatisticsTaskRunScheduleRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
5634
+ StartColumnStatisticsTaskRunScheduleRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
5635
+ StartColumnStatisticsTaskRunScheduleRequest.struct_class = Types::StartColumnStatisticsTaskRunScheduleRequest
5636
+
5637
+ StartColumnStatisticsTaskRunScheduleResponse.struct_class = Types::StartColumnStatisticsTaskRunScheduleResponse
5638
+
5582
5639
  StartCrawlerRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
5583
5640
  StartCrawlerRequest.struct_class = Types::StartCrawlerRequest
5584
5641
 
@@ -5742,6 +5799,12 @@ module Aws::Glue
5742
5799
 
5743
5800
  StopColumnStatisticsTaskRunResponse.struct_class = Types::StopColumnStatisticsTaskRunResponse
5744
5801
 
5802
+ StopColumnStatisticsTaskRunScheduleRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
5803
+ StopColumnStatisticsTaskRunScheduleRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
5804
+ StopColumnStatisticsTaskRunScheduleRequest.struct_class = Types::StopColumnStatisticsTaskRunScheduleRequest
5805
+
5806
+ StopColumnStatisticsTaskRunScheduleResponse.struct_class = Types::StopColumnStatisticsTaskRunScheduleResponse
5807
+
5745
5808
  StopCrawlerRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
5746
5809
  StopCrawlerRequest.struct_class = Types::StopCrawlerRequest
5747
5810
 
@@ -6096,6 +6159,18 @@ module Aws::Glue
6096
6159
 
6097
6160
  UpdateColumnStatisticsList.member = Shapes::ShapeRef.new(shape: ColumnStatistics)
6098
6161
 
6162
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
6163
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
6164
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:role, Shapes::ShapeRef.new(shape: NameString, location_name: "Role"))
6165
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: CronExpression, location_name: "Schedule"))
6166
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:column_name_list, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "ColumnNameList"))
6167
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:sample_size, Shapes::ShapeRef.new(shape: SampleSizePercentage, location_name: "SampleSize"))
6168
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: NameString, location_name: "CatalogID"))
6169
+ UpdateColumnStatisticsTaskSettingsRequest.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
6170
+ UpdateColumnStatisticsTaskSettingsRequest.struct_class = Types::UpdateColumnStatisticsTaskSettingsRequest
6171
+
6172
+ UpdateColumnStatisticsTaskSettingsResponse.struct_class = Types::UpdateColumnStatisticsTaskSettingsResponse
6173
+
6099
6174
  UpdateConnectionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
6100
6175
  UpdateConnectionRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
6101
6176
  UpdateConnectionRequest.add_member(:connection_input, Shapes::ShapeRef.new(shape: ConnectionInput, required: true, location_name: "ConnectionInput"))
@@ -6774,6 +6849,21 @@ module Aws::Glue
6774
6849
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
6775
6850
  end)
6776
6851
 
6852
+ api.add_operation(:create_column_statistics_task_settings, Seahorse::Model::Operation.new.tap do |o|
6853
+ o.name = "CreateColumnStatisticsTaskSettings"
6854
+ o.http_method = "POST"
6855
+ o.http_request_uri = "/"
6856
+ o.input = Shapes::ShapeRef.new(shape: CreateColumnStatisticsTaskSettingsRequest)
6857
+ o.output = Shapes::ShapeRef.new(shape: CreateColumnStatisticsTaskSettingsResponse)
6858
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
6859
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
6860
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
6861
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
6862
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
6863
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
6864
+ o.errors << Shapes::ShapeRef.new(shape: ColumnStatisticsTaskRunningException)
6865
+ end)
6866
+
6777
6867
  api.add_operation(:create_connection, Seahorse::Model::Operation.new.tap do |o|
6778
6868
  o.name = "CreateConnection"
6779
6869
  o.http_method = "POST"
@@ -7126,6 +7216,17 @@ module Aws::Glue
7126
7216
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
7127
7217
  end)
7128
7218
 
7219
+ api.add_operation(:delete_column_statistics_task_settings, Seahorse::Model::Operation.new.tap do |o|
7220
+ o.name = "DeleteColumnStatisticsTaskSettings"
7221
+ o.http_method = "POST"
7222
+ o.http_request_uri = "/"
7223
+ o.input = Shapes::ShapeRef.new(shape: DeleteColumnStatisticsTaskSettingsRequest)
7224
+ o.output = Shapes::ShapeRef.new(shape: DeleteColumnStatisticsTaskSettingsResponse)
7225
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
7226
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
7227
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
7228
+ end)
7229
+
7129
7230
  api.add_operation(:delete_connection, Seahorse::Model::Operation.new.tap do |o|
7130
7231
  o.name = "DeleteConnection"
7131
7232
  o.http_method = "POST"
@@ -7537,6 +7638,17 @@ module Aws::Glue
7537
7638
  )
7538
7639
  end)
7539
7640
 
7641
+ api.add_operation(:get_column_statistics_task_settings, Seahorse::Model::Operation.new.tap do |o|
7642
+ o.name = "GetColumnStatisticsTaskSettings"
7643
+ o.http_method = "POST"
7644
+ o.http_request_uri = "/"
7645
+ o.input = Shapes::ShapeRef.new(shape: GetColumnStatisticsTaskSettingsRequest)
7646
+ o.output = Shapes::ShapeRef.new(shape: GetColumnStatisticsTaskSettingsResponse)
7647
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
7648
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
7649
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
7650
+ end)
7651
+
7540
7652
  api.add_operation(:get_connection, Seahorse::Model::Operation.new.tap do |o|
7541
7653
  o.name = "GetConnection"
7542
7654
  o.http_method = "POST"
@@ -8985,6 +9097,18 @@ module Aws::Glue
8985
9097
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
8986
9098
  end)
8987
9099
 
9100
+ api.add_operation(:start_column_statistics_task_run_schedule, Seahorse::Model::Operation.new.tap do |o|
9101
+ o.name = "StartColumnStatisticsTaskRunSchedule"
9102
+ o.http_method = "POST"
9103
+ o.http_request_uri = "/"
9104
+ o.input = Shapes::ShapeRef.new(shape: StartColumnStatisticsTaskRunScheduleRequest)
9105
+ o.output = Shapes::ShapeRef.new(shape: StartColumnStatisticsTaskRunScheduleResponse)
9106
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
9107
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
9108
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
9109
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
9110
+ end)
9111
+
8988
9112
  api.add_operation(:start_crawler, Seahorse::Model::Operation.new.tap do |o|
8989
9113
  o.name = "StartCrawler"
8990
9114
  o.http_method = "POST"
@@ -9140,6 +9264,17 @@ module Aws::Glue
9140
9264
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
9141
9265
  end)
9142
9266
 
9267
+ api.add_operation(:stop_column_statistics_task_run_schedule, Seahorse::Model::Operation.new.tap do |o|
9268
+ o.name = "StopColumnStatisticsTaskRunSchedule"
9269
+ o.http_method = "POST"
9270
+ o.http_request_uri = "/"
9271
+ o.input = Shapes::ShapeRef.new(shape: StopColumnStatisticsTaskRunScheduleRequest)
9272
+ o.output = Shapes::ShapeRef.new(shape: StopColumnStatisticsTaskRunScheduleResponse)
9273
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
9274
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
9275
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
9276
+ end)
9277
+
9143
9278
  api.add_operation(:stop_crawler, Seahorse::Model::Operation.new.tap do |o|
9144
9279
  o.name = "StopCrawler"
9145
9280
  o.http_method = "POST"
@@ -9297,6 +9432,19 @@ module Aws::Glue
9297
9432
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
9298
9433
  end)
9299
9434
 
9435
+ api.add_operation(:update_column_statistics_task_settings, Seahorse::Model::Operation.new.tap do |o|
9436
+ o.name = "UpdateColumnStatisticsTaskSettings"
9437
+ o.http_method = "POST"
9438
+ o.http_request_uri = "/"
9439
+ o.input = Shapes::ShapeRef.new(shape: UpdateColumnStatisticsTaskSettingsRequest)
9440
+ o.output = Shapes::ShapeRef.new(shape: UpdateColumnStatisticsTaskSettingsResponse)
9441
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
9442
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
9443
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
9444
+ o.errors << Shapes::ShapeRef.new(shape: VersionMismatchException)
9445
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
9446
+ end)
9447
+
9300
9448
  api.add_operation(:update_connection, Seahorse::Model::Operation.new.tap do |o|
9301
9449
  o.name = "UpdateConnection"
9302
9450
  o.http_method = "POST"
@@ -2918,6 +2918,10 @@ module Aws::Glue
2918
2918
  # `g.1x`.
2919
2919
  # @return [String]
2920
2920
  #
2921
+ # @!attribute [rw] computation_type
2922
+ # The type of column statistics computation.
2923
+ # @return [String]
2924
+ #
2921
2925
  # @!attribute [rw] status
2922
2926
  # The status of the task run.
2923
2927
  # @return [String]
@@ -2960,6 +2964,7 @@ module Aws::Glue
2960
2964
  :security_configuration,
2961
2965
  :number_of_workers,
2962
2966
  :worker_type,
2967
+ :computation_type,
2963
2968
  :status,
2964
2969
  :creation_time,
2965
2970
  :last_updated,
@@ -2986,6 +2991,57 @@ module Aws::Glue
2986
2991
  include Aws::Structure
2987
2992
  end
2988
2993
 
2994
+ # The settings for a column statistics task.
2995
+ #
2996
+ # @!attribute [rw] database_name
2997
+ # The name of the database where the table resides.
2998
+ # @return [String]
2999
+ #
3000
+ # @!attribute [rw] table_name
3001
+ # The name of the table for which to generate column statistics.
3002
+ # @return [String]
3003
+ #
3004
+ # @!attribute [rw] schedule
3005
+ # A schedule for running the column statistics, specified in CRON
3006
+ # syntax.
3007
+ # @return [Types::Schedule]
3008
+ #
3009
+ # @!attribute [rw] column_name_list
3010
+ # A list of column names for which to run statistics.
3011
+ # @return [Array<String>]
3012
+ #
3013
+ # @!attribute [rw] catalog_id
3014
+ # The ID of the Data Catalog in which the database resides.
3015
+ # @return [String]
3016
+ #
3017
+ # @!attribute [rw] role
3018
+ # The role used for running the column statistics.
3019
+ # @return [String]
3020
+ #
3021
+ # @!attribute [rw] sample_size
3022
+ # The percentage of data to sample.
3023
+ # @return [Float]
3024
+ #
3025
+ # @!attribute [rw] security_configuration
3026
+ # Name of the security configuration that is used to encrypt
3027
+ # CloudWatch logs.
3028
+ # @return [String]
3029
+ #
3030
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ColumnStatisticsTaskSettings AWS API Documentation
3031
+ #
3032
+ class ColumnStatisticsTaskSettings < Struct.new(
3033
+ :database_name,
3034
+ :table_name,
3035
+ :schedule,
3036
+ :column_name_list,
3037
+ :catalog_id,
3038
+ :role,
3039
+ :sample_size,
3040
+ :security_configuration)
3041
+ SENSITIVE = []
3042
+ include Aws::Structure
3043
+ end
3044
+
2989
3045
  # An exception thrown when you try to stop a task run.
2990
3046
  #
2991
3047
  # @!attribute [rw] message
@@ -4288,6 +4344,64 @@ module Aws::Glue
4288
4344
  #
4289
4345
  class CreateClassifierResponse < Aws::EmptyStructure; end
4290
4346
 
4347
+ # @!attribute [rw] database_name
4348
+ # The name of the database where the table resides.
4349
+ # @return [String]
4350
+ #
4351
+ # @!attribute [rw] table_name
4352
+ # The name of the table for which to generate column statistics.
4353
+ # @return [String]
4354
+ #
4355
+ # @!attribute [rw] role
4356
+ # The role used for running the column statistics.
4357
+ # @return [String]
4358
+ #
4359
+ # @!attribute [rw] schedule
4360
+ # A schedule for running the column statistics, specified in CRON
4361
+ # syntax.
4362
+ # @return [String]
4363
+ #
4364
+ # @!attribute [rw] column_name_list
4365
+ # A list of column names for which to run statistics.
4366
+ # @return [Array<String>]
4367
+ #
4368
+ # @!attribute [rw] sample_size
4369
+ # The percentage of data to sample.
4370
+ # @return [Float]
4371
+ #
4372
+ # @!attribute [rw] catalog_id
4373
+ # The ID of the Data Catalog in which the database resides.
4374
+ # @return [String]
4375
+ #
4376
+ # @!attribute [rw] security_configuration
4377
+ # Name of the security configuration that is used to encrypt
4378
+ # CloudWatch logs.
4379
+ # @return [String]
4380
+ #
4381
+ # @!attribute [rw] tags
4382
+ # A map of tags.
4383
+ # @return [Hash<String,String>]
4384
+ #
4385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateColumnStatisticsTaskSettingsRequest AWS API Documentation
4386
+ #
4387
+ class CreateColumnStatisticsTaskSettingsRequest < Struct.new(
4388
+ :database_name,
4389
+ :table_name,
4390
+ :role,
4391
+ :schedule,
4392
+ :column_name_list,
4393
+ :sample_size,
4394
+ :catalog_id,
4395
+ :security_configuration,
4396
+ :tags)
4397
+ SENSITIVE = []
4398
+ include Aws::Structure
4399
+ end
4400
+
4401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateColumnStatisticsTaskSettingsResponse AWS API Documentation
4402
+ #
4403
+ class CreateColumnStatisticsTaskSettingsResponse < Aws::EmptyStructure; end
4404
+
4291
4405
  # @!attribute [rw] catalog_id
4292
4406
  # The ID of the Data Catalog in which to create the connection. If
4293
4407
  # none is provided, the Amazon Web Services account ID is used by
@@ -7462,6 +7576,27 @@ module Aws::Glue
7462
7576
  #
7463
7577
  class DeleteColumnStatisticsForTableResponse < Aws::EmptyStructure; end
7464
7578
 
7579
+ # @!attribute [rw] database_name
7580
+ # The name of the database where the table resides.
7581
+ # @return [String]
7582
+ #
7583
+ # @!attribute [rw] table_name
7584
+ # The name of the table for which to delete column statistics.
7585
+ # @return [String]
7586
+ #
7587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteColumnStatisticsTaskSettingsRequest AWS API Documentation
7588
+ #
7589
+ class DeleteColumnStatisticsTaskSettingsRequest < Struct.new(
7590
+ :database_name,
7591
+ :table_name)
7592
+ SENSITIVE = []
7593
+ include Aws::Structure
7594
+ end
7595
+
7596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteColumnStatisticsTaskSettingsResponse AWS API Documentation
7597
+ #
7598
+ class DeleteColumnStatisticsTaskSettingsResponse < Aws::EmptyStructure; end
7599
+
7465
7600
  # @!attribute [rw] catalog_id
7466
7601
  # The ID of the Data Catalog in which the connection resides. If none
7467
7602
  # is provided, the Amazon Web Services account ID is used by default.
@@ -9739,6 +9874,36 @@ module Aws::Glue
9739
9874
  include Aws::Structure
9740
9875
  end
9741
9876
 
9877
+ # @!attribute [rw] database_name
9878
+ # The name of the database where the table resides.
9879
+ # @return [String]
9880
+ #
9881
+ # @!attribute [rw] table_name
9882
+ # The name of the table for which to retrieve column statistics.
9883
+ # @return [String]
9884
+ #
9885
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetColumnStatisticsTaskSettingsRequest AWS API Documentation
9886
+ #
9887
+ class GetColumnStatisticsTaskSettingsRequest < Struct.new(
9888
+ :database_name,
9889
+ :table_name)
9890
+ SENSITIVE = []
9891
+ include Aws::Structure
9892
+ end
9893
+
9894
+ # @!attribute [rw] column_statistics_task_settings
9895
+ # A `ColumnStatisticsTaskSettings` object representing the settings
9896
+ # for the column statistics task.
9897
+ # @return [Types::ColumnStatisticsTaskSettings]
9898
+ #
9899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetColumnStatisticsTaskSettingsResponse AWS API Documentation
9900
+ #
9901
+ class GetColumnStatisticsTaskSettingsResponse < Struct.new(
9902
+ :column_statistics_task_settings)
9903
+ SENSITIVE = []
9904
+ include Aws::Structure
9905
+ end
9906
+
9742
9907
  # @!attribute [rw] catalog_id
9743
9908
  # The ID of the Data Catalog in which the connection resides. If none
9744
9909
  # is provided, the Amazon Web Services account ID is used by default.
@@ -21208,6 +21373,28 @@ module Aws::Glue
21208
21373
  include Aws::Structure
21209
21374
  end
21210
21375
 
21376
+ # @!attribute [rw] database_name
21377
+ # The name of the database where the table resides.
21378
+ # @return [String]
21379
+ #
21380
+ # @!attribute [rw] table_name
21381
+ # The name of the table for which to start a column statistic task run
21382
+ # schedule.
21383
+ # @return [String]
21384
+ #
21385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartColumnStatisticsTaskRunScheduleRequest AWS API Documentation
21386
+ #
21387
+ class StartColumnStatisticsTaskRunScheduleRequest < Struct.new(
21388
+ :database_name,
21389
+ :table_name)
21390
+ SENSITIVE = []
21391
+ include Aws::Structure
21392
+ end
21393
+
21394
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartColumnStatisticsTaskRunScheduleResponse AWS API Documentation
21395
+ #
21396
+ class StartColumnStatisticsTaskRunScheduleResponse < Aws::EmptyStructure; end
21397
+
21211
21398
  # @!attribute [rw] name
21212
21399
  # Name of the crawler to start.
21213
21400
  # @return [String]
@@ -22046,6 +22233,28 @@ module Aws::Glue
22046
22233
  #
22047
22234
  class StopColumnStatisticsTaskRunResponse < Aws::EmptyStructure; end
22048
22235
 
22236
+ # @!attribute [rw] database_name
22237
+ # The name of the database where the table resides.
22238
+ # @return [String]
22239
+ #
22240
+ # @!attribute [rw] table_name
22241
+ # The name of the table for which to stop a column statistic task run
22242
+ # schedule.
22243
+ # @return [String]
22244
+ #
22245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StopColumnStatisticsTaskRunScheduleRequest AWS API Documentation
22246
+ #
22247
+ class StopColumnStatisticsTaskRunScheduleRequest < Struct.new(
22248
+ :database_name,
22249
+ :table_name)
22250
+ SENSITIVE = []
22251
+ include Aws::Structure
22252
+ end
22253
+
22254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StopColumnStatisticsTaskRunScheduleResponse AWS API Documentation
22255
+ #
22256
+ class StopColumnStatisticsTaskRunScheduleResponse < Aws::EmptyStructure; end
22257
+
22049
22258
  # @!attribute [rw] name
22050
22259
  # Name of the crawler to stop.
22051
22260
  # @return [String]
@@ -23705,6 +23914,59 @@ module Aws::Glue
23705
23914
  include Aws::Structure
23706
23915
  end
23707
23916
 
23917
+ # @!attribute [rw] database_name
23918
+ # The name of the database where the table resides.
23919
+ # @return [String]
23920
+ #
23921
+ # @!attribute [rw] table_name
23922
+ # The name of the table for which to generate column statistics.
23923
+ # @return [String]
23924
+ #
23925
+ # @!attribute [rw] role
23926
+ # The role used for running the column statistics.
23927
+ # @return [String]
23928
+ #
23929
+ # @!attribute [rw] schedule
23930
+ # A schedule for running the column statistics, specified in CRON
23931
+ # syntax.
23932
+ # @return [String]
23933
+ #
23934
+ # @!attribute [rw] column_name_list
23935
+ # A list of column names for which to run statistics.
23936
+ # @return [Array<String>]
23937
+ #
23938
+ # @!attribute [rw] sample_size
23939
+ # The percentage of data to sample.
23940
+ # @return [Float]
23941
+ #
23942
+ # @!attribute [rw] catalog_id
23943
+ # The ID of the Data Catalog in which the database resides.
23944
+ # @return [String]
23945
+ #
23946
+ # @!attribute [rw] security_configuration
23947
+ # Name of the security configuration that is used to encrypt
23948
+ # CloudWatch logs.
23949
+ # @return [String]
23950
+ #
23951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateColumnStatisticsTaskSettingsRequest AWS API Documentation
23952
+ #
23953
+ class UpdateColumnStatisticsTaskSettingsRequest < Struct.new(
23954
+ :database_name,
23955
+ :table_name,
23956
+ :role,
23957
+ :schedule,
23958
+ :column_name_list,
23959
+ :sample_size,
23960
+ :catalog_id,
23961
+ :security_configuration)
23962
+ SENSITIVE = []
23963
+ include Aws::Structure
23964
+ end
23965
+
23966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateColumnStatisticsTaskSettingsResponse AWS API Documentation
23967
+ #
23968
+ class UpdateColumnStatisticsTaskSettingsResponse < Aws::EmptyStructure; end
23969
+
23708
23970
  # @!attribute [rw] catalog_id
23709
23971
  # The ID of the Data Catalog in which the connection resides. If none
23710
23972
  # is provided, the Amazon Web Services account ID is used by default.
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.199.0'
57
+ GEM_VERSION = '1.200.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -519,6 +519,23 @@ module Aws
519
519
  ) -> _CreateClassifierResponseSuccess
520
520
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClassifierResponseSuccess
521
521
 
522
+ interface _CreateColumnStatisticsTaskSettingsResponseSuccess
523
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateColumnStatisticsTaskSettingsResponse]
524
+ end
525
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_column_statistics_task_settings-instance_method
526
+ def create_column_statistics_task_settings: (
527
+ database_name: ::String,
528
+ table_name: ::String,
529
+ role: ::String,
530
+ ?schedule: ::String,
531
+ ?column_name_list: Array[::String],
532
+ ?sample_size: ::Float,
533
+ ?catalog_id: ::String,
534
+ ?security_configuration: ::String,
535
+ ?tags: Hash[::String, ::String]
536
+ ) -> _CreateColumnStatisticsTaskSettingsResponseSuccess
537
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateColumnStatisticsTaskSettingsResponseSuccess
538
+
522
539
  interface _CreateConnectionResponseSuccess
523
540
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionResponse]
524
541
  def create_connection_status: () -> ("READY" | "IN_PROGRESS" | "FAILED")
@@ -2563,6 +2580,16 @@ module Aws
2563
2580
  ) -> _DeleteColumnStatisticsForTableResponseSuccess
2564
2581
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteColumnStatisticsForTableResponseSuccess
2565
2582
 
2583
+ interface _DeleteColumnStatisticsTaskSettingsResponseSuccess
2584
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteColumnStatisticsTaskSettingsResponse]
2585
+ end
2586
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_column_statistics_task_settings-instance_method
2587
+ def delete_column_statistics_task_settings: (
2588
+ database_name: ::String,
2589
+ table_name: ::String
2590
+ ) -> _DeleteColumnStatisticsTaskSettingsResponseSuccess
2591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteColumnStatisticsTaskSettingsResponseSuccess
2592
+
2566
2593
  interface _DeleteConnectionResponseSuccess
2567
2594
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionResponse]
2568
2595
  end
@@ -2937,6 +2964,17 @@ module Aws
2937
2964
  ) -> _GetColumnStatisticsTaskRunsResponseSuccess
2938
2965
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetColumnStatisticsTaskRunsResponseSuccess
2939
2966
 
2967
+ interface _GetColumnStatisticsTaskSettingsResponseSuccess
2968
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetColumnStatisticsTaskSettingsResponse]
2969
+ def column_statistics_task_settings: () -> Types::ColumnStatisticsTaskSettings
2970
+ end
2971
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_column_statistics_task_settings-instance_method
2972
+ def get_column_statistics_task_settings: (
2973
+ database_name: ::String,
2974
+ table_name: ::String
2975
+ ) -> _GetColumnStatisticsTaskSettingsResponseSuccess
2976
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetColumnStatisticsTaskSettingsResponseSuccess
2977
+
2940
2978
  interface _GetConnectionResponseSuccess
2941
2979
  include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionResponse]
2942
2980
  def connection: () -> Types::Connection
@@ -4652,6 +4690,16 @@ module Aws
4652
4690
  ) -> _StartColumnStatisticsTaskRunResponseSuccess
4653
4691
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartColumnStatisticsTaskRunResponseSuccess
4654
4692
 
4693
+ interface _StartColumnStatisticsTaskRunScheduleResponseSuccess
4694
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartColumnStatisticsTaskRunScheduleResponse]
4695
+ end
4696
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#start_column_statistics_task_run_schedule-instance_method
4697
+ def start_column_statistics_task_run_schedule: (
4698
+ database_name: ::String,
4699
+ table_name: ::String
4700
+ ) -> _StartColumnStatisticsTaskRunScheduleResponseSuccess
4701
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartColumnStatisticsTaskRunScheduleResponseSuccess
4702
+
4655
4703
  interface _StartCrawlerResponseSuccess
4656
4704
  include ::Seahorse::Client::_ResponseSuccess[Types::StartCrawlerResponse]
4657
4705
  end
@@ -4829,6 +4877,16 @@ module Aws
4829
4877
  ) -> _StopColumnStatisticsTaskRunResponseSuccess
4830
4878
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopColumnStatisticsTaskRunResponseSuccess
4831
4879
 
4880
+ interface _StopColumnStatisticsTaskRunScheduleResponseSuccess
4881
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopColumnStatisticsTaskRunScheduleResponse]
4882
+ end
4883
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#stop_column_statistics_task_run_schedule-instance_method
4884
+ def stop_column_statistics_task_run_schedule: (
4885
+ database_name: ::String,
4886
+ table_name: ::String
4887
+ ) -> _StopColumnStatisticsTaskRunScheduleResponseSuccess
4888
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopColumnStatisticsTaskRunScheduleResponseSuccess
4889
+
4832
4890
  interface _StopCrawlerResponseSuccess
4833
4891
  include ::Seahorse::Client::_ResponseSuccess[Types::StopCrawlerResponse]
4834
4892
  end
@@ -5112,6 +5170,22 @@ module Aws
5112
5170
  ) -> _UpdateColumnStatisticsForTableResponseSuccess
5113
5171
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateColumnStatisticsForTableResponseSuccess
5114
5172
 
5173
+ interface _UpdateColumnStatisticsTaskSettingsResponseSuccess
5174
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateColumnStatisticsTaskSettingsResponse]
5175
+ end
5176
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_column_statistics_task_settings-instance_method
5177
+ def update_column_statistics_task_settings: (
5178
+ database_name: ::String,
5179
+ table_name: ::String,
5180
+ ?role: ::String,
5181
+ ?schedule: ::String,
5182
+ ?column_name_list: Array[::String],
5183
+ ?sample_size: ::Float,
5184
+ ?catalog_id: ::String,
5185
+ ?security_configuration: ::String
5186
+ ) -> _UpdateColumnStatisticsTaskSettingsResponseSuccess
5187
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateColumnStatisticsTaskSettingsResponseSuccess
5188
+
5115
5189
  interface _UpdateConnectionResponseSuccess
5116
5190
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionResponse]
5117
5191
  end
data/sig/types.rbs CHANGED
@@ -778,6 +778,7 @@ module Aws::Glue
778
778
  attr_accessor security_configuration: ::String
779
779
  attr_accessor number_of_workers: ::Integer
780
780
  attr_accessor worker_type: ::String
781
+ attr_accessor computation_type: ("FULL" | "INCREMENTAL")
781
782
  attr_accessor status: ("STARTING" | "RUNNING" | "SUCCEEDED" | "FAILED" | "STOPPED")
782
783
  attr_accessor creation_time: ::Time
783
784
  attr_accessor last_updated: ::Time
@@ -793,6 +794,18 @@ module Aws::Glue
793
794
  SENSITIVE: []
794
795
  end
795
796
 
797
+ class ColumnStatisticsTaskSettings
798
+ attr_accessor database_name: ::String
799
+ attr_accessor table_name: ::String
800
+ attr_accessor schedule: Types::Schedule
801
+ attr_accessor column_name_list: ::Array[::String]
802
+ attr_accessor catalog_id: ::String
803
+ attr_accessor role: ::String
804
+ attr_accessor sample_size: ::Float
805
+ attr_accessor security_configuration: ::String
806
+ SENSITIVE: []
807
+ end
808
+
796
809
  class ColumnStatisticsTaskStoppingException
797
810
  attr_accessor message: ::String
798
811
  SENSITIVE: []
@@ -1036,6 +1049,22 @@ module Aws::Glue
1036
1049
  class CreateClassifierResponse < Aws::EmptyStructure
1037
1050
  end
1038
1051
 
1052
+ class CreateColumnStatisticsTaskSettingsRequest
1053
+ attr_accessor database_name: ::String
1054
+ attr_accessor table_name: ::String
1055
+ attr_accessor role: ::String
1056
+ attr_accessor schedule: ::String
1057
+ attr_accessor column_name_list: ::Array[::String]
1058
+ attr_accessor sample_size: ::Float
1059
+ attr_accessor catalog_id: ::String
1060
+ attr_accessor security_configuration: ::String
1061
+ attr_accessor tags: ::Hash[::String, ::String]
1062
+ SENSITIVE: []
1063
+ end
1064
+
1065
+ class CreateColumnStatisticsTaskSettingsResponse < Aws::EmptyStructure
1066
+ end
1067
+
1039
1068
  class CreateConnectionRequest
1040
1069
  attr_accessor catalog_id: ::String
1041
1070
  attr_accessor connection_input: Types::ConnectionInput
@@ -1741,6 +1770,15 @@ module Aws::Glue
1741
1770
  class DeleteColumnStatisticsForTableResponse < Aws::EmptyStructure
1742
1771
  end
1743
1772
 
1773
+ class DeleteColumnStatisticsTaskSettingsRequest
1774
+ attr_accessor database_name: ::String
1775
+ attr_accessor table_name: ::String
1776
+ SENSITIVE: []
1777
+ end
1778
+
1779
+ class DeleteColumnStatisticsTaskSettingsResponse < Aws::EmptyStructure
1780
+ end
1781
+
1744
1782
  class DeleteConnectionRequest
1745
1783
  attr_accessor catalog_id: ::String
1746
1784
  attr_accessor connection_name: ::String
@@ -2390,6 +2428,17 @@ module Aws::Glue
2390
2428
  SENSITIVE: []
2391
2429
  end
2392
2430
 
2431
+ class GetColumnStatisticsTaskSettingsRequest
2432
+ attr_accessor database_name: ::String
2433
+ attr_accessor table_name: ::String
2434
+ SENSITIVE: []
2435
+ end
2436
+
2437
+ class GetColumnStatisticsTaskSettingsResponse
2438
+ attr_accessor column_statistics_task_settings: Types::ColumnStatisticsTaskSettings
2439
+ SENSITIVE: []
2440
+ end
2441
+
2393
2442
  class GetConnectionRequest
2394
2443
  attr_accessor catalog_id: ::String
2395
2444
  attr_accessor name: ::String
@@ -5203,6 +5252,15 @@ module Aws::Glue
5203
5252
  SENSITIVE: []
5204
5253
  end
5205
5254
 
5255
+ class StartColumnStatisticsTaskRunScheduleRequest
5256
+ attr_accessor database_name: ::String
5257
+ attr_accessor table_name: ::String
5258
+ SENSITIVE: []
5259
+ end
5260
+
5261
+ class StartColumnStatisticsTaskRunScheduleResponse < Aws::EmptyStructure
5262
+ end
5263
+
5206
5264
  class StartCrawlerRequest
5207
5265
  attr_accessor name: ::String
5208
5266
  SENSITIVE: []
@@ -5418,6 +5476,15 @@ module Aws::Glue
5418
5476
  class StopColumnStatisticsTaskRunResponse < Aws::EmptyStructure
5419
5477
  end
5420
5478
 
5479
+ class StopColumnStatisticsTaskRunScheduleRequest
5480
+ attr_accessor database_name: ::String
5481
+ attr_accessor table_name: ::String
5482
+ SENSITIVE: []
5483
+ end
5484
+
5485
+ class StopColumnStatisticsTaskRunScheduleResponse < Aws::EmptyStructure
5486
+ end
5487
+
5421
5488
  class StopCrawlerRequest
5422
5489
  attr_accessor name: ::String
5423
5490
  SENSITIVE: []
@@ -5837,6 +5904,21 @@ module Aws::Glue
5837
5904
  SENSITIVE: []
5838
5905
  end
5839
5906
 
5907
+ class UpdateColumnStatisticsTaskSettingsRequest
5908
+ attr_accessor database_name: ::String
5909
+ attr_accessor table_name: ::String
5910
+ attr_accessor role: ::String
5911
+ attr_accessor schedule: ::String
5912
+ attr_accessor column_name_list: ::Array[::String]
5913
+ attr_accessor sample_size: ::Float
5914
+ attr_accessor catalog_id: ::String
5915
+ attr_accessor security_configuration: ::String
5916
+ SENSITIVE: []
5917
+ end
5918
+
5919
+ class UpdateColumnStatisticsTaskSettingsResponse < Aws::EmptyStructure
5920
+ end
5921
+
5840
5922
  class UpdateConnectionRequest
5841
5923
  attr_accessor catalog_id: ::String
5842
5924
  attr_accessor name: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.199.0
4
+ version: 1.200.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core