aws-sdk-glue 1.73.0 → 1.78.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/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +90 -1
- data/lib/aws-sdk-glue/client_api.rb +32 -0
- data/lib/aws-sdk-glue/types.rb +297 -57
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b341849145a822c5f4d4a2a4777f3e47936b3136635f939a21494c53c9ccddd
|
4
|
+
data.tar.gz: 4906a2d13b1d3841f184de1ed40df276e6754b8e6a950ef45f915d59b227ee55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7aadbbbd40f6ae110e9fa70e861d265094d48009807f1e79cb0acf314954d79ad785bdf170740c37f0ff4c0c0825b086f7336c771370a39a38d7cfd1be93f7ea
|
7
|
+
data.tar.gz: 187f1f9d4460f1147dfd1720659e42e83d7ea44951dc608ded2842b9075a052bc4e42c0c5e5caf3bab4cfb17fbd5209ad246c5d0b048da8cd28ae7c787c6a425
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -663,6 +663,10 @@ module Aws::Glue
|
|
663
663
|
# resp.crawlers[0].targets.jdbc_targets[0].path #=> String
|
664
664
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions #=> Array
|
665
665
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
666
|
+
# resp.crawlers[0].targets.mongo_db_targets #=> Array
|
667
|
+
# resp.crawlers[0].targets.mongo_db_targets[0].connection_name #=> String
|
668
|
+
# resp.crawlers[0].targets.mongo_db_targets[0].path #=> String
|
669
|
+
# resp.crawlers[0].targets.mongo_db_targets[0].scan_all #=> Boolean
|
666
670
|
# resp.crawlers[0].targets.dynamo_db_targets #=> Array
|
667
671
|
# resp.crawlers[0].targets.dynamo_db_targets[0].path #=> String
|
668
672
|
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_all #=> Boolean
|
@@ -675,6 +679,7 @@ module Aws::Glue
|
|
675
679
|
# resp.crawlers[0].description #=> String
|
676
680
|
# resp.crawlers[0].classifiers #=> Array
|
677
681
|
# resp.crawlers[0].classifiers[0] #=> String
|
682
|
+
# resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
|
678
683
|
# resp.crawlers[0].schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
|
679
684
|
# resp.crawlers[0].schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
|
680
685
|
# resp.crawlers[0].state #=> String, one of "READY", "RUNNING", "STOPPING"
|
@@ -1485,6 +1490,10 @@ module Aws::Glue
|
|
1485
1490
|
# @option params [Types::SchemaChangePolicy] :schema_change_policy
|
1486
1491
|
# The policy for the crawler's update and deletion behavior.
|
1487
1492
|
#
|
1493
|
+
# @option params [Types::RecrawlPolicy] :recrawl_policy
|
1494
|
+
# A policy that specifies whether to crawl the entire dataset again, or
|
1495
|
+
# to crawl only folders that were added since the last crawler run.
|
1496
|
+
#
|
1488
1497
|
# @option params [String] :configuration
|
1489
1498
|
# Crawler configuration information. This versioned JSON string allows
|
1490
1499
|
# users to specify aspects of a crawler's behavior. For more
|
@@ -1531,6 +1540,13 @@ module Aws::Glue
|
|
1531
1540
|
# exclusions: ["Path"],
|
1532
1541
|
# },
|
1533
1542
|
# ],
|
1543
|
+
# mongo_db_targets: [
|
1544
|
+
# {
|
1545
|
+
# connection_name: "ConnectionName",
|
1546
|
+
# path: "Path",
|
1547
|
+
# scan_all: false,
|
1548
|
+
# },
|
1549
|
+
# ],
|
1534
1550
|
# dynamo_db_targets: [
|
1535
1551
|
# {
|
1536
1552
|
# path: "Path",
|
@@ -1552,6 +1568,9 @@ module Aws::Glue
|
|
1552
1568
|
# update_behavior: "LOG", # accepts LOG, UPDATE_IN_DATABASE
|
1553
1569
|
# delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
|
1554
1570
|
# },
|
1571
|
+
# recrawl_policy: {
|
1572
|
+
# recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
|
1573
|
+
# },
|
1555
1574
|
# configuration: "CrawlerConfiguration",
|
1556
1575
|
# crawler_security_configuration: "CrawlerSecurityConfiguration",
|
1557
1576
|
# tags: {
|
@@ -2165,6 +2184,11 @@ module Aws::Glue
|
|
2165
2184
|
#
|
2166
2185
|
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
|
2167
2186
|
#
|
2187
|
+
# @option params [Types::TransformEncryption] :transform_encryption
|
2188
|
+
# The encryption-at-rest settings of the transform that apply to
|
2189
|
+
# accessing user data. Machine learning transforms can access user data
|
2190
|
+
# encrypted in Amazon S3 using KMS.
|
2191
|
+
#
|
2168
2192
|
# @return [Types::CreateMLTransformResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2169
2193
|
#
|
2170
2194
|
# * {Types::CreateMLTransformResponse#transform_id #transform_id} => String
|
@@ -2201,6 +2225,13 @@ module Aws::Glue
|
|
2201
2225
|
# tags: {
|
2202
2226
|
# "TagKey" => "TagValue",
|
2203
2227
|
# },
|
2228
|
+
# transform_encryption: {
|
2229
|
+
# ml_user_data_encryption: {
|
2230
|
+
# ml_user_data_encryption_mode: "DISABLED", # required, accepts DISABLED, SSE-KMS
|
2231
|
+
# kms_key_id: "NameString",
|
2232
|
+
# },
|
2233
|
+
# task_run_security_configuration_name: "NameString",
|
2234
|
+
# },
|
2204
2235
|
# })
|
2205
2236
|
#
|
2206
2237
|
# @example Response structure
|
@@ -2753,6 +2784,9 @@ module Aws::Glue
|
|
2753
2784
|
|
2754
2785
|
# Delete the partition column statistics of a column.
|
2755
2786
|
#
|
2787
|
+
# The Identity and Access Management (IAM) permission required for this
|
2788
|
+
# operation is `DeletePartition`.
|
2789
|
+
#
|
2756
2790
|
# @option params [String] :catalog_id
|
2757
2791
|
# The ID of the Data Catalog where the partitions in question reside. If
|
2758
2792
|
# none is supplied, the AWS account ID is used by default.
|
@@ -2792,6 +2826,9 @@ module Aws::Glue
|
|
2792
2826
|
|
2793
2827
|
# Retrieves table statistics of columns.
|
2794
2828
|
#
|
2829
|
+
# The Identity and Access Management (IAM) permission required for this
|
2830
|
+
# operation is `DeleteTable`.
|
2831
|
+
#
|
2795
2832
|
# @option params [String] :catalog_id
|
2796
2833
|
# The ID of the Data Catalog where the partitions in question reside. If
|
2797
2834
|
# none is supplied, the AWS account ID is used by default.
|
@@ -3414,6 +3451,9 @@ module Aws::Glue
|
|
3414
3451
|
|
3415
3452
|
# Retrieves partition statistics of columns.
|
3416
3453
|
#
|
3454
|
+
# The Identity and Access Management (IAM) permission required for this
|
3455
|
+
# operation is `GetPartition`.
|
3456
|
+
#
|
3417
3457
|
# @option params [String] :catalog_id
|
3418
3458
|
# The ID of the Data Catalog where the partitions in question reside. If
|
3419
3459
|
# none is supplied, the AWS account ID is used by default.
|
@@ -3496,6 +3536,9 @@ module Aws::Glue
|
|
3496
3536
|
|
3497
3537
|
# Retrieves table statistics of columns.
|
3498
3538
|
#
|
3539
|
+
# The Identity and Access Management (IAM) permission required for this
|
3540
|
+
# operation is `GetTable`.
|
3541
|
+
#
|
3499
3542
|
# @option params [String] :catalog_id
|
3500
3543
|
# The ID of the Data Catalog where the partitions in question reside. If
|
3501
3544
|
# none is supplied, the AWS account ID is used by default.
|
@@ -3727,6 +3770,10 @@ module Aws::Glue
|
|
3727
3770
|
# resp.crawler.targets.jdbc_targets[0].path #=> String
|
3728
3771
|
# resp.crawler.targets.jdbc_targets[0].exclusions #=> Array
|
3729
3772
|
# resp.crawler.targets.jdbc_targets[0].exclusions[0] #=> String
|
3773
|
+
# resp.crawler.targets.mongo_db_targets #=> Array
|
3774
|
+
# resp.crawler.targets.mongo_db_targets[0].connection_name #=> String
|
3775
|
+
# resp.crawler.targets.mongo_db_targets[0].path #=> String
|
3776
|
+
# resp.crawler.targets.mongo_db_targets[0].scan_all #=> Boolean
|
3730
3777
|
# resp.crawler.targets.dynamo_db_targets #=> Array
|
3731
3778
|
# resp.crawler.targets.dynamo_db_targets[0].path #=> String
|
3732
3779
|
# resp.crawler.targets.dynamo_db_targets[0].scan_all #=> Boolean
|
@@ -3739,6 +3786,7 @@ module Aws::Glue
|
|
3739
3786
|
# resp.crawler.description #=> String
|
3740
3787
|
# resp.crawler.classifiers #=> Array
|
3741
3788
|
# resp.crawler.classifiers[0] #=> String
|
3789
|
+
# resp.crawler.recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
|
3742
3790
|
# resp.crawler.schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
|
3743
3791
|
# resp.crawler.schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
|
3744
3792
|
# resp.crawler.state #=> String, one of "READY", "RUNNING", "STOPPING"
|
@@ -3852,6 +3900,10 @@ module Aws::Glue
|
|
3852
3900
|
# resp.crawlers[0].targets.jdbc_targets[0].path #=> String
|
3853
3901
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions #=> Array
|
3854
3902
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
3903
|
+
# resp.crawlers[0].targets.mongo_db_targets #=> Array
|
3904
|
+
# resp.crawlers[0].targets.mongo_db_targets[0].connection_name #=> String
|
3905
|
+
# resp.crawlers[0].targets.mongo_db_targets[0].path #=> String
|
3906
|
+
# resp.crawlers[0].targets.mongo_db_targets[0].scan_all #=> Boolean
|
3855
3907
|
# resp.crawlers[0].targets.dynamo_db_targets #=> Array
|
3856
3908
|
# resp.crawlers[0].targets.dynamo_db_targets[0].path #=> String
|
3857
3909
|
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_all #=> Boolean
|
@@ -3864,6 +3916,7 @@ module Aws::Glue
|
|
3864
3916
|
# resp.crawlers[0].description #=> String
|
3865
3917
|
# resp.crawlers[0].classifiers #=> Array
|
3866
3918
|
# resp.crawlers[0].classifiers[0] #=> String
|
3919
|
+
# resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
|
3867
3920
|
# resp.crawlers[0].schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
|
3868
3921
|
# resp.crawlers[0].schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
|
3869
3922
|
# resp.crawlers[0].state #=> String, one of "READY", "RUNNING", "STOPPING"
|
@@ -4659,6 +4712,7 @@ module Aws::Glue
|
|
4659
4712
|
# * {Types::GetMLTransformResponse#number_of_workers #number_of_workers} => Integer
|
4660
4713
|
# * {Types::GetMLTransformResponse#timeout #timeout} => Integer
|
4661
4714
|
# * {Types::GetMLTransformResponse#max_retries #max_retries} => Integer
|
4715
|
+
# * {Types::GetMLTransformResponse#transform_encryption #transform_encryption} => Types::TransformEncryption
|
4662
4716
|
#
|
4663
4717
|
# @example Request syntax with placeholder values
|
4664
4718
|
#
|
@@ -4704,6 +4758,9 @@ module Aws::Glue
|
|
4704
4758
|
# resp.number_of_workers #=> Integer
|
4705
4759
|
# resp.timeout #=> Integer
|
4706
4760
|
# resp.max_retries #=> Integer
|
4761
|
+
# resp.transform_encryption.ml_user_data_encryption.ml_user_data_encryption_mode #=> String, one of "DISABLED", "SSE-KMS"
|
4762
|
+
# resp.transform_encryption.ml_user_data_encryption.kms_key_id #=> String
|
4763
|
+
# resp.transform_encryption.task_run_security_configuration_name #=> String
|
4707
4764
|
#
|
4708
4765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetMLTransform AWS API Documentation
|
4709
4766
|
#
|
@@ -4806,6 +4863,9 @@ module Aws::Glue
|
|
4806
4863
|
# resp.transforms[0].number_of_workers #=> Integer
|
4807
4864
|
# resp.transforms[0].timeout #=> Integer
|
4808
4865
|
# resp.transforms[0].max_retries #=> Integer
|
4866
|
+
# resp.transforms[0].transform_encryption.ml_user_data_encryption.ml_user_data_encryption_mode #=> String, one of "DISABLED", "SSE-KMS"
|
4867
|
+
# resp.transforms[0].transform_encryption.ml_user_data_encryption.kms_key_id #=> String
|
4868
|
+
# resp.transforms[0].transform_encryption.task_run_security_configuration_name #=> String
|
4809
4869
|
# resp.next_token #=> String
|
4810
4870
|
#
|
4811
4871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetMLTransforms AWS API Documentation
|
@@ -5229,6 +5289,15 @@ module Aws::Glue
|
|
5229
5289
|
# @option params [Hash<String,String>] :additional_plan_options_map
|
5230
5290
|
# A map to hold additional optional key-value parameters.
|
5231
5291
|
#
|
5292
|
+
# Currently, these key-value pairs are supported:
|
5293
|
+
#
|
5294
|
+
# * `inferSchema` — Specifies whether to set `inferSchema` to true or
|
5295
|
+
# false for the default script generated by an AWS Glue job. For
|
5296
|
+
# example, to set `inferSchema` to true, pass the following key value
|
5297
|
+
# pair:
|
5298
|
+
#
|
5299
|
+
# `--additional-plan-options-map '\{"inferSchema":"true"\}'`
|
5300
|
+
#
|
5232
5301
|
# @return [Types::GetPlanResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5233
5302
|
#
|
5234
5303
|
# * {Types::GetPlanResponse#python_script #python_script} => String
|
@@ -7947,6 +8016,9 @@ module Aws::Glue
|
|
7947
8016
|
|
7948
8017
|
# Creates or updates partition statistics of columns.
|
7949
8018
|
#
|
8019
|
+
# The Identity and Access Management (IAM) permission required for this
|
8020
|
+
# operation is `UpdatePartition`.
|
8021
|
+
#
|
7950
8022
|
# @option params [String] :catalog_id
|
7951
8023
|
# The ID of the Data Catalog where the partitions in question reside. If
|
7952
8024
|
# none is supplied, the AWS account ID is used by default.
|
@@ -8081,6 +8153,9 @@ module Aws::Glue
|
|
8081
8153
|
|
8082
8154
|
# Creates or updates table statistics of columns.
|
8083
8155
|
#
|
8156
|
+
# The Identity and Access Management (IAM) permission required for this
|
8157
|
+
# operation is `UpdateTable`.
|
8158
|
+
#
|
8084
8159
|
# @option params [String] :catalog_id
|
8085
8160
|
# The ID of the Data Catalog where the partitions in question reside. If
|
8086
8161
|
# none is supplied, the AWS account ID is used by default.
|
@@ -8294,6 +8369,10 @@ module Aws::Glue
|
|
8294
8369
|
# @option params [Types::SchemaChangePolicy] :schema_change_policy
|
8295
8370
|
# The policy for the crawler's update and deletion behavior.
|
8296
8371
|
#
|
8372
|
+
# @option params [Types::RecrawlPolicy] :recrawl_policy
|
8373
|
+
# A policy that specifies whether to crawl the entire dataset again, or
|
8374
|
+
# to crawl only folders that were added since the last crawler run.
|
8375
|
+
#
|
8297
8376
|
# @option params [String] :configuration
|
8298
8377
|
# Crawler configuration information. This versioned JSON string allows
|
8299
8378
|
# users to specify aspects of a crawler's behavior. For more
|
@@ -8331,6 +8410,13 @@ module Aws::Glue
|
|
8331
8410
|
# exclusions: ["Path"],
|
8332
8411
|
# },
|
8333
8412
|
# ],
|
8413
|
+
# mongo_db_targets: [
|
8414
|
+
# {
|
8415
|
+
# connection_name: "ConnectionName",
|
8416
|
+
# path: "Path",
|
8417
|
+
# scan_all: false,
|
8418
|
+
# },
|
8419
|
+
# ],
|
8334
8420
|
# dynamo_db_targets: [
|
8335
8421
|
# {
|
8336
8422
|
# path: "Path",
|
@@ -8352,6 +8438,9 @@ module Aws::Glue
|
|
8352
8438
|
# update_behavior: "LOG", # accepts LOG, UPDATE_IN_DATABASE
|
8353
8439
|
# delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
|
8354
8440
|
# },
|
8441
|
+
# recrawl_policy: {
|
8442
|
+
# recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
|
8443
|
+
# },
|
8355
8444
|
# configuration: "CrawlerConfiguration",
|
8356
8445
|
# crawler_security_configuration: "CrawlerSecurityConfiguration",
|
8357
8446
|
# })
|
@@ -9096,7 +9185,7 @@ module Aws::Glue
|
|
9096
9185
|
params: params,
|
9097
9186
|
config: config)
|
9098
9187
|
context[:gem_name] = 'aws-sdk-glue'
|
9099
|
-
context[:gem_version] = '1.
|
9188
|
+
context[:gem_version] = '1.78.0'
|
9100
9189
|
Seahorse::Client::Request.new(handlers, context)
|
9101
9190
|
end
|
9102
9191
|
|
@@ -428,6 +428,8 @@ module Aws::Glue
|
|
428
428
|
LongColumnStatisticsData = Shapes::StructureShape.new(name: 'LongColumnStatisticsData')
|
429
429
|
MLTransform = Shapes::StructureShape.new(name: 'MLTransform')
|
430
430
|
MLTransformNotReadyException = Shapes::StructureShape.new(name: 'MLTransformNotReadyException')
|
431
|
+
MLUserDataEncryption = Shapes::StructureShape.new(name: 'MLUserDataEncryption')
|
432
|
+
MLUserDataEncryptionModeString = Shapes::StringShape.new(name: 'MLUserDataEncryptionModeString')
|
431
433
|
MapValue = Shapes::MapShape.new(name: 'MapValue')
|
432
434
|
MappingEntry = Shapes::StructureShape.new(name: 'MappingEntry')
|
433
435
|
MappingList = Shapes::ListShape.new(name: 'MappingList')
|
@@ -437,6 +439,8 @@ module Aws::Glue
|
|
437
439
|
MessagePrefix = Shapes::StringShape.new(name: 'MessagePrefix')
|
438
440
|
MessageString = Shapes::StringShape.new(name: 'MessageString')
|
439
441
|
MillisecondsCount = Shapes::IntegerShape.new(name: 'MillisecondsCount')
|
442
|
+
MongoDBTarget = Shapes::StructureShape.new(name: 'MongoDBTarget')
|
443
|
+
MongoDBTargetList = Shapes::ListShape.new(name: 'MongoDBTargetList')
|
440
444
|
NameString = Shapes::StringShape.new(name: 'NameString')
|
441
445
|
NameStringList = Shapes::ListShape.new(name: 'NameStringList')
|
442
446
|
NoScheduleException = Shapes::StructureShape.new(name: 'NoScheduleException')
|
@@ -496,6 +500,8 @@ module Aws::Glue
|
|
496
500
|
PythonScript = Shapes::StringShape.new(name: 'PythonScript')
|
497
501
|
PythonVersionString = Shapes::StringShape.new(name: 'PythonVersionString')
|
498
502
|
RecordsCount = Shapes::IntegerShape.new(name: 'RecordsCount')
|
503
|
+
RecrawlBehavior = Shapes::StringShape.new(name: 'RecrawlBehavior')
|
504
|
+
RecrawlPolicy = Shapes::StructureShape.new(name: 'RecrawlPolicy')
|
499
505
|
ReplaceBoolean = Shapes::BooleanShape.new(name: 'ReplaceBoolean')
|
500
506
|
ResetJobBookmarkRequest = Shapes::StructureShape.new(name: 'ResetJobBookmarkRequest')
|
501
507
|
ResetJobBookmarkResponse = Shapes::StructureShape.new(name: 'ResetJobBookmarkResponse')
|
@@ -599,6 +605,7 @@ module Aws::Glue
|
|
599
605
|
TimestampValue = Shapes::TimestampShape.new(name: 'TimestampValue')
|
600
606
|
Token = Shapes::StringShape.new(name: 'Token')
|
601
607
|
TotalSegmentsInteger = Shapes::IntegerShape.new(name: 'TotalSegmentsInteger')
|
608
|
+
TransformEncryption = Shapes::StructureShape.new(name: 'TransformEncryption')
|
602
609
|
TransformFilterCriteria = Shapes::StructureShape.new(name: 'TransformFilterCriteria')
|
603
610
|
TransformIdList = Shapes::ListShape.new(name: 'TransformIdList')
|
604
611
|
TransformList = Shapes::ListShape.new(name: 'TransformList')
|
@@ -1024,6 +1031,7 @@ module Aws::Glue
|
|
1024
1031
|
Crawler.add_member(:database_name, Shapes::ShapeRef.new(shape: DatabaseName, location_name: "DatabaseName"))
|
1025
1032
|
Crawler.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
|
1026
1033
|
Crawler.add_member(:classifiers, Shapes::ShapeRef.new(shape: ClassifierNameList, location_name: "Classifiers"))
|
1034
|
+
Crawler.add_member(:recrawl_policy, Shapes::ShapeRef.new(shape: RecrawlPolicy, location_name: "RecrawlPolicy"))
|
1027
1035
|
Crawler.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: SchemaChangePolicy, location_name: "SchemaChangePolicy"))
|
1028
1036
|
Crawler.add_member(:state, Shapes::ShapeRef.new(shape: CrawlerState, location_name: "State"))
|
1029
1037
|
Crawler.add_member(:table_prefix, Shapes::ShapeRef.new(shape: TablePrefix, location_name: "TablePrefix"))
|
@@ -1067,6 +1075,7 @@ module Aws::Glue
|
|
1067
1075
|
|
1068
1076
|
CrawlerTargets.add_member(:s3_targets, Shapes::ShapeRef.new(shape: S3TargetList, location_name: "S3Targets"))
|
1069
1077
|
CrawlerTargets.add_member(:jdbc_targets, Shapes::ShapeRef.new(shape: JdbcTargetList, location_name: "JdbcTargets"))
|
1078
|
+
CrawlerTargets.add_member(:mongo_db_targets, Shapes::ShapeRef.new(shape: MongoDBTargetList, location_name: "MongoDBTargets"))
|
1070
1079
|
CrawlerTargets.add_member(:dynamo_db_targets, Shapes::ShapeRef.new(shape: DynamoDBTargetList, location_name: "DynamoDBTargets"))
|
1071
1080
|
CrawlerTargets.add_member(:catalog_targets, Shapes::ShapeRef.new(shape: CatalogTargetList, location_name: "CatalogTargets"))
|
1072
1081
|
CrawlerTargets.struct_class = Types::CrawlerTargets
|
@@ -1094,6 +1103,7 @@ module Aws::Glue
|
|
1094
1103
|
CreateCrawlerRequest.add_member(:classifiers, Shapes::ShapeRef.new(shape: ClassifierNameList, location_name: "Classifiers"))
|
1095
1104
|
CreateCrawlerRequest.add_member(:table_prefix, Shapes::ShapeRef.new(shape: TablePrefix, location_name: "TablePrefix"))
|
1096
1105
|
CreateCrawlerRequest.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: SchemaChangePolicy, location_name: "SchemaChangePolicy"))
|
1106
|
+
CreateCrawlerRequest.add_member(:recrawl_policy, Shapes::ShapeRef.new(shape: RecrawlPolicy, location_name: "RecrawlPolicy"))
|
1097
1107
|
CreateCrawlerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CrawlerConfiguration, location_name: "Configuration"))
|
1098
1108
|
CreateCrawlerRequest.add_member(:crawler_security_configuration, Shapes::ShapeRef.new(shape: CrawlerSecurityConfiguration, location_name: "CrawlerSecurityConfiguration"))
|
1099
1109
|
CreateCrawlerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
@@ -1200,6 +1210,7 @@ module Aws::Glue
|
|
1200
1210
|
CreateMLTransformRequest.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1201
1211
|
CreateMLTransformRequest.add_member(:max_retries, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "MaxRetries"))
|
1202
1212
|
CreateMLTransformRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
1213
|
+
CreateMLTransformRequest.add_member(:transform_encryption, Shapes::ShapeRef.new(shape: TransformEncryption, location_name: "TransformEncryption"))
|
1203
1214
|
CreateMLTransformRequest.struct_class = Types::CreateMLTransformRequest
|
1204
1215
|
|
1205
1216
|
CreateMLTransformResponse.add_member(:transform_id, Shapes::ShapeRef.new(shape: HashString, location_name: "TransformId"))
|
@@ -1775,6 +1786,7 @@ module Aws::Glue
|
|
1775
1786
|
GetMLTransformResponse.add_member(:number_of_workers, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "NumberOfWorkers"))
|
1776
1787
|
GetMLTransformResponse.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1777
1788
|
GetMLTransformResponse.add_member(:max_retries, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "MaxRetries"))
|
1789
|
+
GetMLTransformResponse.add_member(:transform_encryption, Shapes::ShapeRef.new(shape: TransformEncryption, location_name: "TransformEncryption"))
|
1778
1790
|
GetMLTransformResponse.struct_class = Types::GetMLTransformResponse
|
1779
1791
|
|
1780
1792
|
GetMLTransformsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
@@ -2245,11 +2257,16 @@ module Aws::Glue
|
|
2245
2257
|
MLTransform.add_member(:number_of_workers, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "NumberOfWorkers"))
|
2246
2258
|
MLTransform.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
2247
2259
|
MLTransform.add_member(:max_retries, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "MaxRetries"))
|
2260
|
+
MLTransform.add_member(:transform_encryption, Shapes::ShapeRef.new(shape: TransformEncryption, location_name: "TransformEncryption"))
|
2248
2261
|
MLTransform.struct_class = Types::MLTransform
|
2249
2262
|
|
2250
2263
|
MLTransformNotReadyException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
2251
2264
|
MLTransformNotReadyException.struct_class = Types::MLTransformNotReadyException
|
2252
2265
|
|
2266
|
+
MLUserDataEncryption.add_member(:ml_user_data_encryption_mode, Shapes::ShapeRef.new(shape: MLUserDataEncryptionModeString, required: true, location_name: "MlUserDataEncryptionMode"))
|
2267
|
+
MLUserDataEncryption.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NameString, location_name: "KmsKeyId"))
|
2268
|
+
MLUserDataEncryption.struct_class = Types::MLUserDataEncryption
|
2269
|
+
|
2253
2270
|
MapValue.key = Shapes::ShapeRef.new(shape: GenericString)
|
2254
2271
|
MapValue.value = Shapes::ShapeRef.new(shape: GenericString)
|
2255
2272
|
|
@@ -2265,6 +2282,13 @@ module Aws::Glue
|
|
2265
2282
|
|
2266
2283
|
MatchCriteria.member = Shapes::ShapeRef.new(shape: NameString)
|
2267
2284
|
|
2285
|
+
MongoDBTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
|
2286
|
+
MongoDBTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
2287
|
+
MongoDBTarget.add_member(:scan_all, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ScanAll"))
|
2288
|
+
MongoDBTarget.struct_class = Types::MongoDBTarget
|
2289
|
+
|
2290
|
+
MongoDBTargetList.member = Shapes::ShapeRef.new(shape: MongoDBTarget)
|
2291
|
+
|
2268
2292
|
NameStringList.member = Shapes::ShapeRef.new(shape: NameString)
|
2269
2293
|
|
2270
2294
|
NoScheduleException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
@@ -2398,6 +2422,9 @@ module Aws::Glue
|
|
2398
2422
|
|
2399
2423
|
PutWorkflowRunPropertiesResponse.struct_class = Types::PutWorkflowRunPropertiesResponse
|
2400
2424
|
|
2425
|
+
RecrawlPolicy.add_member(:recrawl_behavior, Shapes::ShapeRef.new(shape: RecrawlBehavior, location_name: "RecrawlBehavior"))
|
2426
|
+
RecrawlPolicy.struct_class = Types::RecrawlPolicy
|
2427
|
+
|
2401
2428
|
ResetJobBookmarkRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, required: true, location_name: "JobName"))
|
2402
2429
|
ResetJobBookmarkRequest.add_member(:run_id, Shapes::ShapeRef.new(shape: RunId, location_name: "RunId"))
|
2403
2430
|
ResetJobBookmarkRequest.struct_class = Types::ResetJobBookmarkRequest
|
@@ -2712,6 +2739,10 @@ module Aws::Glue
|
|
2712
2739
|
TaskRunSortCriteria.add_member(:sort_direction, Shapes::ShapeRef.new(shape: SortDirectionType, required: true, location_name: "SortDirection"))
|
2713
2740
|
TaskRunSortCriteria.struct_class = Types::TaskRunSortCriteria
|
2714
2741
|
|
2742
|
+
TransformEncryption.add_member(:ml_user_data_encryption, Shapes::ShapeRef.new(shape: MLUserDataEncryption, location_name: "MlUserDataEncryption"))
|
2743
|
+
TransformEncryption.add_member(:task_run_security_configuration_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TaskRunSecurityConfigurationName"))
|
2744
|
+
TransformEncryption.struct_class = Types::TransformEncryption
|
2745
|
+
|
2715
2746
|
TransformFilterCriteria.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
2716
2747
|
TransformFilterCriteria.add_member(:transform_type, Shapes::ShapeRef.new(shape: TransformType, location_name: "TransformType"))
|
2717
2748
|
TransformFilterCriteria.add_member(:status, Shapes::ShapeRef.new(shape: TransformStatusType, location_name: "Status"))
|
@@ -2813,6 +2844,7 @@ module Aws::Glue
|
|
2813
2844
|
UpdateCrawlerRequest.add_member(:classifiers, Shapes::ShapeRef.new(shape: ClassifierNameList, location_name: "Classifiers"))
|
2814
2845
|
UpdateCrawlerRequest.add_member(:table_prefix, Shapes::ShapeRef.new(shape: TablePrefix, location_name: "TablePrefix"))
|
2815
2846
|
UpdateCrawlerRequest.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: SchemaChangePolicy, location_name: "SchemaChangePolicy"))
|
2847
|
+
UpdateCrawlerRequest.add_member(:recrawl_policy, Shapes::ShapeRef.new(shape: RecrawlPolicy, location_name: "RecrawlPolicy"))
|
2816
2848
|
UpdateCrawlerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CrawlerConfiguration, location_name: "Configuration"))
|
2817
2849
|
UpdateCrawlerRequest.add_member(:crawler_security_configuration, Shapes::ShapeRef.new(shape: CrawlerSecurityConfiguration, location_name: "CrawlerSecurityConfiguration"))
|
2818
2850
|
UpdateCrawlerRequest.struct_class = Types::UpdateCrawlerRequest
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -968,7 +968,7 @@ module Aws::Glue
|
|
968
968
|
include Aws::Structure
|
969
969
|
end
|
970
970
|
|
971
|
-
# Defines
|
971
|
+
# Defines column statistics supported for bit sequence data values.
|
972
972
|
#
|
973
973
|
# @note When making an API call, you may pass BinaryColumnStatisticsData
|
974
974
|
# data as a hash:
|
@@ -980,15 +980,15 @@ module Aws::Glue
|
|
980
980
|
# }
|
981
981
|
#
|
982
982
|
# @!attribute [rw] maximum_length
|
983
|
-
#
|
983
|
+
# The size of the longest bit sequence in the column.
|
984
984
|
# @return [Integer]
|
985
985
|
#
|
986
986
|
# @!attribute [rw] average_length
|
987
|
-
#
|
987
|
+
# The average bit sequence length in the column.
|
988
988
|
# @return [Float]
|
989
989
|
#
|
990
990
|
# @!attribute [rw] number_of_nulls
|
991
|
-
#
|
991
|
+
# The number of null values in the column.
|
992
992
|
# @return [Integer]
|
993
993
|
#
|
994
994
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BinaryColumnStatisticsData AWS API Documentation
|
@@ -1001,7 +1001,7 @@ module Aws::Glue
|
|
1001
1001
|
include Aws::Structure
|
1002
1002
|
end
|
1003
1003
|
|
1004
|
-
# Defines
|
1004
|
+
# Defines column statistics supported for Boolean data columns.
|
1005
1005
|
#
|
1006
1006
|
# @note When making an API call, you may pass BooleanColumnStatisticsData
|
1007
1007
|
# data as a hash:
|
@@ -1013,15 +1013,15 @@ module Aws::Glue
|
|
1013
1013
|
# }
|
1014
1014
|
#
|
1015
1015
|
# @!attribute [rw] number_of_trues
|
1016
|
-
#
|
1016
|
+
# The number of true values in the column.
|
1017
1017
|
# @return [Integer]
|
1018
1018
|
#
|
1019
1019
|
# @!attribute [rw] number_of_falses
|
1020
|
-
#
|
1020
|
+
# The number of false values in the column.
|
1021
1021
|
# @return [Integer]
|
1022
1022
|
#
|
1023
1023
|
# @!attribute [rw] number_of_nulls
|
1024
|
-
#
|
1024
|
+
# The number of null values in the column.
|
1025
1025
|
# @return [Integer]
|
1026
1026
|
#
|
1027
1027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BooleanColumnStatisticsData AWS API Documentation
|
@@ -1378,14 +1378,14 @@ module Aws::Glue
|
|
1378
1378
|
include Aws::Structure
|
1379
1379
|
end
|
1380
1380
|
|
1381
|
-
#
|
1381
|
+
# Encapsulates a column name that failed and the reason for failure.
|
1382
1382
|
#
|
1383
1383
|
# @!attribute [rw] column_name
|
1384
|
-
# The name of the column.
|
1384
|
+
# The name of the column that failed.
|
1385
1385
|
# @return [String]
|
1386
1386
|
#
|
1387
1387
|
# @!attribute [rw] error
|
1388
|
-
#
|
1388
|
+
# An error message with the reason for the failure of an operation.
|
1389
1389
|
# @return [Types::ErrorDetail]
|
1390
1390
|
#
|
1391
1391
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ColumnError AWS API Documentation
|
@@ -1397,7 +1397,8 @@ module Aws::Glue
|
|
1397
1397
|
include Aws::Structure
|
1398
1398
|
end
|
1399
1399
|
|
1400
|
-
#
|
1400
|
+
# Represents the generated column-level statistics for a table or
|
1401
|
+
# partition.
|
1401
1402
|
#
|
1402
1403
|
# @note When making an API call, you may pass ColumnStatistics
|
1403
1404
|
# data as a hash:
|
@@ -1458,19 +1459,20 @@ module Aws::Glue
|
|
1458
1459
|
# }
|
1459
1460
|
#
|
1460
1461
|
# @!attribute [rw] column_name
|
1461
|
-
#
|
1462
|
+
# Name of column which statistics belong to.
|
1462
1463
|
# @return [String]
|
1463
1464
|
#
|
1464
1465
|
# @!attribute [rw] column_type
|
1465
|
-
# The type of the column.
|
1466
|
+
# The data type of the column.
|
1466
1467
|
# @return [String]
|
1467
1468
|
#
|
1468
1469
|
# @!attribute [rw] analyzed_time
|
1469
|
-
# The
|
1470
|
+
# The timestamp of when column statistics were generated.
|
1470
1471
|
# @return [Time]
|
1471
1472
|
#
|
1472
1473
|
# @!attribute [rw] statistics_data
|
1473
|
-
#
|
1474
|
+
# A `ColumnStatisticData` object that contains the statistics data
|
1475
|
+
# values.
|
1474
1476
|
# @return [Types::ColumnStatisticsData]
|
1475
1477
|
#
|
1476
1478
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ColumnStatistics AWS API Documentation
|
@@ -1484,7 +1486,8 @@ module Aws::Glue
|
|
1484
1486
|
include Aws::Structure
|
1485
1487
|
end
|
1486
1488
|
|
1487
|
-
#
|
1489
|
+
# Contains the individual types of column statistics data. Only one data
|
1490
|
+
# object should be set and indicated by the `Type` attribute.
|
1488
1491
|
#
|
1489
1492
|
# @note When making an API call, you may pass ColumnStatisticsData
|
1490
1493
|
# data as a hash:
|
@@ -1540,35 +1543,35 @@ module Aws::Glue
|
|
1540
1543
|
# }
|
1541
1544
|
#
|
1542
1545
|
# @!attribute [rw] type
|
1543
|
-
# The
|
1546
|
+
# The type of column statistics data.
|
1544
1547
|
# @return [String]
|
1545
1548
|
#
|
1546
1549
|
# @!attribute [rw] boolean_column_statistics_data
|
1547
|
-
# Boolean
|
1550
|
+
# Boolean column statistics data.
|
1548
1551
|
# @return [Types::BooleanColumnStatisticsData]
|
1549
1552
|
#
|
1550
1553
|
# @!attribute [rw] date_column_statistics_data
|
1551
|
-
# Date
|
1554
|
+
# Date column statistics data.
|
1552
1555
|
# @return [Types::DateColumnStatisticsData]
|
1553
1556
|
#
|
1554
1557
|
# @!attribute [rw] decimal_column_statistics_data
|
1555
|
-
# Decimal
|
1558
|
+
# Decimal column statistics data.
|
1556
1559
|
# @return [Types::DecimalColumnStatisticsData]
|
1557
1560
|
#
|
1558
1561
|
# @!attribute [rw] double_column_statistics_data
|
1559
|
-
# Double
|
1562
|
+
# Double column statistics data.
|
1560
1563
|
# @return [Types::DoubleColumnStatisticsData]
|
1561
1564
|
#
|
1562
1565
|
# @!attribute [rw] long_column_statistics_data
|
1563
|
-
# Long
|
1566
|
+
# Long column statistics data.
|
1564
1567
|
# @return [Types::LongColumnStatisticsData]
|
1565
1568
|
#
|
1566
1569
|
# @!attribute [rw] string_column_statistics_data
|
1567
|
-
# String
|
1570
|
+
# String column statistics data.
|
1568
1571
|
# @return [Types::StringColumnStatisticsData]
|
1569
1572
|
#
|
1570
1573
|
# @!attribute [rw] binary_column_statistics_data
|
1571
|
-
# Binary
|
1574
|
+
# Binary column statistics data.
|
1572
1575
|
# @return [Types::BinaryColumnStatisticsData]
|
1573
1576
|
#
|
1574
1577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ColumnStatisticsData AWS API Documentation
|
@@ -1586,14 +1589,15 @@ module Aws::Glue
|
|
1586
1589
|
include Aws::Structure
|
1587
1590
|
end
|
1588
1591
|
|
1589
|
-
#
|
1592
|
+
# Encapsulates a `ColumnStatistics` object that failed and the reason
|
1593
|
+
# for failure.
|
1590
1594
|
#
|
1591
1595
|
# @!attribute [rw] column_statistics
|
1592
|
-
# The ColumnStatistics of the column.
|
1596
|
+
# The `ColumnStatistics` of the column.
|
1593
1597
|
# @return [Types::ColumnStatistics]
|
1594
1598
|
#
|
1595
1599
|
# @!attribute [rw] error
|
1596
|
-
#
|
1600
|
+
# An error message with the reason for the failure of an operation.
|
1597
1601
|
# @return [Types::ErrorDetail]
|
1598
1602
|
#
|
1599
1603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ColumnStatisticsError AWS API Documentation
|
@@ -2103,6 +2107,11 @@ module Aws::Glue
|
|
2103
2107
|
# associated with the crawler.
|
2104
2108
|
# @return [Array<String>]
|
2105
2109
|
#
|
2110
|
+
# @!attribute [rw] recrawl_policy
|
2111
|
+
# A policy that specifies whether to crawl the entire dataset again,
|
2112
|
+
# or to crawl only folders that were added since the last crawler run.
|
2113
|
+
# @return [Types::RecrawlPolicy]
|
2114
|
+
#
|
2106
2115
|
# @!attribute [rw] schema_change_policy
|
2107
2116
|
# The policy that specifies update and delete behaviors for the
|
2108
2117
|
# crawler.
|
@@ -2167,6 +2176,7 @@ module Aws::Glue
|
|
2167
2176
|
:database_name,
|
2168
2177
|
:description,
|
2169
2178
|
:classifiers,
|
2179
|
+
:recrawl_policy,
|
2170
2180
|
:schema_change_policy,
|
2171
2181
|
:state,
|
2172
2182
|
:table_prefix,
|
@@ -2309,6 +2319,13 @@ module Aws::Glue
|
|
2309
2319
|
# exclusions: ["Path"],
|
2310
2320
|
# },
|
2311
2321
|
# ],
|
2322
|
+
# mongo_db_targets: [
|
2323
|
+
# {
|
2324
|
+
# connection_name: "ConnectionName",
|
2325
|
+
# path: "Path",
|
2326
|
+
# scan_all: false,
|
2327
|
+
# },
|
2328
|
+
# ],
|
2312
2329
|
# dynamo_db_targets: [
|
2313
2330
|
# {
|
2314
2331
|
# path: "Path",
|
@@ -2332,6 +2349,10 @@ module Aws::Glue
|
|
2332
2349
|
# Specifies JDBC targets.
|
2333
2350
|
# @return [Array<Types::JdbcTarget>]
|
2334
2351
|
#
|
2352
|
+
# @!attribute [rw] mongo_db_targets
|
2353
|
+
# Specifies Amazon DocumentDB or MongoDB targets.
|
2354
|
+
# @return [Array<Types::MongoDBTarget>]
|
2355
|
+
#
|
2335
2356
|
# @!attribute [rw] dynamo_db_targets
|
2336
2357
|
# Specifies Amazon DynamoDB targets.
|
2337
2358
|
# @return [Array<Types::DynamoDBTarget>]
|
@@ -2345,6 +2366,7 @@ module Aws::Glue
|
|
2345
2366
|
class CrawlerTargets < Struct.new(
|
2346
2367
|
:s3_targets,
|
2347
2368
|
:jdbc_targets,
|
2369
|
+
:mongo_db_targets,
|
2348
2370
|
:dynamo_db_targets,
|
2349
2371
|
:catalog_targets)
|
2350
2372
|
SENSITIVE = []
|
@@ -2478,6 +2500,13 @@ module Aws::Glue
|
|
2478
2500
|
# exclusions: ["Path"],
|
2479
2501
|
# },
|
2480
2502
|
# ],
|
2503
|
+
# mongo_db_targets: [
|
2504
|
+
# {
|
2505
|
+
# connection_name: "ConnectionName",
|
2506
|
+
# path: "Path",
|
2507
|
+
# scan_all: false,
|
2508
|
+
# },
|
2509
|
+
# ],
|
2481
2510
|
# dynamo_db_targets: [
|
2482
2511
|
# {
|
2483
2512
|
# path: "Path",
|
@@ -2499,6 +2528,9 @@ module Aws::Glue
|
|
2499
2528
|
# update_behavior: "LOG", # accepts LOG, UPDATE_IN_DATABASE
|
2500
2529
|
# delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
|
2501
2530
|
# },
|
2531
|
+
# recrawl_policy: {
|
2532
|
+
# recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
|
2533
|
+
# },
|
2502
2534
|
# configuration: "CrawlerConfiguration",
|
2503
2535
|
# crawler_security_configuration: "CrawlerSecurityConfiguration",
|
2504
2536
|
# tags: {
|
@@ -2553,6 +2585,11 @@ module Aws::Glue
|
|
2553
2585
|
# The policy for the crawler's update and deletion behavior.
|
2554
2586
|
# @return [Types::SchemaChangePolicy]
|
2555
2587
|
#
|
2588
|
+
# @!attribute [rw] recrawl_policy
|
2589
|
+
# A policy that specifies whether to crawl the entire dataset again,
|
2590
|
+
# or to crawl only folders that were added since the last crawler run.
|
2591
|
+
# @return [Types::RecrawlPolicy]
|
2592
|
+
#
|
2556
2593
|
# @!attribute [rw] configuration
|
2557
2594
|
# Crawler configuration information. This versioned JSON string allows
|
2558
2595
|
# users to specify aspects of a crawler's behavior. For more
|
@@ -2590,6 +2627,7 @@ module Aws::Glue
|
|
2590
2627
|
:classifiers,
|
2591
2628
|
:table_prefix,
|
2592
2629
|
:schema_change_policy,
|
2630
|
+
:recrawl_policy,
|
2593
2631
|
:configuration,
|
2594
2632
|
:crawler_security_configuration,
|
2595
2633
|
:tags)
|
@@ -3368,6 +3406,13 @@ module Aws::Glue
|
|
3368
3406
|
# tags: {
|
3369
3407
|
# "TagKey" => "TagValue",
|
3370
3408
|
# },
|
3409
|
+
# transform_encryption: {
|
3410
|
+
# ml_user_data_encryption: {
|
3411
|
+
# ml_user_data_encryption_mode: "DISABLED", # required, accepts DISABLED, SSE-KMS
|
3412
|
+
# kms_key_id: "NameString",
|
3413
|
+
# },
|
3414
|
+
# task_run_security_configuration_name: "NameString",
|
3415
|
+
# },
|
3371
3416
|
# }
|
3372
3417
|
#
|
3373
3418
|
# @!attribute [rw] name
|
@@ -3511,6 +3556,12 @@ module Aws::Glue
|
|
3511
3556
|
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
|
3512
3557
|
# @return [Hash<String,String>]
|
3513
3558
|
#
|
3559
|
+
# @!attribute [rw] transform_encryption
|
3560
|
+
# The encryption-at-rest settings of the transform that apply to
|
3561
|
+
# accessing user data. Machine learning transforms can access user
|
3562
|
+
# data encrypted in Amazon S3 using KMS.
|
3563
|
+
# @return [Types::TransformEncryption]
|
3564
|
+
#
|
3514
3565
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateMLTransformRequest AWS API Documentation
|
3515
3566
|
#
|
3516
3567
|
class CreateMLTransformRequest < Struct.new(
|
@@ -3525,7 +3576,8 @@ module Aws::Glue
|
|
3525
3576
|
:number_of_workers,
|
3526
3577
|
:timeout,
|
3527
3578
|
:max_retries,
|
3528
|
-
:tags
|
3579
|
+
:tags,
|
3580
|
+
:transform_encryption)
|
3529
3581
|
SENSITIVE = []
|
3530
3582
|
include Aws::Structure
|
3531
3583
|
end
|
@@ -4422,7 +4474,7 @@ module Aws::Glue
|
|
4422
4474
|
include Aws::Structure
|
4423
4475
|
end
|
4424
4476
|
|
4425
|
-
# Defines
|
4477
|
+
# Defines column statistics supported for timestamp data columns.
|
4426
4478
|
#
|
4427
4479
|
# @note When making an API call, you may pass DateColumnStatisticsData
|
4428
4480
|
# data as a hash:
|
@@ -4435,19 +4487,19 @@ module Aws::Glue
|
|
4435
4487
|
# }
|
4436
4488
|
#
|
4437
4489
|
# @!attribute [rw] minimum_value
|
4438
|
-
#
|
4490
|
+
# The lowest value in the column.
|
4439
4491
|
# @return [Time]
|
4440
4492
|
#
|
4441
4493
|
# @!attribute [rw] maximum_value
|
4442
|
-
#
|
4494
|
+
# The highest value in the column.
|
4443
4495
|
# @return [Time]
|
4444
4496
|
#
|
4445
4497
|
# @!attribute [rw] number_of_nulls
|
4446
|
-
#
|
4498
|
+
# The number of null values in the column.
|
4447
4499
|
# @return [Integer]
|
4448
4500
|
#
|
4449
4501
|
# @!attribute [rw] number_of_distinct_values
|
4450
|
-
#
|
4502
|
+
# The number of distinct values in a column.
|
4451
4503
|
# @return [Integer]
|
4452
4504
|
#
|
4453
4505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DateColumnStatisticsData AWS API Documentation
|
@@ -4461,7 +4513,8 @@ module Aws::Glue
|
|
4461
4513
|
include Aws::Structure
|
4462
4514
|
end
|
4463
4515
|
|
4464
|
-
# Defines
|
4516
|
+
# Defines column statistics supported for fixed-point number data
|
4517
|
+
# columns.
|
4465
4518
|
#
|
4466
4519
|
# @note When making an API call, you may pass DecimalColumnStatisticsData
|
4467
4520
|
# data as a hash:
|
@@ -4480,19 +4533,19 @@ module Aws::Glue
|
|
4480
4533
|
# }
|
4481
4534
|
#
|
4482
4535
|
# @!attribute [rw] minimum_value
|
4483
|
-
#
|
4536
|
+
# The lowest value in the column.
|
4484
4537
|
# @return [Types::DecimalNumber]
|
4485
4538
|
#
|
4486
4539
|
# @!attribute [rw] maximum_value
|
4487
|
-
#
|
4540
|
+
# The highest value in the column.
|
4488
4541
|
# @return [Types::DecimalNumber]
|
4489
4542
|
#
|
4490
4543
|
# @!attribute [rw] number_of_nulls
|
4491
|
-
#
|
4544
|
+
# The number of null values in the column.
|
4492
4545
|
# @return [Integer]
|
4493
4546
|
#
|
4494
4547
|
# @!attribute [rw] number_of_distinct_values
|
4495
|
-
#
|
4548
|
+
# The number of distinct values in a column.
|
4496
4549
|
# @return [Integer]
|
4497
4550
|
#
|
4498
4551
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DecimalColumnStatisticsData AWS API Documentation
|
@@ -5362,7 +5415,8 @@ module Aws::Glue
|
|
5362
5415
|
include Aws::Structure
|
5363
5416
|
end
|
5364
5417
|
|
5365
|
-
# Defines
|
5418
|
+
# Defines column statistics supported for floating-point number data
|
5419
|
+
# columns.
|
5366
5420
|
#
|
5367
5421
|
# @note When making an API call, you may pass DoubleColumnStatisticsData
|
5368
5422
|
# data as a hash:
|
@@ -5375,19 +5429,19 @@ module Aws::Glue
|
|
5375
5429
|
# }
|
5376
5430
|
#
|
5377
5431
|
# @!attribute [rw] minimum_value
|
5378
|
-
#
|
5432
|
+
# The lowest value in the column.
|
5379
5433
|
# @return [Float]
|
5380
5434
|
#
|
5381
5435
|
# @!attribute [rw] maximum_value
|
5382
|
-
#
|
5436
|
+
# The highest value in the column.
|
5383
5437
|
# @return [Float]
|
5384
5438
|
#
|
5385
5439
|
# @!attribute [rw] number_of_nulls
|
5386
|
-
#
|
5440
|
+
# The number of null values in the column.
|
5387
5441
|
# @return [Integer]
|
5388
5442
|
#
|
5389
5443
|
# @!attribute [rw] number_of_distinct_values
|
5390
|
-
#
|
5444
|
+
# The number of distinct values in a column.
|
5391
5445
|
# @return [Integer]
|
5392
5446
|
#
|
5393
5447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DoubleColumnStatisticsData AWS API Documentation
|
@@ -7031,6 +7085,12 @@ module Aws::Glue
|
|
7031
7085
|
# a task run fails.
|
7032
7086
|
# @return [Integer]
|
7033
7087
|
#
|
7088
|
+
# @!attribute [rw] transform_encryption
|
7089
|
+
# The encryption-at-rest settings of the transform that apply to
|
7090
|
+
# accessing user data. Machine learning transforms can access user
|
7091
|
+
# data encrypted in Amazon S3 using KMS.
|
7092
|
+
# @return [Types::TransformEncryption]
|
7093
|
+
#
|
7034
7094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetMLTransformResponse AWS API Documentation
|
7035
7095
|
#
|
7036
7096
|
class GetMLTransformResponse < Struct.new(
|
@@ -7051,7 +7111,8 @@ module Aws::Glue
|
|
7051
7111
|
:worker_type,
|
7052
7112
|
:number_of_workers,
|
7053
7113
|
:timeout,
|
7054
|
-
:max_retries
|
7114
|
+
:max_retries,
|
7115
|
+
:transform_encryption)
|
7055
7116
|
SENSITIVE = []
|
7056
7117
|
include Aws::Structure
|
7057
7118
|
end
|
@@ -7554,6 +7615,15 @@ module Aws::Glue
|
|
7554
7615
|
#
|
7555
7616
|
# @!attribute [rw] additional_plan_options_map
|
7556
7617
|
# A map to hold additional optional key-value parameters.
|
7618
|
+
#
|
7619
|
+
# Currently, these key-value pairs are supported:
|
7620
|
+
#
|
7621
|
+
# * `inferSchema` — Specifies whether to set `inferSchema` to true
|
7622
|
+
# or false for the default script generated by an AWS Glue job. For
|
7623
|
+
# example, to set `inferSchema` to true, pass the following key
|
7624
|
+
# value pair:
|
7625
|
+
#
|
7626
|
+
# `--additional-plan-options-map '\{"inferSchema":"true"\}'`
|
7557
7627
|
# @return [Hash<String,String>]
|
7558
7628
|
#
|
7559
7629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPlanRequest AWS API Documentation
|
@@ -9912,7 +9982,7 @@ module Aws::Glue
|
|
9912
9982
|
include Aws::Structure
|
9913
9983
|
end
|
9914
9984
|
|
9915
|
-
# Defines
|
9985
|
+
# Defines column statistics supported for integer data columns.
|
9916
9986
|
#
|
9917
9987
|
# @note When making an API call, you may pass LongColumnStatisticsData
|
9918
9988
|
# data as a hash:
|
@@ -9925,19 +9995,19 @@ module Aws::Glue
|
|
9925
9995
|
# }
|
9926
9996
|
#
|
9927
9997
|
# @!attribute [rw] minimum_value
|
9928
|
-
#
|
9998
|
+
# The lowest value in the column.
|
9929
9999
|
# @return [Integer]
|
9930
10000
|
#
|
9931
10001
|
# @!attribute [rw] maximum_value
|
9932
|
-
#
|
10002
|
+
# The highest value in the column.
|
9933
10003
|
# @return [Integer]
|
9934
10004
|
#
|
9935
10005
|
# @!attribute [rw] number_of_nulls
|
9936
|
-
#
|
10006
|
+
# The number of null values in the column.
|
9937
10007
|
# @return [Integer]
|
9938
10008
|
#
|
9939
10009
|
# @!attribute [rw] number_of_distinct_values
|
9940
|
-
#
|
10010
|
+
# The number of distinct values in a column.
|
9941
10011
|
# @return [Integer]
|
9942
10012
|
#
|
9943
10013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/LongColumnStatisticsData AWS API Documentation
|
@@ -10117,6 +10187,12 @@ module Aws::Glue
|
|
10117
10187
|
# machine learning transform fails.
|
10118
10188
|
# @return [Integer]
|
10119
10189
|
#
|
10190
|
+
# @!attribute [rw] transform_encryption
|
10191
|
+
# The encryption-at-rest settings of the transform that apply to
|
10192
|
+
# accessing user data. Machine learning transforms can access user
|
10193
|
+
# data encrypted in Amazon S3 using KMS.
|
10194
|
+
# @return [Types::TransformEncryption]
|
10195
|
+
#
|
10120
10196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/MLTransform AWS API Documentation
|
10121
10197
|
#
|
10122
10198
|
class MLTransform < Struct.new(
|
@@ -10137,7 +10213,8 @@ module Aws::Glue
|
|
10137
10213
|
:worker_type,
|
10138
10214
|
:number_of_workers,
|
10139
10215
|
:timeout,
|
10140
|
-
:max_retries
|
10216
|
+
:max_retries,
|
10217
|
+
:transform_encryption)
|
10141
10218
|
SENSITIVE = []
|
10142
10219
|
include Aws::Structure
|
10143
10220
|
end
|
@@ -10156,6 +10233,39 @@ module Aws::Glue
|
|
10156
10233
|
include Aws::Structure
|
10157
10234
|
end
|
10158
10235
|
|
10236
|
+
# The encryption-at-rest settings of the transform that apply to
|
10237
|
+
# accessing user data.
|
10238
|
+
#
|
10239
|
+
# @note When making an API call, you may pass MLUserDataEncryption
|
10240
|
+
# data as a hash:
|
10241
|
+
#
|
10242
|
+
# {
|
10243
|
+
# ml_user_data_encryption_mode: "DISABLED", # required, accepts DISABLED, SSE-KMS
|
10244
|
+
# kms_key_id: "NameString",
|
10245
|
+
# }
|
10246
|
+
#
|
10247
|
+
# @!attribute [rw] ml_user_data_encryption_mode
|
10248
|
+
# The encryption mode applied to user data. Valid values are:
|
10249
|
+
#
|
10250
|
+
# * DISABLED: encryption is disabled
|
10251
|
+
#
|
10252
|
+
# * SSEKMS: use of server-side encryption with AWS Key Management
|
10253
|
+
# Service (SSE-KMS) for user data stored in Amazon S3.
|
10254
|
+
# @return [String]
|
10255
|
+
#
|
10256
|
+
# @!attribute [rw] kms_key_id
|
10257
|
+
# The ID for the customer-provided KMS key.
|
10258
|
+
# @return [String]
|
10259
|
+
#
|
10260
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/MLUserDataEncryption AWS API Documentation
|
10261
|
+
#
|
10262
|
+
class MLUserDataEncryption < Struct.new(
|
10263
|
+
:ml_user_data_encryption_mode,
|
10264
|
+
:kms_key_id)
|
10265
|
+
SENSITIVE = []
|
10266
|
+
include Aws::Structure
|
10267
|
+
end
|
10268
|
+
|
10159
10269
|
# Defines a mapping.
|
10160
10270
|
#
|
10161
10271
|
# @note When making an API call, you may pass MappingEntry
|
@@ -10207,6 +10317,47 @@ module Aws::Glue
|
|
10207
10317
|
include Aws::Structure
|
10208
10318
|
end
|
10209
10319
|
|
10320
|
+
# Specifies an Amazon DocumentDB or MongoDB data store to crawl.
|
10321
|
+
#
|
10322
|
+
# @note When making an API call, you may pass MongoDBTarget
|
10323
|
+
# data as a hash:
|
10324
|
+
#
|
10325
|
+
# {
|
10326
|
+
# connection_name: "ConnectionName",
|
10327
|
+
# path: "Path",
|
10328
|
+
# scan_all: false,
|
10329
|
+
# }
|
10330
|
+
#
|
10331
|
+
# @!attribute [rw] connection_name
|
10332
|
+
# The name of the connection to use to connect to the Amazon
|
10333
|
+
# DocumentDB or MongoDB target.
|
10334
|
+
# @return [String]
|
10335
|
+
#
|
10336
|
+
# @!attribute [rw] path
|
10337
|
+
# The path of the Amazon DocumentDB or MongoDB target
|
10338
|
+
# (database/collection).
|
10339
|
+
# @return [String]
|
10340
|
+
#
|
10341
|
+
# @!attribute [rw] scan_all
|
10342
|
+
# Indicates whether to scan all the records, or to sample rows from
|
10343
|
+
# the table. Scanning all the records can take a long time when the
|
10344
|
+
# table is not a high throughput table.
|
10345
|
+
#
|
10346
|
+
# A value of `true` means to scan all records, while a value of
|
10347
|
+
# `false` means to sample the records. If no value is specified, the
|
10348
|
+
# value defaults to `true`.
|
10349
|
+
# @return [Boolean]
|
10350
|
+
#
|
10351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/MongoDBTarget AWS API Documentation
|
10352
|
+
#
|
10353
|
+
class MongoDBTarget < Struct.new(
|
10354
|
+
:connection_name,
|
10355
|
+
:path,
|
10356
|
+
:scan_all)
|
10357
|
+
SENSITIVE = []
|
10358
|
+
include Aws::Structure
|
10359
|
+
end
|
10360
|
+
|
10210
10361
|
# There is no applicable schedule.
|
10211
10362
|
#
|
10212
10363
|
# @!attribute [rw] message
|
@@ -10876,6 +11027,42 @@ module Aws::Glue
|
|
10876
11027
|
#
|
10877
11028
|
class PutWorkflowRunPropertiesResponse < Aws::EmptyStructure; end
|
10878
11029
|
|
11030
|
+
# When crawling an Amazon S3 data source after the first crawl is
|
11031
|
+
# complete, specifies whether to crawl the entire dataset again or to
|
11032
|
+
# crawl only folders that were added since the last crawler run. For
|
11033
|
+
# more information, see [Incremental Crawls in AWS Glue][1] in the
|
11034
|
+
# developer guide.
|
11035
|
+
#
|
11036
|
+
#
|
11037
|
+
#
|
11038
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/incremental-crawls.html
|
11039
|
+
#
|
11040
|
+
# @note When making an API call, you may pass RecrawlPolicy
|
11041
|
+
# data as a hash:
|
11042
|
+
#
|
11043
|
+
# {
|
11044
|
+
# recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
|
11045
|
+
# }
|
11046
|
+
#
|
11047
|
+
# @!attribute [rw] recrawl_behavior
|
11048
|
+
# Specifies whether to crawl the entire dataset again or to crawl only
|
11049
|
+
# folders that were added since the last crawler run.
|
11050
|
+
#
|
11051
|
+
# A value of `CRAWL_EVERYTHING` specifies crawling the entire dataset
|
11052
|
+
# again.
|
11053
|
+
#
|
11054
|
+
# A value of `CRAWL_NEW_FOLDERS_ONLY` specifies crawling only folders
|
11055
|
+
# that were added since the last crawler run.
|
11056
|
+
# @return [String]
|
11057
|
+
#
|
11058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/RecrawlPolicy AWS API Documentation
|
11059
|
+
#
|
11060
|
+
class RecrawlPolicy < Struct.new(
|
11061
|
+
:recrawl_behavior)
|
11062
|
+
SENSITIVE = []
|
11063
|
+
include Aws::Structure
|
11064
|
+
end
|
11065
|
+
|
10879
11066
|
# @note When making an API call, you may pass ResetJobBookmarkRequest
|
10880
11067
|
# data as a hash:
|
10881
11068
|
#
|
@@ -12105,7 +12292,8 @@ module Aws::Glue
|
|
12105
12292
|
include Aws::Structure
|
12106
12293
|
end
|
12107
12294
|
|
12108
|
-
# Defines
|
12295
|
+
# Defines column statistics supported for character sequence data
|
12296
|
+
# values.
|
12109
12297
|
#
|
12110
12298
|
# @note When making an API call, you may pass StringColumnStatisticsData
|
12111
12299
|
# data as a hash:
|
@@ -12118,19 +12306,19 @@ module Aws::Glue
|
|
12118
12306
|
# }
|
12119
12307
|
#
|
12120
12308
|
# @!attribute [rw] maximum_length
|
12121
|
-
#
|
12309
|
+
# The size of the longest string in the column.
|
12122
12310
|
# @return [Integer]
|
12123
12311
|
#
|
12124
12312
|
# @!attribute [rw] average_length
|
12125
|
-
#
|
12313
|
+
# The average string length in the column.
|
12126
12314
|
# @return [Float]
|
12127
12315
|
#
|
12128
12316
|
# @!attribute [rw] number_of_nulls
|
12129
|
-
#
|
12317
|
+
# The number of null values in the column.
|
12130
12318
|
# @return [Integer]
|
12131
12319
|
#
|
12132
12320
|
# @!attribute [rw] number_of_distinct_values
|
12133
|
-
#
|
12321
|
+
# The number of distinct values in a column.
|
12134
12322
|
# @return [Integer]
|
12135
12323
|
#
|
12136
12324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StringColumnStatisticsData AWS API Documentation
|
@@ -12726,6 +12914,42 @@ module Aws::Glue
|
|
12726
12914
|
include Aws::Structure
|
12727
12915
|
end
|
12728
12916
|
|
12917
|
+
# The encryption-at-rest settings of the transform that apply to
|
12918
|
+
# accessing user data. Machine learning transforms can access user data
|
12919
|
+
# encrypted in Amazon S3 using KMS.
|
12920
|
+
#
|
12921
|
+
# Additionally, imported labels and trained transforms can now be
|
12922
|
+
# encrypted using a customer provided KMS key.
|
12923
|
+
#
|
12924
|
+
# @note When making an API call, you may pass TransformEncryption
|
12925
|
+
# data as a hash:
|
12926
|
+
#
|
12927
|
+
# {
|
12928
|
+
# ml_user_data_encryption: {
|
12929
|
+
# ml_user_data_encryption_mode: "DISABLED", # required, accepts DISABLED, SSE-KMS
|
12930
|
+
# kms_key_id: "NameString",
|
12931
|
+
# },
|
12932
|
+
# task_run_security_configuration_name: "NameString",
|
12933
|
+
# }
|
12934
|
+
#
|
12935
|
+
# @!attribute [rw] ml_user_data_encryption
|
12936
|
+
# An `MLUserDataEncryption` object containing the encryption mode and
|
12937
|
+
# customer-provided KMS key ID.
|
12938
|
+
# @return [Types::MLUserDataEncryption]
|
12939
|
+
#
|
12940
|
+
# @!attribute [rw] task_run_security_configuration_name
|
12941
|
+
# The name of the security configuration.
|
12942
|
+
# @return [String]
|
12943
|
+
#
|
12944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TransformEncryption AWS API Documentation
|
12945
|
+
#
|
12946
|
+
class TransformEncryption < Struct.new(
|
12947
|
+
:ml_user_data_encryption,
|
12948
|
+
:task_run_security_configuration_name)
|
12949
|
+
SENSITIVE = []
|
12950
|
+
include Aws::Structure
|
12951
|
+
end
|
12952
|
+
|
12729
12953
|
# The criteria used to filter the machine learning transforms.
|
12730
12954
|
#
|
12731
12955
|
# @note When making an API call, you may pass TransformFilterCriteria
|
@@ -12840,7 +13064,7 @@ module Aws::Glue
|
|
12840
13064
|
#
|
12841
13065
|
#
|
12842
13066
|
#
|
12843
|
-
# [1]:
|
13067
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-job-machine-learning-transform.html
|
12844
13068
|
# @return [String]
|
12845
13069
|
#
|
12846
13070
|
# @!attribute [rw] find_matches_parameters
|
@@ -13417,6 +13641,13 @@ module Aws::Glue
|
|
13417
13641
|
# exclusions: ["Path"],
|
13418
13642
|
# },
|
13419
13643
|
# ],
|
13644
|
+
# mongo_db_targets: [
|
13645
|
+
# {
|
13646
|
+
# connection_name: "ConnectionName",
|
13647
|
+
# path: "Path",
|
13648
|
+
# scan_all: false,
|
13649
|
+
# },
|
13650
|
+
# ],
|
13420
13651
|
# dynamo_db_targets: [
|
13421
13652
|
# {
|
13422
13653
|
# path: "Path",
|
@@ -13438,6 +13669,9 @@ module Aws::Glue
|
|
13438
13669
|
# update_behavior: "LOG", # accepts LOG, UPDATE_IN_DATABASE
|
13439
13670
|
# delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
|
13440
13671
|
# },
|
13672
|
+
# recrawl_policy: {
|
13673
|
+
# recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
|
13674
|
+
# },
|
13441
13675
|
# configuration: "CrawlerConfiguration",
|
13442
13676
|
# crawler_security_configuration: "CrawlerSecurityConfiguration",
|
13443
13677
|
# }
|
@@ -13489,6 +13723,11 @@ module Aws::Glue
|
|
13489
13723
|
# The policy for the crawler's update and deletion behavior.
|
13490
13724
|
# @return [Types::SchemaChangePolicy]
|
13491
13725
|
#
|
13726
|
+
# @!attribute [rw] recrawl_policy
|
13727
|
+
# A policy that specifies whether to crawl the entire dataset again,
|
13728
|
+
# or to crawl only folders that were added since the last crawler run.
|
13729
|
+
# @return [Types::RecrawlPolicy]
|
13730
|
+
#
|
13492
13731
|
# @!attribute [rw] configuration
|
13493
13732
|
# Crawler configuration information. This versioned JSON string allows
|
13494
13733
|
# users to specify aspects of a crawler's behavior. For more
|
@@ -13516,6 +13755,7 @@ module Aws::Glue
|
|
13516
13755
|
:classifiers,
|
13517
13756
|
:table_prefix,
|
13518
13757
|
:schema_change_policy,
|
13758
|
+
:recrawl_policy,
|
13519
13759
|
:configuration,
|
13520
13760
|
:crawler_security_configuration)
|
13521
13761
|
SENSITIVE = []
|
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.
|
4
|
+
version: 1.78.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: 2020-10-
|
11
|
+
date: 2020-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|