aws-sdk-glue 1.9.0 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +50 -23
- data/lib/aws-sdk-glue/client_api.rb +9 -0
- data/lib/aws-sdk-glue/types.rb +93 -39
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 389b43c865fd24741e819f4df767d26b2bd16ed2
|
4
|
+
data.tar.gz: '096126e1fa4b7398fb2a992f91c378f6cbd553b1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fc97da12821a6737a04591c0e748972cb25fa0f2f0e7b0551e63b3602ee2e802ad91b046ecd11c89931d2f95cc49c53e1b54419430ba0bc8be91951dd3e4f13
|
7
|
+
data.tar.gz: 716e2efc1d80cd9d136dc5c6ee28c05f1b647dad76b3f1f9c8c1a63193e9037b189b89ecf1c108a1ea233586d3ad101a35d218b79ce7172d74af41c9d6619f11
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -650,8 +650,9 @@ module Aws::Glue
|
|
650
650
|
end
|
651
651
|
|
652
652
|
# Creates a new crawler with specified targets, role, configuration, and
|
653
|
-
# optional schedule. At least one crawl target must be specified, in
|
654
|
-
#
|
653
|
+
# optional schedule. At least one crawl target must be specified, in the
|
654
|
+
# *s3Targets* field, the *jdbcTargets* field, or the *DynamoDBTargets*
|
655
|
+
# field.
|
655
656
|
#
|
656
657
|
# @option params [required, String] :name
|
657
658
|
# Name of the new crawler.
|
@@ -681,7 +682,7 @@ module Aws::Glue
|
|
681
682
|
#
|
682
683
|
# @option params [Array<String>] :classifiers
|
683
684
|
# A list of custom classifiers that the user has registered. By default,
|
684
|
-
# all
|
685
|
+
# all built-in classifiers are included in a crawl, but these custom
|
685
686
|
# classifiers always override the default classifiers for a given
|
686
687
|
# classification.
|
687
688
|
#
|
@@ -693,16 +694,12 @@ module Aws::Glue
|
|
693
694
|
#
|
694
695
|
# @option params [String] :configuration
|
695
696
|
# Crawler configuration information. This versioned JSON string allows
|
696
|
-
# users to specify aspects of a
|
697
|
+
# users to specify aspects of a crawler's behavior. For more
|
698
|
+
# information, see [Configuring a Crawler][1].
|
697
699
|
#
|
698
|
-
# You can use this field to force partitions to inherit metadata such as
|
699
|
-
# classification, input format, output format, serde information, and
|
700
|
-
# schema from their parent table, rather than detect this information
|
701
|
-
# separately for each partition. Use the following JSON string to
|
702
|
-
# specify that behavior:
|
703
700
|
#
|
704
|
-
#
|
705
|
-
#
|
701
|
+
#
|
702
|
+
# [1]: http://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
706
703
|
#
|
707
704
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
708
705
|
#
|
@@ -727,6 +724,11 @@ module Aws::Glue
|
|
727
724
|
# exclusions: ["Path"],
|
728
725
|
# },
|
729
726
|
# ],
|
727
|
+
# dynamo_db_targets: [
|
728
|
+
# {
|
729
|
+
# path: "Path",
|
730
|
+
# },
|
731
|
+
# ],
|
730
732
|
# },
|
731
733
|
# schedule: "CronExpression",
|
732
734
|
# classifiers: ["NameString"],
|
@@ -1924,6 +1926,8 @@ module Aws::Glue
|
|
1924
1926
|
# resp.crawler.targets.jdbc_targets[0].path #=> String
|
1925
1927
|
# resp.crawler.targets.jdbc_targets[0].exclusions #=> Array
|
1926
1928
|
# resp.crawler.targets.jdbc_targets[0].exclusions[0] #=> String
|
1929
|
+
# resp.crawler.targets.dynamo_db_targets #=> Array
|
1930
|
+
# resp.crawler.targets.dynamo_db_targets[0].path #=> String
|
1927
1931
|
# resp.crawler.database_name #=> String
|
1928
1932
|
# resp.crawler.description #=> String
|
1929
1933
|
# resp.crawler.classifiers #=> Array
|
@@ -2035,6 +2039,8 @@ module Aws::Glue
|
|
2035
2039
|
# resp.crawlers[0].targets.jdbc_targets[0].path #=> String
|
2036
2040
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions #=> Array
|
2037
2041
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
2042
|
+
# resp.crawlers[0].targets.dynamo_db_targets #=> Array
|
2043
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].path #=> String
|
2038
2044
|
# resp.crawlers[0].database_name #=> String
|
2039
2045
|
# resp.crawlers[0].description #=> String
|
2040
2046
|
# resp.crawlers[0].classifiers #=> Array
|
@@ -2541,6 +2547,13 @@ module Aws::Glue
|
|
2541
2547
|
# param: false,
|
2542
2548
|
# },
|
2543
2549
|
# ],
|
2550
|
+
# dynamo_db: [
|
2551
|
+
# {
|
2552
|
+
# name: "CodeGenArgName", # required
|
2553
|
+
# value: "CodeGenArgValue", # required
|
2554
|
+
# param: false,
|
2555
|
+
# },
|
2556
|
+
# ],
|
2544
2557
|
# },
|
2545
2558
|
# })
|
2546
2559
|
#
|
@@ -2794,6 +2807,13 @@ module Aws::Glue
|
|
2794
2807
|
# param: false,
|
2795
2808
|
# },
|
2796
2809
|
# ],
|
2810
|
+
# dynamo_db: [
|
2811
|
+
# {
|
2812
|
+
# name: "CodeGenArgName", # required
|
2813
|
+
# value: "CodeGenArgValue", # required
|
2814
|
+
# param: false,
|
2815
|
+
# },
|
2816
|
+
# ],
|
2797
2817
|
# },
|
2798
2818
|
# language: "PYTHON", # accepts PYTHON, SCALA
|
2799
2819
|
# })
|
@@ -3436,7 +3456,12 @@ module Aws::Glue
|
|
3436
3456
|
end
|
3437
3457
|
|
3438
3458
|
# Starts a crawl using the specified crawler, regardless of what is
|
3439
|
-
# scheduled. If the crawler is already running,
|
3459
|
+
# scheduled. If the crawler is already running, returns a
|
3460
|
+
# [CrawlerRunningException][1].
|
3461
|
+
#
|
3462
|
+
#
|
3463
|
+
#
|
3464
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-exceptions.html#aws-glue-api-exceptions-CrawlerRunningException
|
3440
3465
|
#
|
3441
3466
|
# @option params [required, String] :name
|
3442
3467
|
# Name of the crawler to start.
|
@@ -3784,8 +3809,9 @@ module Aws::Glue
|
|
3784
3809
|
#
|
3785
3810
|
# @option params [Array<String>] :classifiers
|
3786
3811
|
# A list of custom classifiers that the user has registered. By default,
|
3787
|
-
# all classifiers are included in a crawl, but these custom
|
3788
|
-
# always override the default classifiers for a given
|
3812
|
+
# all built-in classifiers are included in a crawl, but these custom
|
3813
|
+
# classifiers always override the default classifiers for a given
|
3814
|
+
# classification.
|
3789
3815
|
#
|
3790
3816
|
# @option params [String] :table_prefix
|
3791
3817
|
# The table prefix used for catalog tables that are created.
|
@@ -3795,16 +3821,12 @@ module Aws::Glue
|
|
3795
3821
|
#
|
3796
3822
|
# @option params [String] :configuration
|
3797
3823
|
# Crawler configuration information. This versioned JSON string allows
|
3798
|
-
# users to specify aspects of a
|
3824
|
+
# users to specify aspects of a crawler's behavior. For more
|
3825
|
+
# information, see [Configuring a Crawler][1].
|
3826
|
+
#
|
3799
3827
|
#
|
3800
|
-
# You can use this field to force partitions to inherit metadata such as
|
3801
|
-
# classification, input format, output format, serde information, and
|
3802
|
-
# schema from their parent table, rather than detect this information
|
3803
|
-
# separately for each partition. Use the following JSON string to
|
3804
|
-
# specify that behavior:
|
3805
3828
|
#
|
3806
|
-
#
|
3807
|
-
# "AddOrUpdateBehavior": "InheritFromTable" \} \} \}'`
|
3829
|
+
# [1]: http://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
3808
3830
|
#
|
3809
3831
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3810
3832
|
#
|
@@ -3829,6 +3851,11 @@ module Aws::Glue
|
|
3829
3851
|
# exclusions: ["Path"],
|
3830
3852
|
# },
|
3831
3853
|
# ],
|
3854
|
+
# dynamo_db_targets: [
|
3855
|
+
# {
|
3856
|
+
# path: "Path",
|
3857
|
+
# },
|
3858
|
+
# ],
|
3832
3859
|
# },
|
3833
3860
|
# schedule: "CronExpression",
|
3834
3861
|
# classifiers: ["NameString"],
|
@@ -4334,7 +4361,7 @@ module Aws::Glue
|
|
4334
4361
|
params: params,
|
4335
4362
|
config: config)
|
4336
4363
|
context[:gem_name] = 'aws-sdk-glue'
|
4337
|
-
context[:gem_version] = '1.
|
4364
|
+
context[:gem_version] = '1.10.0'
|
4338
4365
|
Seahorse::Client::Request.new(handlers, context)
|
4339
4366
|
end
|
4340
4367
|
|
@@ -150,6 +150,8 @@ module Aws::Glue
|
|
150
150
|
DevEndpoint = Shapes::StructureShape.new(name: 'DevEndpoint')
|
151
151
|
DevEndpointCustomLibraries = Shapes::StructureShape.new(name: 'DevEndpointCustomLibraries')
|
152
152
|
DevEndpointList = Shapes::ListShape.new(name: 'DevEndpointList')
|
153
|
+
DynamoDBTarget = Shapes::StructureShape.new(name: 'DynamoDBTarget')
|
154
|
+
DynamoDBTargetList = Shapes::ListShape.new(name: 'DynamoDBTargetList')
|
153
155
|
EntityNotFoundException = Shapes::StructureShape.new(name: 'EntityNotFoundException')
|
154
156
|
ErrorByName = Shapes::MapShape.new(name: 'ErrorByName')
|
155
157
|
ErrorDetail = Shapes::StructureShape.new(name: 'ErrorDetail')
|
@@ -607,6 +609,7 @@ module Aws::Glue
|
|
607
609
|
|
608
610
|
CrawlerTargets.add_member(:s3_targets, Shapes::ShapeRef.new(shape: S3TargetList, location_name: "S3Targets"))
|
609
611
|
CrawlerTargets.add_member(:jdbc_targets, Shapes::ShapeRef.new(shape: JdbcTargetList, location_name: "JdbcTargets"))
|
612
|
+
CrawlerTargets.add_member(:dynamo_db_targets, Shapes::ShapeRef.new(shape: DynamoDBTargetList, location_name: "DynamoDBTargets"))
|
610
613
|
CrawlerTargets.struct_class = Types::CrawlerTargets
|
611
614
|
|
612
615
|
CreateClassifierRequest.add_member(:grok_classifier, Shapes::ShapeRef.new(shape: CreateGrokClassifierRequest, location_name: "GrokClassifier"))
|
@@ -860,6 +863,11 @@ module Aws::Glue
|
|
860
863
|
|
861
864
|
DevEndpointList.member = Shapes::ShapeRef.new(shape: DevEndpoint)
|
862
865
|
|
866
|
+
DynamoDBTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
867
|
+
DynamoDBTarget.struct_class = Types::DynamoDBTarget
|
868
|
+
|
869
|
+
DynamoDBTargetList.member = Shapes::ShapeRef.new(shape: DynamoDBTarget)
|
870
|
+
|
863
871
|
ErrorByName.key = Shapes::ShapeRef.new(shape: NameString)
|
864
872
|
ErrorByName.value = Shapes::ShapeRef.new(shape: ErrorDetail)
|
865
873
|
|
@@ -1221,6 +1229,7 @@ module Aws::Glue
|
|
1221
1229
|
|
1222
1230
|
Location.add_member(:jdbc, Shapes::ShapeRef.new(shape: CodeGenNodeArgs, location_name: "Jdbc"))
|
1223
1231
|
Location.add_member(:s3, Shapes::ShapeRef.new(shape: CodeGenNodeArgs, location_name: "S3"))
|
1232
|
+
Location.add_member(:dynamo_db, Shapes::ShapeRef.new(shape: CodeGenNodeArgs, location_name: "DynamoDB"))
|
1224
1233
|
Location.struct_class = Types::Location
|
1225
1234
|
|
1226
1235
|
LocationMap.key = Shapes::ShapeRef.new(shape: ColumnValuesString)
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -550,16 +550,16 @@ module Aws::Glue
|
|
550
550
|
include Aws::Structure
|
551
551
|
end
|
552
552
|
|
553
|
-
# Classifiers are
|
554
|
-
#
|
555
|
-
#
|
556
|
-
#
|
557
|
-
# and if it is, the classifier creates a schema in the form of a
|
558
|
-
# `StructType` object that matches that data format.
|
553
|
+
# Classifiers are triggered during a crawl task. A classifier checks
|
554
|
+
# whether a given file is in a format it can handle, and if it is, the
|
555
|
+
# classifier creates a schema in the form of a `StructType` object that
|
556
|
+
# matches that data format.
|
559
557
|
#
|
560
|
-
#
|
561
|
-
#
|
562
|
-
#
|
558
|
+
# You can use the standard classifiers that AWS Glue supplies, or you
|
559
|
+
# can write your own classifiers to best categorize your data sources
|
560
|
+
# and specify the appropriate schemas to use for them. A classifier can
|
561
|
+
# be a `grok` classifier, an `XML` classifier, or a `JSON` classifier,
|
562
|
+
# as specified in one of the fields in the `Classifier` object.
|
563
563
|
#
|
564
564
|
# @!attribute [rw] grok_classifier
|
565
565
|
# A `GrokClassifier` object.
|
@@ -962,16 +962,12 @@ module Aws::Glue
|
|
962
962
|
#
|
963
963
|
# @!attribute [rw] configuration
|
964
964
|
# Crawler configuration information. This versioned JSON string allows
|
965
|
-
# users to specify aspects of a
|
965
|
+
# users to specify aspects of a crawler's behavior. For more
|
966
|
+
# information, see [Configuring a Crawler][1].
|
966
967
|
#
|
967
|
-
# You can use this field to force partitions to inherit metadata such
|
968
|
-
# as classification, input format, output format, serde information,
|
969
|
-
# and schema from their parent table, rather than detect this
|
970
|
-
# information separately for each partition. Use the following JSON
|
971
|
-
# string to specify that behavior:
|
972
968
|
#
|
973
|
-
#
|
974
|
-
#
|
969
|
+
#
|
970
|
+
# [1]: http://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
975
971
|
# @return [String]
|
976
972
|
#
|
977
973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Crawler AWS API Documentation
|
@@ -1064,6 +1060,11 @@ module Aws::Glue
|
|
1064
1060
|
# exclusions: ["Path"],
|
1065
1061
|
# },
|
1066
1062
|
# ],
|
1063
|
+
# dynamo_db_targets: [
|
1064
|
+
# {
|
1065
|
+
# path: "Path",
|
1066
|
+
# },
|
1067
|
+
# ],
|
1067
1068
|
# }
|
1068
1069
|
#
|
1069
1070
|
# @!attribute [rw] s3_targets
|
@@ -1074,11 +1075,16 @@ module Aws::Glue
|
|
1074
1075
|
# Specifies JDBC targets.
|
1075
1076
|
# @return [Array<Types::JdbcTarget>]
|
1076
1077
|
#
|
1078
|
+
# @!attribute [rw] dynamo_db_targets
|
1079
|
+
# Specifies DynamoDB targets.
|
1080
|
+
# @return [Array<Types::DynamoDBTarget>]
|
1081
|
+
#
|
1077
1082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CrawlerTargets AWS API Documentation
|
1078
1083
|
#
|
1079
1084
|
class CrawlerTargets < Struct.new(
|
1080
1085
|
:s3_targets,
|
1081
|
-
:jdbc_targets
|
1086
|
+
:jdbc_targets,
|
1087
|
+
:dynamo_db_targets)
|
1082
1088
|
include Aws::Structure
|
1083
1089
|
end
|
1084
1090
|
|
@@ -1192,6 +1198,11 @@ module Aws::Glue
|
|
1192
1198
|
# exclusions: ["Path"],
|
1193
1199
|
# },
|
1194
1200
|
# ],
|
1201
|
+
# dynamo_db_targets: [
|
1202
|
+
# {
|
1203
|
+
# path: "Path",
|
1204
|
+
# },
|
1205
|
+
# ],
|
1195
1206
|
# },
|
1196
1207
|
# schedule: "CronExpression",
|
1197
1208
|
# classifiers: ["NameString"],
|
@@ -1237,7 +1248,7 @@ module Aws::Glue
|
|
1237
1248
|
#
|
1238
1249
|
# @!attribute [rw] classifiers
|
1239
1250
|
# A list of custom classifiers that the user has registered. By
|
1240
|
-
# default, all
|
1251
|
+
# default, all built-in classifiers are included in a crawl, but these
|
1241
1252
|
# custom classifiers always override the default classifiers for a
|
1242
1253
|
# given classification.
|
1243
1254
|
# @return [Array<String>]
|
@@ -1252,16 +1263,12 @@ module Aws::Glue
|
|
1252
1263
|
#
|
1253
1264
|
# @!attribute [rw] configuration
|
1254
1265
|
# Crawler configuration information. This versioned JSON string allows
|
1255
|
-
# users to specify aspects of a
|
1266
|
+
# users to specify aspects of a crawler's behavior. For more
|
1267
|
+
# information, see [Configuring a Crawler][1].
|
1256
1268
|
#
|
1257
|
-
# You can use this field to force partitions to inherit metadata such
|
1258
|
-
# as classification, input format, output format, serde information,
|
1259
|
-
# and schema from their parent table, rather than detect this
|
1260
|
-
# information separately for each partition. Use the following JSON
|
1261
|
-
# string to specify that behavior:
|
1262
1269
|
#
|
1263
|
-
#
|
1264
|
-
#
|
1270
|
+
#
|
1271
|
+
# [1]: http://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
1265
1272
|
# @return [String]
|
1266
1273
|
#
|
1267
1274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCrawlerRequest AWS API Documentation
|
@@ -2683,6 +2690,26 @@ module Aws::Glue
|
|
2683
2690
|
include Aws::Structure
|
2684
2691
|
end
|
2685
2692
|
|
2693
|
+
# Specifies a DynamoDB table to crawl.
|
2694
|
+
#
|
2695
|
+
# @note When making an API call, you may pass DynamoDBTarget
|
2696
|
+
# data as a hash:
|
2697
|
+
#
|
2698
|
+
# {
|
2699
|
+
# path: "Path",
|
2700
|
+
# }
|
2701
|
+
#
|
2702
|
+
# @!attribute [rw] path
|
2703
|
+
# The name of the DynamoDB table to crawl.
|
2704
|
+
# @return [String]
|
2705
|
+
#
|
2706
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DynamoDBTarget AWS API Documentation
|
2707
|
+
#
|
2708
|
+
class DynamoDBTarget < Struct.new(
|
2709
|
+
:path)
|
2710
|
+
include Aws::Structure
|
2711
|
+
end
|
2712
|
+
|
2686
2713
|
# Contains details about an error.
|
2687
2714
|
#
|
2688
2715
|
# @!attribute [rw] error_code
|
@@ -3437,6 +3464,13 @@ module Aws::Glue
|
|
3437
3464
|
# param: false,
|
3438
3465
|
# },
|
3439
3466
|
# ],
|
3467
|
+
# dynamo_db: [
|
3468
|
+
# {
|
3469
|
+
# name: "CodeGenArgName", # required
|
3470
|
+
# value: "CodeGenArgValue", # required
|
3471
|
+
# param: false,
|
3472
|
+
# },
|
3473
|
+
# ],
|
3440
3474
|
# },
|
3441
3475
|
# }
|
3442
3476
|
#
|
@@ -3635,6 +3669,13 @@ module Aws::Glue
|
|
3635
3669
|
# param: false,
|
3636
3670
|
# },
|
3637
3671
|
# ],
|
3672
|
+
# dynamo_db: [
|
3673
|
+
# {
|
3674
|
+
# name: "CodeGenArgName", # required
|
3675
|
+
# value: "CodeGenArgValue", # required
|
3676
|
+
# param: false,
|
3677
|
+
# },
|
3678
|
+
# ],
|
3638
3679
|
# },
|
3639
3680
|
# language: "PYTHON", # accepts PYTHON, SCALA
|
3640
3681
|
# }
|
@@ -4692,6 +4733,13 @@ module Aws::Glue
|
|
4692
4733
|
# param: false,
|
4693
4734
|
# },
|
4694
4735
|
# ],
|
4736
|
+
# dynamo_db: [
|
4737
|
+
# {
|
4738
|
+
# name: "CodeGenArgName", # required
|
4739
|
+
# value: "CodeGenArgValue", # required
|
4740
|
+
# param: false,
|
4741
|
+
# },
|
4742
|
+
# ],
|
4695
4743
|
# }
|
4696
4744
|
#
|
4697
4745
|
# @!attribute [rw] jdbc
|
@@ -4702,11 +4750,16 @@ module Aws::Glue
|
|
4702
4750
|
# An Amazon S3 location.
|
4703
4751
|
# @return [Array<Types::CodeGenNodeArg>]
|
4704
4752
|
#
|
4753
|
+
# @!attribute [rw] dynamo_db
|
4754
|
+
# A DynamoDB Table location.
|
4755
|
+
# @return [Array<Types::CodeGenNodeArg>]
|
4756
|
+
#
|
4705
4757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Location AWS API Documentation
|
4706
4758
|
#
|
4707
4759
|
class Location < Struct.new(
|
4708
4760
|
:jdbc,
|
4709
|
-
:s3
|
4761
|
+
:s3,
|
4762
|
+
:dynamo_db)
|
4710
4763
|
include Aws::Structure
|
4711
4764
|
end
|
4712
4765
|
|
@@ -6193,6 +6246,11 @@ module Aws::Glue
|
|
6193
6246
|
# exclusions: ["Path"],
|
6194
6247
|
# },
|
6195
6248
|
# ],
|
6249
|
+
# dynamo_db_targets: [
|
6250
|
+
# {
|
6251
|
+
# path: "Path",
|
6252
|
+
# },
|
6253
|
+
# ],
|
6196
6254
|
# },
|
6197
6255
|
# schedule: "CronExpression",
|
6198
6256
|
# classifiers: ["NameString"],
|
@@ -6238,9 +6296,9 @@ module Aws::Glue
|
|
6238
6296
|
#
|
6239
6297
|
# @!attribute [rw] classifiers
|
6240
6298
|
# A list of custom classifiers that the user has registered. By
|
6241
|
-
# default, all classifiers are included in a crawl, but these
|
6242
|
-
# classifiers always override the default classifiers for a
|
6243
|
-
# classification.
|
6299
|
+
# default, all built-in classifiers are included in a crawl, but these
|
6300
|
+
# custom classifiers always override the default classifiers for a
|
6301
|
+
# given classification.
|
6244
6302
|
# @return [Array<String>]
|
6245
6303
|
#
|
6246
6304
|
# @!attribute [rw] table_prefix
|
@@ -6253,16 +6311,12 @@ module Aws::Glue
|
|
6253
6311
|
#
|
6254
6312
|
# @!attribute [rw] configuration
|
6255
6313
|
# Crawler configuration information. This versioned JSON string allows
|
6256
|
-
# users to specify aspects of a
|
6314
|
+
# users to specify aspects of a crawler's behavior. For more
|
6315
|
+
# information, see [Configuring a Crawler][1].
|
6316
|
+
#
|
6257
6317
|
#
|
6258
|
-
# You can use this field to force partitions to inherit metadata such
|
6259
|
-
# as classification, input format, output format, serde information,
|
6260
|
-
# and schema from their parent table, rather than detect this
|
6261
|
-
# information separately for each partition. Use the following JSON
|
6262
|
-
# string to specify that behavior:
|
6263
6318
|
#
|
6264
|
-
#
|
6265
|
-
# "AddOrUpdateBehavior": "InheritFromTable" \} \} \}'`
|
6319
|
+
# [1]: http://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
6266
6320
|
# @return [String]
|
6267
6321
|
#
|
6268
6322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateCrawlerRequest AWS API Documentation
|
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.10.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: 2018-
|
11
|
+
date: 2018-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|