aws-sdk-glue 1.58.1 → 1.59.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 +34 -26
- data/lib/aws-sdk-glue/client_api.rb +2 -0
- data/lib/aws-sdk-glue/types.rb +69 -39
- 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: 4b9a3483b716e9a9341caa9faae43163757fb5db5e5dba7d91c08769d55b0881
|
|
4
|
+
data.tar.gz: 06bba234dda6725f5c59f5d33be8f1de756c47fd2faaa2609da2b47a06476426
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a36f4ad2947b0b75b49b092a8c264e29248e4b48c9ee3cd8573a912dc2857e058d49030f0e3a3cfd4c73a735cb8373f8f1f7ac72c2706dec90ebb34e21b65c88
|
|
7
|
+
data.tar.gz: 7bbf7581419453aac764dff8f969e7a7bd47f3a6415212a090a3d25c1a36c08f872915efed015bf28ea82a2f1828dd97e9272b90667b1d3285085c6aa89f1a02
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -647,6 +647,8 @@ module Aws::Glue
|
|
|
647
647
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
|
648
648
|
# resp.crawlers[0].targets.dynamo_db_targets #=> Array
|
|
649
649
|
# resp.crawlers[0].targets.dynamo_db_targets[0].path #=> String
|
|
650
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_all #=> Boolean
|
|
651
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_rate #=> Float
|
|
650
652
|
# resp.crawlers[0].targets.catalog_targets #=> Array
|
|
651
653
|
# resp.crawlers[0].targets.catalog_targets[0].database_name #=> String
|
|
652
654
|
# resp.crawlers[0].targets.catalog_targets[0].tables #=> Array
|
|
@@ -1339,14 +1341,13 @@ module Aws::Glue
|
|
|
1339
1341
|
# A list of collection of targets to crawl.
|
|
1340
1342
|
#
|
|
1341
1343
|
# @option params [String] :schedule
|
|
1342
|
-
# A `cron` expression used to specify the schedule
|
|
1343
|
-
#
|
|
1344
|
-
#
|
|
1345
|
-
# * * ? *)`.
|
|
1344
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
|
1345
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
|
1346
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
|
1346
1347
|
#
|
|
1347
1348
|
#
|
|
1348
1349
|
#
|
|
1349
|
-
# [1]:
|
|
1350
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
|
1350
1351
|
#
|
|
1351
1352
|
# @option params [Array<String>] :classifiers
|
|
1352
1353
|
# A list of custom classifiers that the user has registered. By default,
|
|
@@ -1361,26 +1362,26 @@ module Aws::Glue
|
|
|
1361
1362
|
# The policy for the crawler's update and deletion behavior.
|
|
1362
1363
|
#
|
|
1363
1364
|
# @option params [String] :configuration
|
|
1364
|
-
#
|
|
1365
|
-
#
|
|
1365
|
+
# Crawler configuration information. This versioned JSON string allows
|
|
1366
|
+
# users to specify aspects of a crawler's behavior. For more
|
|
1366
1367
|
# information, see [Configuring a Crawler][1].
|
|
1367
1368
|
#
|
|
1368
1369
|
#
|
|
1369
1370
|
#
|
|
1370
|
-
# [1]:
|
|
1371
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
|
1371
1372
|
#
|
|
1372
1373
|
# @option params [String] :crawler_security_configuration
|
|
1373
1374
|
# The name of the `SecurityConfiguration` structure to be used by this
|
|
1374
1375
|
# crawler.
|
|
1375
1376
|
#
|
|
1376
1377
|
# @option params [Hash<String,String>] :tags
|
|
1377
|
-
# The tags to use with this crawler request. You
|
|
1378
|
-
# access to the crawler. For more information
|
|
1379
|
-
# Glue][1].
|
|
1378
|
+
# The tags to use with this crawler request. You may use tags to limit
|
|
1379
|
+
# access to the crawler. For more information about tags in AWS Glue,
|
|
1380
|
+
# see [AWS Tags in AWS Glue][1] in the developer guide.
|
|
1380
1381
|
#
|
|
1381
1382
|
#
|
|
1382
1383
|
#
|
|
1383
|
-
# [1]:
|
|
1384
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
|
|
1384
1385
|
#
|
|
1385
1386
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1386
1387
|
#
|
|
@@ -1408,6 +1409,8 @@ module Aws::Glue
|
|
|
1408
1409
|
# dynamo_db_targets: [
|
|
1409
1410
|
# {
|
|
1410
1411
|
# path: "Path",
|
|
1412
|
+
# scan_all: false,
|
|
1413
|
+
# scan_rate: 1.0,
|
|
1411
1414
|
# },
|
|
1412
1415
|
# ],
|
|
1413
1416
|
# catalog_targets: [
|
|
@@ -3333,6 +3336,8 @@ module Aws::Glue
|
|
|
3333
3336
|
# resp.crawler.targets.jdbc_targets[0].exclusions[0] #=> String
|
|
3334
3337
|
# resp.crawler.targets.dynamo_db_targets #=> Array
|
|
3335
3338
|
# resp.crawler.targets.dynamo_db_targets[0].path #=> String
|
|
3339
|
+
# resp.crawler.targets.dynamo_db_targets[0].scan_all #=> Boolean
|
|
3340
|
+
# resp.crawler.targets.dynamo_db_targets[0].scan_rate #=> Float
|
|
3336
3341
|
# resp.crawler.targets.catalog_targets #=> Array
|
|
3337
3342
|
# resp.crawler.targets.catalog_targets[0].database_name #=> String
|
|
3338
3343
|
# resp.crawler.targets.catalog_targets[0].tables #=> Array
|
|
@@ -3455,6 +3460,8 @@ module Aws::Glue
|
|
|
3455
3460
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
|
3456
3461
|
# resp.crawlers[0].targets.dynamo_db_targets #=> Array
|
|
3457
3462
|
# resp.crawlers[0].targets.dynamo_db_targets[0].path #=> String
|
|
3463
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_all #=> Boolean
|
|
3464
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_rate #=> Float
|
|
3458
3465
|
# resp.crawlers[0].targets.catalog_targets #=> Array
|
|
3459
3466
|
# resp.crawlers[0].targets.catalog_targets[0].database_name #=> String
|
|
3460
3467
|
# resp.crawlers[0].targets.catalog_targets[0].tables #=> Array
|
|
@@ -7360,14 +7367,13 @@ module Aws::Glue
|
|
|
7360
7367
|
# A list of targets to crawl.
|
|
7361
7368
|
#
|
|
7362
7369
|
# @option params [String] :schedule
|
|
7363
|
-
# A `cron` expression used to specify the schedule
|
|
7364
|
-
#
|
|
7365
|
-
#
|
|
7366
|
-
# * * ? *)`.
|
|
7370
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
|
7371
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
|
7372
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
|
7367
7373
|
#
|
|
7368
7374
|
#
|
|
7369
7375
|
#
|
|
7370
|
-
# [1]:
|
|
7376
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
|
7371
7377
|
#
|
|
7372
7378
|
# @option params [Array<String>] :classifiers
|
|
7373
7379
|
# A list of custom classifiers that the user has registered. By default,
|
|
@@ -7382,13 +7388,13 @@ module Aws::Glue
|
|
|
7382
7388
|
# The policy for the crawler's update and deletion behavior.
|
|
7383
7389
|
#
|
|
7384
7390
|
# @option params [String] :configuration
|
|
7385
|
-
#
|
|
7386
|
-
#
|
|
7391
|
+
# Crawler configuration information. This versioned JSON string allows
|
|
7392
|
+
# users to specify aspects of a crawler's behavior. For more
|
|
7387
7393
|
# information, see [Configuring a Crawler][1].
|
|
7388
7394
|
#
|
|
7389
7395
|
#
|
|
7390
7396
|
#
|
|
7391
|
-
# [1]:
|
|
7397
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
|
7392
7398
|
#
|
|
7393
7399
|
# @option params [String] :crawler_security_configuration
|
|
7394
7400
|
# The name of the `SecurityConfiguration` structure to be used by this
|
|
@@ -7420,6 +7426,8 @@ module Aws::Glue
|
|
|
7420
7426
|
# dynamo_db_targets: [
|
|
7421
7427
|
# {
|
|
7422
7428
|
# path: "Path",
|
|
7429
|
+
# scan_all: false,
|
|
7430
|
+
# scan_rate: 1.0,
|
|
7423
7431
|
# },
|
|
7424
7432
|
# ],
|
|
7425
7433
|
# catalog_targets: [
|
|
@@ -7455,14 +7463,14 @@ module Aws::Glue
|
|
|
7455
7463
|
# The name of the crawler whose schedule to update.
|
|
7456
7464
|
#
|
|
7457
7465
|
# @option params [String] :schedule
|
|
7458
|
-
# The updated `cron` expression used to specify the schedule
|
|
7459
|
-
#
|
|
7460
|
-
#
|
|
7461
|
-
# *
|
|
7466
|
+
# The updated `cron` expression used to specify the schedule (see
|
|
7467
|
+
# [Time-Based Schedules for Jobs and Crawlers][1]. For example, to run
|
|
7468
|
+
# something every day at 12:15 UTC, you would specify: `cron(15 12 * * ?
|
|
7469
|
+
# *)`.
|
|
7462
7470
|
#
|
|
7463
7471
|
#
|
|
7464
7472
|
#
|
|
7465
|
-
# [1]:
|
|
7473
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
|
7466
7474
|
#
|
|
7467
7475
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
7468
7476
|
#
|
|
@@ -8159,7 +8167,7 @@ module Aws::Glue
|
|
|
8159
8167
|
params: params,
|
|
8160
8168
|
config: config)
|
|
8161
8169
|
context[:gem_name] = 'aws-sdk-glue'
|
|
8162
|
-
context[:gem_version] = '1.
|
|
8170
|
+
context[:gem_version] = '1.59.0'
|
|
8163
8171
|
Seahorse::Client::Request.new(handlers, context)
|
|
8164
8172
|
end
|
|
8165
8173
|
|
|
@@ -1312,6 +1312,8 @@ module Aws::Glue
|
|
|
1312
1312
|
DevEndpointNames.member = Shapes::ShapeRef.new(shape: GenericString)
|
|
1313
1313
|
|
|
1314
1314
|
DynamoDBTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
|
1315
|
+
DynamoDBTarget.add_member(:scan_all, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "scanAll"))
|
|
1316
|
+
DynamoDBTarget.add_member(:scan_rate, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "scanRate"))
|
|
1315
1317
|
DynamoDBTarget.struct_class = Types::DynamoDBTarget
|
|
1316
1318
|
|
|
1317
1319
|
DynamoDBTargetList.member = Shapes::ShapeRef.new(shape: DynamoDBTarget)
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -1573,7 +1573,7 @@ module Aws::Glue
|
|
|
1573
1573
|
#
|
|
1574
1574
|
#
|
|
1575
1575
|
#
|
|
1576
|
-
# [1]:
|
|
1576
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
|
1577
1577
|
# @return [String]
|
|
1578
1578
|
#
|
|
1579
1579
|
# @!attribute [rw] crawler_security_configuration
|
|
@@ -1728,6 +1728,8 @@ module Aws::Glue
|
|
|
1728
1728
|
# dynamo_db_targets: [
|
|
1729
1729
|
# {
|
|
1730
1730
|
# path: "Path",
|
|
1731
|
+
# scan_all: false,
|
|
1732
|
+
# scan_rate: 1.0,
|
|
1731
1733
|
# },
|
|
1732
1734
|
# ],
|
|
1733
1735
|
# catalog_targets: [
|
|
@@ -1891,6 +1893,8 @@ module Aws::Glue
|
|
|
1891
1893
|
# dynamo_db_targets: [
|
|
1892
1894
|
# {
|
|
1893
1895
|
# path: "Path",
|
|
1896
|
+
# scan_all: false,
|
|
1897
|
+
# scan_rate: 1.0,
|
|
1894
1898
|
# },
|
|
1895
1899
|
# ],
|
|
1896
1900
|
# catalog_targets: [
|
|
@@ -1937,14 +1941,13 @@ module Aws::Glue
|
|
|
1937
1941
|
# @return [Types::CrawlerTargets]
|
|
1938
1942
|
#
|
|
1939
1943
|
# @!attribute [rw] schedule
|
|
1940
|
-
# A `cron` expression used to specify the schedule
|
|
1941
|
-
#
|
|
1942
|
-
#
|
|
1943
|
-
# `cron(15 12 * * ? *)`.
|
|
1944
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
|
1945
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
|
1946
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
|
1944
1947
|
#
|
|
1945
1948
|
#
|
|
1946
1949
|
#
|
|
1947
|
-
# [1]:
|
|
1950
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
|
1948
1951
|
# @return [String]
|
|
1949
1952
|
#
|
|
1950
1953
|
# @!attribute [rw] classifiers
|
|
@@ -1963,13 +1966,13 @@ module Aws::Glue
|
|
|
1963
1966
|
# @return [Types::SchemaChangePolicy]
|
|
1964
1967
|
#
|
|
1965
1968
|
# @!attribute [rw] configuration
|
|
1966
|
-
#
|
|
1967
|
-
#
|
|
1969
|
+
# Crawler configuration information. This versioned JSON string allows
|
|
1970
|
+
# users to specify aspects of a crawler's behavior. For more
|
|
1968
1971
|
# information, see [Configuring a Crawler][1].
|
|
1969
1972
|
#
|
|
1970
1973
|
#
|
|
1971
1974
|
#
|
|
1972
|
-
# [1]:
|
|
1975
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
|
1973
1976
|
# @return [String]
|
|
1974
1977
|
#
|
|
1975
1978
|
# @!attribute [rw] crawler_security_configuration
|
|
@@ -1978,13 +1981,13 @@ module Aws::Glue
|
|
|
1978
1981
|
# @return [String]
|
|
1979
1982
|
#
|
|
1980
1983
|
# @!attribute [rw] tags
|
|
1981
|
-
# The tags to use with this crawler request. You
|
|
1982
|
-
# access to the crawler. For more information
|
|
1983
|
-
# Glue][1].
|
|
1984
|
+
# The tags to use with this crawler request. You may use tags to limit
|
|
1985
|
+
# access to the crawler. For more information about tags in AWS Glue,
|
|
1986
|
+
# see [AWS Tags in AWS Glue][1] in the developer guide.
|
|
1984
1987
|
#
|
|
1985
1988
|
#
|
|
1986
1989
|
#
|
|
1987
|
-
# [1]:
|
|
1990
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
|
|
1988
1991
|
# @return [Hash<String,String>]
|
|
1989
1992
|
#
|
|
1990
1993
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCrawlerRequest AWS API Documentation
|
|
@@ -2714,7 +2717,7 @@ module Aws::Glue
|
|
|
2714
2717
|
#
|
|
2715
2718
|
# @!attribute [rw] json_path
|
|
2716
2719
|
# A `JsonPath` string defining the JSON data for the classifier to
|
|
2717
|
-
# classify. AWS Glue supports a subset of
|
|
2720
|
+
# classify. AWS Glue supports a subset of JsonPath, as described in
|
|
2718
2721
|
# [Writing JsonPath Custom Classifiers][1].
|
|
2719
2722
|
#
|
|
2720
2723
|
#
|
|
@@ -4440,16 +4443,43 @@ module Aws::Glue
|
|
|
4440
4443
|
#
|
|
4441
4444
|
# {
|
|
4442
4445
|
# path: "Path",
|
|
4446
|
+
# scan_all: false,
|
|
4447
|
+
# scan_rate: 1.0,
|
|
4443
4448
|
# }
|
|
4444
4449
|
#
|
|
4445
4450
|
# @!attribute [rw] path
|
|
4446
4451
|
# The name of the DynamoDB table to crawl.
|
|
4447
4452
|
# @return [String]
|
|
4448
4453
|
#
|
|
4454
|
+
# @!attribute [rw] scan_all
|
|
4455
|
+
# Indicates whether to scan all the records, or to sample rows from
|
|
4456
|
+
# the table. Scanning all the records can take a long time when the
|
|
4457
|
+
# table is not a high throughput table.
|
|
4458
|
+
#
|
|
4459
|
+
# A value of `true` means to scan all records, while a value of
|
|
4460
|
+
# `false` means to sample the records. If no value is specified, the
|
|
4461
|
+
# value defaults to `true`.
|
|
4462
|
+
# @return [Boolean]
|
|
4463
|
+
#
|
|
4464
|
+
# @!attribute [rw] scan_rate
|
|
4465
|
+
# The percentage of the configured read capacity units to use by the
|
|
4466
|
+
# AWS Glue crawler. Read capacity units is a term defined by DynamoDB,
|
|
4467
|
+
# and is a numeric value that acts as rate limiter for the number of
|
|
4468
|
+
# reads that can be performed on that table per second.
|
|
4469
|
+
#
|
|
4470
|
+
# The valid values are null or a value between 0.1 to 1.5. A null
|
|
4471
|
+
# value is used when user does not provide a value, and defaults to
|
|
4472
|
+
# 0.5 of the configured Read Capacity Unit (for provisioned tables),
|
|
4473
|
+
# or 0.25 of the max configured Read Capacity Unit (for tables using
|
|
4474
|
+
# on-demand mode).
|
|
4475
|
+
# @return [Float]
|
|
4476
|
+
#
|
|
4449
4477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DynamoDBTarget AWS API Documentation
|
|
4450
4478
|
#
|
|
4451
4479
|
class DynamoDBTarget < Struct.new(
|
|
4452
|
-
:path
|
|
4480
|
+
:path,
|
|
4481
|
+
:scan_all,
|
|
4482
|
+
:scan_rate)
|
|
4453
4483
|
include Aws::Structure
|
|
4454
4484
|
end
|
|
4455
4485
|
|
|
@@ -7114,7 +7144,7 @@ module Aws::Glue
|
|
|
7114
7144
|
#
|
|
7115
7145
|
#
|
|
7116
7146
|
#
|
|
7117
|
-
# [1]:
|
|
7147
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html
|
|
7118
7148
|
# @return [String]
|
|
7119
7149
|
#
|
|
7120
7150
|
# @!attribute [rw] custom_patterns
|
|
@@ -7123,7 +7153,7 @@ module Aws::Glue
|
|
|
7123
7153
|
#
|
|
7124
7154
|
#
|
|
7125
7155
|
#
|
|
7126
|
-
# [1]:
|
|
7156
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html
|
|
7127
7157
|
# @return [String]
|
|
7128
7158
|
#
|
|
7129
7159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GrokClassifier AWS API Documentation
|
|
@@ -7258,7 +7288,7 @@ module Aws::Glue
|
|
|
7258
7288
|
#
|
|
7259
7289
|
#
|
|
7260
7290
|
#
|
|
7261
|
-
# [1]:
|
|
7291
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html
|
|
7262
7292
|
# @return [Array<String>]
|
|
7263
7293
|
#
|
|
7264
7294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JdbcTarget AWS API Documentation
|
|
@@ -8026,7 +8056,7 @@ module Aws::Glue
|
|
|
8026
8056
|
#
|
|
8027
8057
|
# @!attribute [rw] json_path
|
|
8028
8058
|
# A `JsonPath` string defining the JSON data for the classifier to
|
|
8029
|
-
# classify. AWS Glue supports a subset of
|
|
8059
|
+
# classify. AWS Glue supports a subset of JsonPath, as described in
|
|
8030
8060
|
# [Writing JsonPath Custom Classifiers][1].
|
|
8031
8061
|
#
|
|
8032
8062
|
#
|
|
@@ -9421,7 +9451,7 @@ module Aws::Glue
|
|
|
9421
9451
|
#
|
|
9422
9452
|
#
|
|
9423
9453
|
#
|
|
9424
|
-
# [1]:
|
|
9454
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html
|
|
9425
9455
|
# @return [Array<String>]
|
|
9426
9456
|
#
|
|
9427
9457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/S3Target AWS API Documentation
|
|
@@ -9435,14 +9465,13 @@ module Aws::Glue
|
|
|
9435
9465
|
# A scheduling object using a `cron` statement to schedule an event.
|
|
9436
9466
|
#
|
|
9437
9467
|
# @!attribute [rw] schedule_expression
|
|
9438
|
-
# A `cron` expression used to specify the schedule
|
|
9439
|
-
#
|
|
9440
|
-
#
|
|
9441
|
-
# `cron(15 12 * * ? *)`.
|
|
9468
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
|
9469
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
|
9470
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
|
9442
9471
|
#
|
|
9443
9472
|
#
|
|
9444
9473
|
#
|
|
9445
|
-
# [1]:
|
|
9474
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
|
9446
9475
|
# @return [String]
|
|
9447
9476
|
#
|
|
9448
9477
|
# @!attribute [rw] state
|
|
@@ -11390,6 +11419,8 @@ module Aws::Glue
|
|
|
11390
11419
|
# dynamo_db_targets: [
|
|
11391
11420
|
# {
|
|
11392
11421
|
# path: "Path",
|
|
11422
|
+
# scan_all: false,
|
|
11423
|
+
# scan_rate: 1.0,
|
|
11393
11424
|
# },
|
|
11394
11425
|
# ],
|
|
11395
11426
|
# catalog_targets: [
|
|
@@ -11433,14 +11464,13 @@ module Aws::Glue
|
|
|
11433
11464
|
# @return [Types::CrawlerTargets]
|
|
11434
11465
|
#
|
|
11435
11466
|
# @!attribute [rw] schedule
|
|
11436
|
-
# A `cron` expression used to specify the schedule
|
|
11437
|
-
#
|
|
11438
|
-
#
|
|
11439
|
-
# `cron(15 12 * * ? *)`.
|
|
11467
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
|
11468
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
|
11469
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
|
11440
11470
|
#
|
|
11441
11471
|
#
|
|
11442
11472
|
#
|
|
11443
|
-
# [1]:
|
|
11473
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
|
11444
11474
|
# @return [String]
|
|
11445
11475
|
#
|
|
11446
11476
|
# @!attribute [rw] classifiers
|
|
@@ -11459,13 +11489,13 @@ module Aws::Glue
|
|
|
11459
11489
|
# @return [Types::SchemaChangePolicy]
|
|
11460
11490
|
#
|
|
11461
11491
|
# @!attribute [rw] configuration
|
|
11462
|
-
#
|
|
11463
|
-
#
|
|
11492
|
+
# Crawler configuration information. This versioned JSON string allows
|
|
11493
|
+
# users to specify aspects of a crawler's behavior. For more
|
|
11464
11494
|
# information, see [Configuring a Crawler][1].
|
|
11465
11495
|
#
|
|
11466
11496
|
#
|
|
11467
11497
|
#
|
|
11468
|
-
# [1]:
|
|
11498
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
|
11469
11499
|
# @return [String]
|
|
11470
11500
|
#
|
|
11471
11501
|
# @!attribute [rw] crawler_security_configuration
|
|
@@ -11507,14 +11537,14 @@ module Aws::Glue
|
|
|
11507
11537
|
# @return [String]
|
|
11508
11538
|
#
|
|
11509
11539
|
# @!attribute [rw] schedule
|
|
11510
|
-
# The updated `cron` expression used to specify the schedule
|
|
11511
|
-
#
|
|
11512
|
-
#
|
|
11513
|
-
#
|
|
11540
|
+
# The updated `cron` expression used to specify the schedule (see
|
|
11541
|
+
# [Time-Based Schedules for Jobs and Crawlers][1]. For example, to run
|
|
11542
|
+
# something every day at 12:15 UTC, you would specify: `cron(15 12 * *
|
|
11543
|
+
# ? *)`.
|
|
11514
11544
|
#
|
|
11515
11545
|
#
|
|
11516
11546
|
#
|
|
11517
|
-
# [1]:
|
|
11547
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
|
11518
11548
|
# @return [String]
|
|
11519
11549
|
#
|
|
11520
11550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateCrawlerScheduleRequest AWS API Documentation
|
|
@@ -11848,7 +11878,7 @@ module Aws::Glue
|
|
|
11848
11878
|
#
|
|
11849
11879
|
# @!attribute [rw] json_path
|
|
11850
11880
|
# A `JsonPath` string defining the JSON data for the classifier to
|
|
11851
|
-
# classify. AWS Glue supports a subset of
|
|
11881
|
+
# classify. AWS Glue supports a subset of JsonPath, as described in
|
|
11852
11882
|
# [Writing JsonPath Custom Classifiers][1].
|
|
11853
11883
|
#
|
|
11854
11884
|
#
|
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.59.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-06-
|
|
11
|
+
date: 2020-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|