aws-sdk-glue 1.55.0 → 1.60.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 +3 -1
- data/lib/aws-sdk-glue/client.rb +45 -29
- data/lib/aws-sdk-glue/client_api.rb +5 -0
- data/lib/aws-sdk-glue/errors.rb +2 -0
- data/lib/aws-sdk-glue/resource.rb +2 -0
- data/lib/aws-sdk-glue/types.rb +427 -40
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 249550e9b2b23a6243890d14b22554003f5be317004e1a35d0b7d9fb34a16a05
|
4
|
+
data.tar.gz: 111ec4bad590fc5cf86fdaaa817093125344f6d3216db1f44cb73d9e7229228a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f81c38f8c1c7cab276ef726b141fbb3eddf8a7812eebfffaaa4ad3c9035292bbef3772f932c88315269fb3eae3bb67f2e0bed68ccb6d48bf1c5b9ac8f543eded
|
7
|
+
data.tar.gz: 4eb0bd32a35fb5d69c344fee364cf47305fd5ad9c0b83b70408916bda38961a8e7925937d2d21a6ebf7b999488afaa31277ea2427702608fc8fcffc15f7eaf0e
|
data/lib/aws-sdk-glue.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-glue/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::Glue
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.60.0'
|
49
51
|
|
50
52
|
end
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::Glue
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::Glue
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::Glue
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -645,6 +649,8 @@ module Aws::Glue
|
|
645
649
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
646
650
|
# resp.crawlers[0].targets.dynamo_db_targets #=> Array
|
647
651
|
# resp.crawlers[0].targets.dynamo_db_targets[0].path #=> String
|
652
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_all #=> Boolean
|
653
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_rate #=> Float
|
648
654
|
# resp.crawlers[0].targets.catalog_targets #=> Array
|
649
655
|
# resp.crawlers[0].targets.catalog_targets[0].database_name #=> String
|
650
656
|
# resp.crawlers[0].targets.catalog_targets[0].tables #=> Array
|
@@ -1337,14 +1343,13 @@ module Aws::Glue
|
|
1337
1343
|
# A list of collection of targets to crawl.
|
1338
1344
|
#
|
1339
1345
|
# @option params [String] :schedule
|
1340
|
-
# A `cron` expression used to specify the schedule
|
1341
|
-
#
|
1342
|
-
#
|
1343
|
-
# * * ? *)`.
|
1346
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
1347
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
1348
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
1344
1349
|
#
|
1345
1350
|
#
|
1346
1351
|
#
|
1347
|
-
# [1]:
|
1352
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
1348
1353
|
#
|
1349
1354
|
# @option params [Array<String>] :classifiers
|
1350
1355
|
# A list of custom classifiers that the user has registered. By default,
|
@@ -1359,26 +1364,26 @@ module Aws::Glue
|
|
1359
1364
|
# The policy for the crawler's update and deletion behavior.
|
1360
1365
|
#
|
1361
1366
|
# @option params [String] :configuration
|
1362
|
-
#
|
1363
|
-
#
|
1367
|
+
# Crawler configuration information. This versioned JSON string allows
|
1368
|
+
# users to specify aspects of a crawler's behavior. For more
|
1364
1369
|
# information, see [Configuring a Crawler][1].
|
1365
1370
|
#
|
1366
1371
|
#
|
1367
1372
|
#
|
1368
|
-
# [1]:
|
1373
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
1369
1374
|
#
|
1370
1375
|
# @option params [String] :crawler_security_configuration
|
1371
1376
|
# The name of the `SecurityConfiguration` structure to be used by this
|
1372
1377
|
# crawler.
|
1373
1378
|
#
|
1374
1379
|
# @option params [Hash<String,String>] :tags
|
1375
|
-
# The tags to use with this crawler request. You
|
1376
|
-
# access to the crawler. For more information
|
1377
|
-
# Glue][1].
|
1380
|
+
# The tags to use with this crawler request. You may use tags to limit
|
1381
|
+
# access to the crawler. For more information about tags in AWS Glue,
|
1382
|
+
# see [AWS Tags in AWS Glue][1] in the developer guide.
|
1378
1383
|
#
|
1379
1384
|
#
|
1380
1385
|
#
|
1381
|
-
# [1]:
|
1386
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
|
1382
1387
|
#
|
1383
1388
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1384
1389
|
#
|
@@ -1406,6 +1411,8 @@ module Aws::Glue
|
|
1406
1411
|
# dynamo_db_targets: [
|
1407
1412
|
# {
|
1408
1413
|
# path: "Path",
|
1414
|
+
# scan_all: false,
|
1415
|
+
# scan_rate: 1.0,
|
1409
1416
|
# },
|
1410
1417
|
# ],
|
1411
1418
|
# catalog_targets: [
|
@@ -3331,6 +3338,8 @@ module Aws::Glue
|
|
3331
3338
|
# resp.crawler.targets.jdbc_targets[0].exclusions[0] #=> String
|
3332
3339
|
# resp.crawler.targets.dynamo_db_targets #=> Array
|
3333
3340
|
# resp.crawler.targets.dynamo_db_targets[0].path #=> String
|
3341
|
+
# resp.crawler.targets.dynamo_db_targets[0].scan_all #=> Boolean
|
3342
|
+
# resp.crawler.targets.dynamo_db_targets[0].scan_rate #=> Float
|
3334
3343
|
# resp.crawler.targets.catalog_targets #=> Array
|
3335
3344
|
# resp.crawler.targets.catalog_targets[0].database_name #=> String
|
3336
3345
|
# resp.crawler.targets.catalog_targets[0].tables #=> Array
|
@@ -3453,6 +3462,8 @@ module Aws::Glue
|
|
3453
3462
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
3454
3463
|
# resp.crawlers[0].targets.dynamo_db_targets #=> Array
|
3455
3464
|
# resp.crawlers[0].targets.dynamo_db_targets[0].path #=> String
|
3465
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_all #=> Boolean
|
3466
|
+
# resp.crawlers[0].targets.dynamo_db_targets[0].scan_rate #=> Float
|
3456
3467
|
# resp.crawlers[0].targets.catalog_targets #=> Array
|
3457
3468
|
# resp.crawlers[0].targets.catalog_targets[0].database_name #=> String
|
3458
3469
|
# resp.crawlers[0].targets.catalog_targets[0].tables #=> Array
|
@@ -5489,6 +5500,7 @@ module Aws::Glue
|
|
5489
5500
|
# @example Response structure
|
5490
5501
|
#
|
5491
5502
|
# resp.user_defined_function.function_name #=> String
|
5503
|
+
# resp.user_defined_function.database_name #=> String
|
5492
5504
|
# resp.user_defined_function.class_name #=> String
|
5493
5505
|
# resp.user_defined_function.owner_name #=> String
|
5494
5506
|
# resp.user_defined_function.owner_type #=> String, one of "USER", "ROLE", "GROUP"
|
@@ -5513,7 +5525,9 @@ module Aws::Glue
|
|
5513
5525
|
# located. If none is provided, the AWS account ID is used by default.
|
5514
5526
|
#
|
5515
5527
|
# @option params [String] :database_name
|
5516
|
-
# The name of the catalog database where the functions are located.
|
5528
|
+
# The name of the catalog database where the functions are located. If
|
5529
|
+
# none is provided, functions from all the databases across the catalog
|
5530
|
+
# will be returned.
|
5517
5531
|
#
|
5518
5532
|
# @option params [required, String] :pattern
|
5519
5533
|
# An optional function-name pattern string that filters the function
|
@@ -5546,6 +5560,7 @@ module Aws::Glue
|
|
5546
5560
|
#
|
5547
5561
|
# resp.user_defined_functions #=> Array
|
5548
5562
|
# resp.user_defined_functions[0].function_name #=> String
|
5563
|
+
# resp.user_defined_functions[0].database_name #=> String
|
5549
5564
|
# resp.user_defined_functions[0].class_name #=> String
|
5550
5565
|
# resp.user_defined_functions[0].owner_name #=> String
|
5551
5566
|
# resp.user_defined_functions[0].owner_type #=> String, one of "USER", "ROLE", "GROUP"
|
@@ -7354,14 +7369,13 @@ module Aws::Glue
|
|
7354
7369
|
# A list of targets to crawl.
|
7355
7370
|
#
|
7356
7371
|
# @option params [String] :schedule
|
7357
|
-
# A `cron` expression used to specify the schedule
|
7358
|
-
#
|
7359
|
-
#
|
7360
|
-
# * * ? *)`.
|
7372
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
7373
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
7374
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
7361
7375
|
#
|
7362
7376
|
#
|
7363
7377
|
#
|
7364
|
-
# [1]:
|
7378
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
7365
7379
|
#
|
7366
7380
|
# @option params [Array<String>] :classifiers
|
7367
7381
|
# A list of custom classifiers that the user has registered. By default,
|
@@ -7376,13 +7390,13 @@ module Aws::Glue
|
|
7376
7390
|
# The policy for the crawler's update and deletion behavior.
|
7377
7391
|
#
|
7378
7392
|
# @option params [String] :configuration
|
7379
|
-
#
|
7380
|
-
#
|
7393
|
+
# Crawler configuration information. This versioned JSON string allows
|
7394
|
+
# users to specify aspects of a crawler's behavior. For more
|
7381
7395
|
# information, see [Configuring a Crawler][1].
|
7382
7396
|
#
|
7383
7397
|
#
|
7384
7398
|
#
|
7385
|
-
# [1]:
|
7399
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
7386
7400
|
#
|
7387
7401
|
# @option params [String] :crawler_security_configuration
|
7388
7402
|
# The name of the `SecurityConfiguration` structure to be used by this
|
@@ -7414,6 +7428,8 @@ module Aws::Glue
|
|
7414
7428
|
# dynamo_db_targets: [
|
7415
7429
|
# {
|
7416
7430
|
# path: "Path",
|
7431
|
+
# scan_all: false,
|
7432
|
+
# scan_rate: 1.0,
|
7417
7433
|
# },
|
7418
7434
|
# ],
|
7419
7435
|
# catalog_targets: [
|
@@ -7449,14 +7465,14 @@ module Aws::Glue
|
|
7449
7465
|
# The name of the crawler whose schedule to update.
|
7450
7466
|
#
|
7451
7467
|
# @option params [String] :schedule
|
7452
|
-
# The updated `cron` expression used to specify the schedule
|
7453
|
-
#
|
7454
|
-
#
|
7455
|
-
# *
|
7468
|
+
# The updated `cron` expression used to specify the schedule (see
|
7469
|
+
# [Time-Based Schedules for Jobs and Crawlers][1]. For example, to run
|
7470
|
+
# something every day at 12:15 UTC, you would specify: `cron(15 12 * * ?
|
7471
|
+
# *)`.
|
7456
7472
|
#
|
7457
7473
|
#
|
7458
7474
|
#
|
7459
|
-
# [1]:
|
7475
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
7460
7476
|
#
|
7461
7477
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7462
7478
|
#
|
@@ -8153,7 +8169,7 @@ module Aws::Glue
|
|
8153
8169
|
params: params,
|
8154
8170
|
config: config)
|
8155
8171
|
context[:gem_name] = 'aws-sdk-glue'
|
8156
|
-
context[:gem_version] = '1.
|
8172
|
+
context[:gem_version] = '1.60.0'
|
8157
8173
|
Seahorse::Client::Request.new(handlers, context)
|
8158
8174
|
end
|
8159
8175
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -1312,6 +1314,8 @@ module Aws::Glue
|
|
1312
1314
|
DevEndpointNames.member = Shapes::ShapeRef.new(shape: GenericString)
|
1313
1315
|
|
1314
1316
|
DynamoDBTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
1317
|
+
DynamoDBTarget.add_member(:scan_all, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "scanAll"))
|
1318
|
+
DynamoDBTarget.add_member(:scan_rate, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "scanRate"))
|
1315
1319
|
DynamoDBTarget.struct_class = Types::DynamoDBTarget
|
1316
1320
|
|
1317
1321
|
DynamoDBTargetList.member = Shapes::ShapeRef.new(shape: DynamoDBTarget)
|
@@ -2618,6 +2622,7 @@ module Aws::Glue
|
|
2618
2622
|
UpdateXMLClassifierRequest.struct_class = Types::UpdateXMLClassifierRequest
|
2619
2623
|
|
2620
2624
|
UserDefinedFunction.add_member(:function_name, Shapes::ShapeRef.new(shape: NameString, location_name: "FunctionName"))
|
2625
|
+
UserDefinedFunction.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
|
2621
2626
|
UserDefinedFunction.add_member(:class_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ClassName"))
|
2622
2627
|
UserDefinedFunction.add_member(:owner_name, Shapes::ShapeRef.new(shape: NameString, location_name: "OwnerName"))
|
2623
2628
|
UserDefinedFunction.add_member(:owner_type, Shapes::ShapeRef.new(shape: PrincipalType, location_name: "OwnerType"))
|
data/lib/aws-sdk-glue/errors.rb
CHANGED
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -18,6 +20,7 @@ module Aws::Glue
|
|
18
20
|
#
|
19
21
|
class AccessDeniedException < Struct.new(
|
20
22
|
:message)
|
23
|
+
SENSITIVE = []
|
21
24
|
include Aws::Structure
|
22
25
|
end
|
23
26
|
|
@@ -93,6 +96,7 @@ module Aws::Glue
|
|
93
96
|
:security_configuration,
|
94
97
|
:notification_property,
|
95
98
|
:crawler_name)
|
99
|
+
SENSITIVE = []
|
96
100
|
include Aws::Structure
|
97
101
|
end
|
98
102
|
|
@@ -106,6 +110,7 @@ module Aws::Glue
|
|
106
110
|
#
|
107
111
|
class AlreadyExistsException < Struct.new(
|
108
112
|
:message)
|
113
|
+
SENSITIVE = []
|
109
114
|
include Aws::Structure
|
110
115
|
end
|
111
116
|
|
@@ -197,6 +202,7 @@ module Aws::Glue
|
|
197
202
|
:database_name,
|
198
203
|
:table_name,
|
199
204
|
:partition_input_list)
|
205
|
+
SENSITIVE = []
|
200
206
|
include Aws::Structure
|
201
207
|
end
|
202
208
|
|
@@ -209,6 +215,7 @@ module Aws::Glue
|
|
209
215
|
#
|
210
216
|
class BatchCreatePartitionResponse < Struct.new(
|
211
217
|
:errors)
|
218
|
+
SENSITIVE = []
|
212
219
|
include Aws::Structure
|
213
220
|
end
|
214
221
|
|
@@ -234,6 +241,7 @@ module Aws::Glue
|
|
234
241
|
class BatchDeleteConnectionRequest < Struct.new(
|
235
242
|
:catalog_id,
|
236
243
|
:connection_name_list)
|
244
|
+
SENSITIVE = []
|
237
245
|
include Aws::Structure
|
238
246
|
end
|
239
247
|
|
@@ -252,6 +260,7 @@ module Aws::Glue
|
|
252
260
|
class BatchDeleteConnectionResponse < Struct.new(
|
253
261
|
:succeeded,
|
254
262
|
:errors)
|
263
|
+
SENSITIVE = []
|
255
264
|
include Aws::Structure
|
256
265
|
end
|
257
266
|
|
@@ -295,6 +304,7 @@ module Aws::Glue
|
|
295
304
|
:database_name,
|
296
305
|
:table_name,
|
297
306
|
:partitions_to_delete)
|
307
|
+
SENSITIVE = []
|
298
308
|
include Aws::Structure
|
299
309
|
end
|
300
310
|
|
@@ -307,6 +317,7 @@ module Aws::Glue
|
|
307
317
|
#
|
308
318
|
class BatchDeletePartitionResponse < Struct.new(
|
309
319
|
:errors)
|
320
|
+
SENSITIVE = []
|
310
321
|
include Aws::Structure
|
311
322
|
end
|
312
323
|
|
@@ -339,6 +350,7 @@ module Aws::Glue
|
|
339
350
|
:catalog_id,
|
340
351
|
:database_name,
|
341
352
|
:tables_to_delete)
|
353
|
+
SENSITIVE = []
|
342
354
|
include Aws::Structure
|
343
355
|
end
|
344
356
|
|
@@ -351,6 +363,7 @@ module Aws::Glue
|
|
351
363
|
#
|
352
364
|
class BatchDeleteTableResponse < Struct.new(
|
353
365
|
:errors)
|
366
|
+
SENSITIVE = []
|
354
367
|
include Aws::Structure
|
355
368
|
end
|
356
369
|
|
@@ -392,6 +405,7 @@ module Aws::Glue
|
|
392
405
|
:database_name,
|
393
406
|
:table_name,
|
394
407
|
:version_ids)
|
408
|
+
SENSITIVE = []
|
395
409
|
include Aws::Structure
|
396
410
|
end
|
397
411
|
|
@@ -404,6 +418,7 @@ module Aws::Glue
|
|
404
418
|
#
|
405
419
|
class BatchDeleteTableVersionResponse < Struct.new(
|
406
420
|
:errors)
|
421
|
+
SENSITIVE = []
|
407
422
|
include Aws::Structure
|
408
423
|
end
|
409
424
|
|
@@ -423,6 +438,7 @@ module Aws::Glue
|
|
423
438
|
#
|
424
439
|
class BatchGetCrawlersRequest < Struct.new(
|
425
440
|
:crawler_names)
|
441
|
+
SENSITIVE = []
|
426
442
|
include Aws::Structure
|
427
443
|
end
|
428
444
|
|
@@ -439,6 +455,7 @@ module Aws::Glue
|
|
439
455
|
class BatchGetCrawlersResponse < Struct.new(
|
440
456
|
:crawlers,
|
441
457
|
:crawlers_not_found)
|
458
|
+
SENSITIVE = []
|
442
459
|
include Aws::Structure
|
443
460
|
end
|
444
461
|
|
@@ -458,6 +475,7 @@ module Aws::Glue
|
|
458
475
|
#
|
459
476
|
class BatchGetDevEndpointsRequest < Struct.new(
|
460
477
|
:dev_endpoint_names)
|
478
|
+
SENSITIVE = []
|
461
479
|
include Aws::Structure
|
462
480
|
end
|
463
481
|
|
@@ -474,6 +492,7 @@ module Aws::Glue
|
|
474
492
|
class BatchGetDevEndpointsResponse < Struct.new(
|
475
493
|
:dev_endpoints,
|
476
494
|
:dev_endpoints_not_found)
|
495
|
+
SENSITIVE = []
|
477
496
|
include Aws::Structure
|
478
497
|
end
|
479
498
|
|
@@ -493,6 +512,7 @@ module Aws::Glue
|
|
493
512
|
#
|
494
513
|
class BatchGetJobsRequest < Struct.new(
|
495
514
|
:job_names)
|
515
|
+
SENSITIVE = []
|
496
516
|
include Aws::Structure
|
497
517
|
end
|
498
518
|
|
@@ -509,6 +529,7 @@ module Aws::Glue
|
|
509
529
|
class BatchGetJobsResponse < Struct.new(
|
510
530
|
:jobs,
|
511
531
|
:jobs_not_found)
|
532
|
+
SENSITIVE = []
|
512
533
|
include Aws::Structure
|
513
534
|
end
|
514
535
|
|
@@ -550,6 +571,7 @@ module Aws::Glue
|
|
550
571
|
:database_name,
|
551
572
|
:table_name,
|
552
573
|
:partitions_to_get)
|
574
|
+
SENSITIVE = []
|
553
575
|
include Aws::Structure
|
554
576
|
end
|
555
577
|
|
@@ -567,6 +589,7 @@ module Aws::Glue
|
|
567
589
|
class BatchGetPartitionResponse < Struct.new(
|
568
590
|
:partitions,
|
569
591
|
:unprocessed_keys)
|
592
|
+
SENSITIVE = []
|
570
593
|
include Aws::Structure
|
571
594
|
end
|
572
595
|
|
@@ -586,6 +609,7 @@ module Aws::Glue
|
|
586
609
|
#
|
587
610
|
class BatchGetTriggersRequest < Struct.new(
|
588
611
|
:trigger_names)
|
612
|
+
SENSITIVE = []
|
589
613
|
include Aws::Structure
|
590
614
|
end
|
591
615
|
|
@@ -602,6 +626,7 @@ module Aws::Glue
|
|
602
626
|
class BatchGetTriggersResponse < Struct.new(
|
603
627
|
:triggers,
|
604
628
|
:triggers_not_found)
|
629
|
+
SENSITIVE = []
|
605
630
|
include Aws::Structure
|
606
631
|
end
|
607
632
|
|
@@ -628,6 +653,7 @@ module Aws::Glue
|
|
628
653
|
class BatchGetWorkflowsRequest < Struct.new(
|
629
654
|
:names,
|
630
655
|
:include_graph)
|
656
|
+
SENSITIVE = []
|
631
657
|
include Aws::Structure
|
632
658
|
end
|
633
659
|
|
@@ -644,6 +670,7 @@ module Aws::Glue
|
|
644
670
|
class BatchGetWorkflowsResponse < Struct.new(
|
645
671
|
:workflows,
|
646
672
|
:missing_workflows)
|
673
|
+
SENSITIVE = []
|
647
674
|
include Aws::Structure
|
648
675
|
end
|
649
676
|
|
@@ -669,6 +696,7 @@ module Aws::Glue
|
|
669
696
|
:job_name,
|
670
697
|
:job_run_id,
|
671
698
|
:error_detail)
|
699
|
+
SENSITIVE = []
|
672
700
|
include Aws::Structure
|
673
701
|
end
|
674
702
|
|
@@ -694,6 +722,7 @@ module Aws::Glue
|
|
694
722
|
class BatchStopJobRunRequest < Struct.new(
|
695
723
|
:job_name,
|
696
724
|
:job_run_ids)
|
725
|
+
SENSITIVE = []
|
697
726
|
include Aws::Structure
|
698
727
|
end
|
699
728
|
|
@@ -712,6 +741,7 @@ module Aws::Glue
|
|
712
741
|
class BatchStopJobRunResponse < Struct.new(
|
713
742
|
:successful_submissions,
|
714
743
|
:errors)
|
744
|
+
SENSITIVE = []
|
715
745
|
include Aws::Structure
|
716
746
|
end
|
717
747
|
|
@@ -730,6 +760,7 @@ module Aws::Glue
|
|
730
760
|
class BatchStopJobRunSuccessfulSubmission < Struct.new(
|
731
761
|
:job_name,
|
732
762
|
:job_run_id)
|
763
|
+
SENSITIVE = []
|
733
764
|
include Aws::Structure
|
734
765
|
end
|
735
766
|
|
@@ -754,6 +785,7 @@ module Aws::Glue
|
|
754
785
|
class CancelMLTaskRunRequest < Struct.new(
|
755
786
|
:transform_id,
|
756
787
|
:task_run_id)
|
788
|
+
SENSITIVE = []
|
757
789
|
include Aws::Structure
|
758
790
|
end
|
759
791
|
|
@@ -775,6 +807,7 @@ module Aws::Glue
|
|
775
807
|
:transform_id,
|
776
808
|
:task_run_id,
|
777
809
|
:status)
|
810
|
+
SENSITIVE = []
|
778
811
|
include Aws::Structure
|
779
812
|
end
|
780
813
|
|
@@ -801,6 +834,7 @@ module Aws::Glue
|
|
801
834
|
class CatalogEntry < Struct.new(
|
802
835
|
:database_name,
|
803
836
|
:table_name)
|
837
|
+
SENSITIVE = []
|
804
838
|
include Aws::Structure
|
805
839
|
end
|
806
840
|
|
@@ -824,6 +858,7 @@ module Aws::Glue
|
|
824
858
|
:import_completed,
|
825
859
|
:import_time,
|
826
860
|
:imported_by)
|
861
|
+
SENSITIVE = []
|
827
862
|
include Aws::Structure
|
828
863
|
end
|
829
864
|
|
@@ -850,6 +885,7 @@ module Aws::Glue
|
|
850
885
|
class CatalogTarget < Struct.new(
|
851
886
|
:database_name,
|
852
887
|
:tables)
|
888
|
+
SENSITIVE = []
|
853
889
|
include Aws::Structure
|
854
890
|
end
|
855
891
|
|
@@ -888,6 +924,7 @@ module Aws::Glue
|
|
888
924
|
:xml_classifier,
|
889
925
|
:json_classifier,
|
890
926
|
:csv_classifier)
|
927
|
+
SENSITIVE = []
|
891
928
|
include Aws::Structure
|
892
929
|
end
|
893
930
|
|
@@ -915,6 +952,7 @@ module Aws::Glue
|
|
915
952
|
class CloudWatchEncryption < Struct.new(
|
916
953
|
:cloud_watch_encryption_mode,
|
917
954
|
:kms_key_arn)
|
955
|
+
SENSITIVE = []
|
918
956
|
include Aws::Structure
|
919
957
|
end
|
920
958
|
|
@@ -947,6 +985,7 @@ module Aws::Glue
|
|
947
985
|
:source,
|
948
986
|
:target,
|
949
987
|
:target_parameter)
|
988
|
+
SENSITIVE = []
|
950
989
|
include Aws::Structure
|
951
990
|
end
|
952
991
|
|
@@ -991,6 +1030,7 @@ module Aws::Glue
|
|
991
1030
|
:node_type,
|
992
1031
|
:args,
|
993
1032
|
:line_number)
|
1033
|
+
SENSITIVE = []
|
994
1034
|
include Aws::Structure
|
995
1035
|
end
|
996
1036
|
|
@@ -1023,6 +1063,7 @@ module Aws::Glue
|
|
1023
1063
|
:name,
|
1024
1064
|
:value,
|
1025
1065
|
:param)
|
1066
|
+
SENSITIVE = []
|
1026
1067
|
include Aws::Structure
|
1027
1068
|
end
|
1028
1069
|
|
@@ -1063,6 +1104,7 @@ module Aws::Glue
|
|
1063
1104
|
:type,
|
1064
1105
|
:comment,
|
1065
1106
|
:parameters)
|
1107
|
+
SENSITIVE = []
|
1066
1108
|
include Aws::Structure
|
1067
1109
|
end
|
1068
1110
|
|
@@ -1076,6 +1118,7 @@ module Aws::Glue
|
|
1076
1118
|
#
|
1077
1119
|
class ConcurrentModificationException < Struct.new(
|
1078
1120
|
:message)
|
1121
|
+
SENSITIVE = []
|
1079
1122
|
include Aws::Structure
|
1080
1123
|
end
|
1081
1124
|
|
@@ -1089,6 +1132,7 @@ module Aws::Glue
|
|
1089
1132
|
#
|
1090
1133
|
class ConcurrentRunsExceededException < Struct.new(
|
1091
1134
|
:message)
|
1135
|
+
SENSITIVE = []
|
1092
1136
|
include Aws::Structure
|
1093
1137
|
end
|
1094
1138
|
|
@@ -1137,6 +1181,7 @@ module Aws::Glue
|
|
1137
1181
|
:state,
|
1138
1182
|
:crawler_name,
|
1139
1183
|
:crawl_state)
|
1184
|
+
SENSITIVE = []
|
1140
1185
|
include Aws::Structure
|
1141
1186
|
end
|
1142
1187
|
|
@@ -1150,6 +1195,7 @@ module Aws::Glue
|
|
1150
1195
|
#
|
1151
1196
|
class ConditionCheckFailureException < Struct.new(
|
1152
1197
|
:message)
|
1198
|
+
SENSITIVE = []
|
1153
1199
|
include Aws::Structure
|
1154
1200
|
end
|
1155
1201
|
|
@@ -1189,6 +1235,7 @@ module Aws::Glue
|
|
1189
1235
|
:num_false_positives,
|
1190
1236
|
:num_true_negatives,
|
1191
1237
|
:num_false_negatives)
|
1238
|
+
SENSITIVE = []
|
1192
1239
|
include Aws::Structure
|
1193
1240
|
end
|
1194
1241
|
|
@@ -1314,6 +1361,7 @@ module Aws::Glue
|
|
1314
1361
|
:creation_time,
|
1315
1362
|
:last_updated_time,
|
1316
1363
|
:last_updated_by)
|
1364
|
+
SENSITIVE = []
|
1317
1365
|
include Aws::Structure
|
1318
1366
|
end
|
1319
1367
|
|
@@ -1383,6 +1431,7 @@ module Aws::Glue
|
|
1383
1431
|
:match_criteria,
|
1384
1432
|
:connection_properties,
|
1385
1433
|
:physical_connection_requirements)
|
1434
|
+
SENSITIVE = []
|
1386
1435
|
include Aws::Structure
|
1387
1436
|
end
|
1388
1437
|
|
@@ -1433,6 +1482,7 @@ module Aws::Glue
|
|
1433
1482
|
class ConnectionPasswordEncryption < Struct.new(
|
1434
1483
|
:return_connection_password_encrypted,
|
1435
1484
|
:aws_kms_key_id)
|
1485
|
+
SENSITIVE = []
|
1436
1486
|
include Aws::Structure
|
1437
1487
|
end
|
1438
1488
|
|
@@ -1453,6 +1503,7 @@ module Aws::Glue
|
|
1453
1503
|
#
|
1454
1504
|
class ConnectionsList < Struct.new(
|
1455
1505
|
:connections)
|
1506
|
+
SENSITIVE = []
|
1456
1507
|
include Aws::Structure
|
1457
1508
|
end
|
1458
1509
|
|
@@ -1491,6 +1542,7 @@ module Aws::Glue
|
|
1491
1542
|
:error_message,
|
1492
1543
|
:log_group,
|
1493
1544
|
:log_stream)
|
1545
|
+
SENSITIVE = []
|
1494
1546
|
include Aws::Structure
|
1495
1547
|
end
|
1496
1548
|
|
@@ -1573,7 +1625,7 @@ module Aws::Glue
|
|
1573
1625
|
#
|
1574
1626
|
#
|
1575
1627
|
#
|
1576
|
-
# [1]:
|
1628
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
1577
1629
|
# @return [String]
|
1578
1630
|
#
|
1579
1631
|
# @!attribute [rw] crawler_security_configuration
|
@@ -1601,6 +1653,7 @@ module Aws::Glue
|
|
1601
1653
|
:version,
|
1602
1654
|
:configuration,
|
1603
1655
|
:crawler_security_configuration)
|
1656
|
+
SENSITIVE = []
|
1604
1657
|
include Aws::Structure
|
1605
1658
|
end
|
1606
1659
|
|
@@ -1650,6 +1703,7 @@ module Aws::Glue
|
|
1650
1703
|
:tables_created,
|
1651
1704
|
:tables_updated,
|
1652
1705
|
:tables_deleted)
|
1706
|
+
SENSITIVE = []
|
1653
1707
|
include Aws::Structure
|
1654
1708
|
end
|
1655
1709
|
|
@@ -1663,6 +1717,7 @@ module Aws::Glue
|
|
1663
1717
|
#
|
1664
1718
|
class CrawlerNodeDetails < Struct.new(
|
1665
1719
|
:crawls)
|
1720
|
+
SENSITIVE = []
|
1666
1721
|
include Aws::Structure
|
1667
1722
|
end
|
1668
1723
|
|
@@ -1676,6 +1731,7 @@ module Aws::Glue
|
|
1676
1731
|
#
|
1677
1732
|
class CrawlerNotRunningException < Struct.new(
|
1678
1733
|
:message)
|
1734
|
+
SENSITIVE = []
|
1679
1735
|
include Aws::Structure
|
1680
1736
|
end
|
1681
1737
|
|
@@ -1690,6 +1746,7 @@ module Aws::Glue
|
|
1690
1746
|
#
|
1691
1747
|
class CrawlerRunningException < Struct.new(
|
1692
1748
|
:message)
|
1749
|
+
SENSITIVE = []
|
1693
1750
|
include Aws::Structure
|
1694
1751
|
end
|
1695
1752
|
|
@@ -1703,6 +1760,7 @@ module Aws::Glue
|
|
1703
1760
|
#
|
1704
1761
|
class CrawlerStoppingException < Struct.new(
|
1705
1762
|
:message)
|
1763
|
+
SENSITIVE = []
|
1706
1764
|
include Aws::Structure
|
1707
1765
|
end
|
1708
1766
|
|
@@ -1728,6 +1786,8 @@ module Aws::Glue
|
|
1728
1786
|
# dynamo_db_targets: [
|
1729
1787
|
# {
|
1730
1788
|
# path: "Path",
|
1789
|
+
# scan_all: false,
|
1790
|
+
# scan_rate: 1.0,
|
1731
1791
|
# },
|
1732
1792
|
# ],
|
1733
1793
|
# catalog_targets: [
|
@@ -1761,6 +1821,7 @@ module Aws::Glue
|
|
1761
1821
|
:jdbc_targets,
|
1762
1822
|
:dynamo_db_targets,
|
1763
1823
|
:catalog_targets)
|
1824
|
+
SENSITIVE = []
|
1764
1825
|
include Aws::Structure
|
1765
1826
|
end
|
1766
1827
|
|
@@ -1817,6 +1878,7 @@ module Aws::Glue
|
|
1817
1878
|
:xml_classifier,
|
1818
1879
|
:json_classifier,
|
1819
1880
|
:csv_classifier)
|
1881
|
+
SENSITIVE = []
|
1820
1882
|
include Aws::Structure
|
1821
1883
|
end
|
1822
1884
|
|
@@ -1859,6 +1921,7 @@ module Aws::Glue
|
|
1859
1921
|
class CreateConnectionRequest < Struct.new(
|
1860
1922
|
:catalog_id,
|
1861
1923
|
:connection_input)
|
1924
|
+
SENSITIVE = []
|
1862
1925
|
include Aws::Structure
|
1863
1926
|
end
|
1864
1927
|
|
@@ -1891,6 +1954,8 @@ module Aws::Glue
|
|
1891
1954
|
# dynamo_db_targets: [
|
1892
1955
|
# {
|
1893
1956
|
# path: "Path",
|
1957
|
+
# scan_all: false,
|
1958
|
+
# scan_rate: 1.0,
|
1894
1959
|
# },
|
1895
1960
|
# ],
|
1896
1961
|
# catalog_targets: [
|
@@ -1937,14 +2002,13 @@ module Aws::Glue
|
|
1937
2002
|
# @return [Types::CrawlerTargets]
|
1938
2003
|
#
|
1939
2004
|
# @!attribute [rw] schedule
|
1940
|
-
# A `cron` expression used to specify the schedule
|
1941
|
-
#
|
1942
|
-
#
|
1943
|
-
# `cron(15 12 * * ? *)`.
|
2005
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
2006
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
2007
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
1944
2008
|
#
|
1945
2009
|
#
|
1946
2010
|
#
|
1947
|
-
# [1]:
|
2011
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
1948
2012
|
# @return [String]
|
1949
2013
|
#
|
1950
2014
|
# @!attribute [rw] classifiers
|
@@ -1963,13 +2027,13 @@ module Aws::Glue
|
|
1963
2027
|
# @return [Types::SchemaChangePolicy]
|
1964
2028
|
#
|
1965
2029
|
# @!attribute [rw] configuration
|
1966
|
-
#
|
1967
|
-
#
|
2030
|
+
# Crawler configuration information. This versioned JSON string allows
|
2031
|
+
# users to specify aspects of a crawler's behavior. For more
|
1968
2032
|
# information, see [Configuring a Crawler][1].
|
1969
2033
|
#
|
1970
2034
|
#
|
1971
2035
|
#
|
1972
|
-
# [1]:
|
2036
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
1973
2037
|
# @return [String]
|
1974
2038
|
#
|
1975
2039
|
# @!attribute [rw] crawler_security_configuration
|
@@ -1978,13 +2042,13 @@ module Aws::Glue
|
|
1978
2042
|
# @return [String]
|
1979
2043
|
#
|
1980
2044
|
# @!attribute [rw] tags
|
1981
|
-
# The tags to use with this crawler request. You
|
1982
|
-
# access to the crawler. For more information
|
1983
|
-
# Glue][1].
|
2045
|
+
# The tags to use with this crawler request. You may use tags to limit
|
2046
|
+
# access to the crawler. For more information about tags in AWS Glue,
|
2047
|
+
# see [AWS Tags in AWS Glue][1] in the developer guide.
|
1984
2048
|
#
|
1985
2049
|
#
|
1986
2050
|
#
|
1987
|
-
# [1]:
|
2051
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
|
1988
2052
|
# @return [Hash<String,String>]
|
1989
2053
|
#
|
1990
2054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCrawlerRequest AWS API Documentation
|
@@ -2002,6 +2066,7 @@ module Aws::Glue
|
|
2002
2066
|
:configuration,
|
2003
2067
|
:crawler_security_configuration,
|
2004
2068
|
:tags)
|
2069
|
+
SENSITIVE = []
|
2005
2070
|
include Aws::Structure
|
2006
2071
|
end
|
2007
2072
|
|
@@ -2065,6 +2130,7 @@ module Aws::Glue
|
|
2065
2130
|
:header,
|
2066
2131
|
:disable_value_trimming,
|
2067
2132
|
:allow_single_column)
|
2133
|
+
SENSITIVE = []
|
2068
2134
|
include Aws::Structure
|
2069
2135
|
end
|
2070
2136
|
|
@@ -2105,6 +2171,7 @@ module Aws::Glue
|
|
2105
2171
|
class CreateDatabaseRequest < Struct.new(
|
2106
2172
|
:catalog_id,
|
2107
2173
|
:database_input)
|
2174
|
+
SENSITIVE = []
|
2108
2175
|
include Aws::Structure
|
2109
2176
|
end
|
2110
2177
|
|
@@ -2288,6 +2355,7 @@ module Aws::Glue
|
|
2288
2355
|
:security_configuration,
|
2289
2356
|
:tags,
|
2290
2357
|
:arguments)
|
2358
|
+
SENSITIVE = []
|
2291
2359
|
include Aws::Structure
|
2292
2360
|
end
|
2293
2361
|
|
@@ -2412,6 +2480,7 @@ module Aws::Glue
|
|
2412
2480
|
:security_configuration,
|
2413
2481
|
:created_timestamp,
|
2414
2482
|
:arguments)
|
2483
|
+
SENSITIVE = []
|
2415
2484
|
include Aws::Structure
|
2416
2485
|
end
|
2417
2486
|
|
@@ -2451,6 +2520,7 @@ module Aws::Glue
|
|
2451
2520
|
:name,
|
2452
2521
|
:grok_pattern,
|
2453
2522
|
:custom_patterns)
|
2523
|
+
SENSITIVE = []
|
2454
2524
|
include Aws::Structure
|
2455
2525
|
end
|
2456
2526
|
|
@@ -2684,6 +2754,7 @@ module Aws::Glue
|
|
2684
2754
|
:glue_version,
|
2685
2755
|
:number_of_workers,
|
2686
2756
|
:worker_type)
|
2757
|
+
SENSITIVE = []
|
2687
2758
|
include Aws::Structure
|
2688
2759
|
end
|
2689
2760
|
|
@@ -2695,6 +2766,7 @@ module Aws::Glue
|
|
2695
2766
|
#
|
2696
2767
|
class CreateJobResponse < Struct.new(
|
2697
2768
|
:name)
|
2769
|
+
SENSITIVE = []
|
2698
2770
|
include Aws::Structure
|
2699
2771
|
end
|
2700
2772
|
|
@@ -2714,7 +2786,7 @@ module Aws::Glue
|
|
2714
2786
|
#
|
2715
2787
|
# @!attribute [rw] json_path
|
2716
2788
|
# A `JsonPath` string defining the JSON data for the classifier to
|
2717
|
-
# classify. AWS Glue supports a subset of
|
2789
|
+
# classify. AWS Glue supports a subset of JsonPath, as described in
|
2718
2790
|
# [Writing JsonPath Custom Classifiers][1].
|
2719
2791
|
#
|
2720
2792
|
#
|
@@ -2727,6 +2799,7 @@ module Aws::Glue
|
|
2727
2799
|
class CreateJsonClassifierRequest < Struct.new(
|
2728
2800
|
:name,
|
2729
2801
|
:json_path)
|
2802
|
+
SENSITIVE = []
|
2730
2803
|
include Aws::Structure
|
2731
2804
|
end
|
2732
2805
|
|
@@ -2921,6 +2994,7 @@ module Aws::Glue
|
|
2921
2994
|
:timeout,
|
2922
2995
|
:max_retries,
|
2923
2996
|
:tags)
|
2997
|
+
SENSITIVE = []
|
2924
2998
|
include Aws::Structure
|
2925
2999
|
end
|
2926
3000
|
|
@@ -2932,6 +3006,7 @@ module Aws::Glue
|
|
2932
3006
|
#
|
2933
3007
|
class CreateMLTransformResponse < Struct.new(
|
2934
3008
|
:transform_id)
|
3009
|
+
SENSITIVE = []
|
2935
3010
|
include Aws::Structure
|
2936
3011
|
end
|
2937
3012
|
|
@@ -3020,6 +3095,7 @@ module Aws::Glue
|
|
3020
3095
|
:database_name,
|
3021
3096
|
:table_name,
|
3022
3097
|
:partition_input)
|
3098
|
+
SENSITIVE = []
|
3023
3099
|
include Aws::Structure
|
3024
3100
|
end
|
3025
3101
|
|
@@ -3073,6 +3149,7 @@ module Aws::Glue
|
|
3073
3149
|
:dag_nodes,
|
3074
3150
|
:dag_edges,
|
3075
3151
|
:language)
|
3152
|
+
SENSITIVE = []
|
3076
3153
|
include Aws::Structure
|
3077
3154
|
end
|
3078
3155
|
|
@@ -3089,6 +3166,7 @@ module Aws::Glue
|
|
3089
3166
|
class CreateScriptResponse < Struct.new(
|
3090
3167
|
:python_script,
|
3091
3168
|
:scala_code)
|
3169
|
+
SENSITIVE = []
|
3092
3170
|
include Aws::Structure
|
3093
3171
|
end
|
3094
3172
|
|
@@ -3128,6 +3206,7 @@ module Aws::Glue
|
|
3128
3206
|
class CreateSecurityConfigurationRequest < Struct.new(
|
3129
3207
|
:name,
|
3130
3208
|
:encryption_configuration)
|
3209
|
+
SENSITIVE = []
|
3131
3210
|
include Aws::Structure
|
3132
3211
|
end
|
3133
3212
|
|
@@ -3144,6 +3223,7 @@ module Aws::Glue
|
|
3144
3223
|
class CreateSecurityConfigurationResponse < Struct.new(
|
3145
3224
|
:name,
|
3146
3225
|
:created_timestamp)
|
3226
|
+
SENSITIVE = []
|
3147
3227
|
include Aws::Structure
|
3148
3228
|
end
|
3149
3229
|
|
@@ -3242,6 +3322,7 @@ module Aws::Glue
|
|
3242
3322
|
:catalog_id,
|
3243
3323
|
:database_name,
|
3244
3324
|
:table_input)
|
3325
|
+
SENSITIVE = []
|
3245
3326
|
include Aws::Structure
|
3246
3327
|
end
|
3247
3328
|
|
@@ -3355,6 +3436,7 @@ module Aws::Glue
|
|
3355
3436
|
:description,
|
3356
3437
|
:start_on_creation,
|
3357
3438
|
:tags)
|
3439
|
+
SENSITIVE = []
|
3358
3440
|
include Aws::Structure
|
3359
3441
|
end
|
3360
3442
|
|
@@ -3366,6 +3448,7 @@ module Aws::Glue
|
|
3366
3448
|
#
|
3367
3449
|
class CreateTriggerResponse < Struct.new(
|
3368
3450
|
:name)
|
3451
|
+
SENSITIVE = []
|
3369
3452
|
include Aws::Structure
|
3370
3453
|
end
|
3371
3454
|
|
@@ -3409,6 +3492,7 @@ module Aws::Glue
|
|
3409
3492
|
:catalog_id,
|
3410
3493
|
:database_name,
|
3411
3494
|
:function_input)
|
3495
|
+
SENSITIVE = []
|
3412
3496
|
include Aws::Structure
|
3413
3497
|
end
|
3414
3498
|
|
@@ -3455,6 +3539,7 @@ module Aws::Glue
|
|
3455
3539
|
:description,
|
3456
3540
|
:default_run_properties,
|
3457
3541
|
:tags)
|
3542
|
+
SENSITIVE = []
|
3458
3543
|
include Aws::Structure
|
3459
3544
|
end
|
3460
3545
|
|
@@ -3466,6 +3551,7 @@ module Aws::Glue
|
|
3466
3551
|
#
|
3467
3552
|
class CreateWorkflowResponse < Struct.new(
|
3468
3553
|
:name)
|
3554
|
+
SENSITIVE = []
|
3469
3555
|
include Aws::Structure
|
3470
3556
|
end
|
3471
3557
|
|
@@ -3503,6 +3589,7 @@ module Aws::Glue
|
|
3503
3589
|
:classification,
|
3504
3590
|
:name,
|
3505
3591
|
:row_tag)
|
3592
|
+
SENSITIVE = []
|
3506
3593
|
include Aws::Structure
|
3507
3594
|
end
|
3508
3595
|
|
@@ -3564,6 +3651,7 @@ module Aws::Glue
|
|
3564
3651
|
:header,
|
3565
3652
|
:disable_value_trimming,
|
3566
3653
|
:allow_single_column)
|
3654
|
+
SENSITIVE = []
|
3567
3655
|
include Aws::Structure
|
3568
3656
|
end
|
3569
3657
|
|
@@ -3601,6 +3689,7 @@ module Aws::Glue
|
|
3601
3689
|
class DataCatalogEncryptionSettings < Struct.new(
|
3602
3690
|
:encryption_at_rest,
|
3603
3691
|
:connection_password_encryption)
|
3692
|
+
SENSITIVE = []
|
3604
3693
|
include Aws::Structure
|
3605
3694
|
end
|
3606
3695
|
|
@@ -3621,6 +3710,7 @@ module Aws::Glue
|
|
3621
3710
|
#
|
3622
3711
|
class DataLakePrincipal < Struct.new(
|
3623
3712
|
:data_lake_principal_identifier)
|
3713
|
+
SENSITIVE = []
|
3624
3714
|
include Aws::Structure
|
3625
3715
|
end
|
3626
3716
|
|
@@ -3662,6 +3752,7 @@ module Aws::Glue
|
|
3662
3752
|
:parameters,
|
3663
3753
|
:create_time,
|
3664
3754
|
:create_table_default_permissions)
|
3755
|
+
SENSITIVE = []
|
3665
3756
|
include Aws::Structure
|
3666
3757
|
end
|
3667
3758
|
|
@@ -3720,6 +3811,7 @@ module Aws::Glue
|
|
3720
3811
|
:location_uri,
|
3721
3812
|
:parameters,
|
3722
3813
|
:create_table_default_permissions)
|
3814
|
+
SENSITIVE = []
|
3723
3815
|
include Aws::Structure
|
3724
3816
|
end
|
3725
3817
|
|
@@ -3738,6 +3830,7 @@ module Aws::Glue
|
|
3738
3830
|
#
|
3739
3831
|
class DeleteClassifierRequest < Struct.new(
|
3740
3832
|
:name)
|
3833
|
+
SENSITIVE = []
|
3741
3834
|
include Aws::Structure
|
3742
3835
|
end
|
3743
3836
|
|
@@ -3767,6 +3860,7 @@ module Aws::Glue
|
|
3767
3860
|
class DeleteConnectionRequest < Struct.new(
|
3768
3861
|
:catalog_id,
|
3769
3862
|
:connection_name)
|
3863
|
+
SENSITIVE = []
|
3770
3864
|
include Aws::Structure
|
3771
3865
|
end
|
3772
3866
|
|
@@ -3789,6 +3883,7 @@ module Aws::Glue
|
|
3789
3883
|
#
|
3790
3884
|
class DeleteCrawlerRequest < Struct.new(
|
3791
3885
|
:name)
|
3886
|
+
SENSITIVE = []
|
3792
3887
|
include Aws::Structure
|
3793
3888
|
end
|
3794
3889
|
|
@@ -3819,6 +3914,7 @@ module Aws::Glue
|
|
3819
3914
|
class DeleteDatabaseRequest < Struct.new(
|
3820
3915
|
:catalog_id,
|
3821
3916
|
:name)
|
3917
|
+
SENSITIVE = []
|
3822
3918
|
include Aws::Structure
|
3823
3919
|
end
|
3824
3920
|
|
@@ -3841,6 +3937,7 @@ module Aws::Glue
|
|
3841
3937
|
#
|
3842
3938
|
class DeleteDevEndpointRequest < Struct.new(
|
3843
3939
|
:endpoint_name)
|
3940
|
+
SENSITIVE = []
|
3844
3941
|
include Aws::Structure
|
3845
3942
|
end
|
3846
3943
|
|
@@ -3863,6 +3960,7 @@ module Aws::Glue
|
|
3863
3960
|
#
|
3864
3961
|
class DeleteJobRequest < Struct.new(
|
3865
3962
|
:job_name)
|
3963
|
+
SENSITIVE = []
|
3866
3964
|
include Aws::Structure
|
3867
3965
|
end
|
3868
3966
|
|
@@ -3874,6 +3972,7 @@ module Aws::Glue
|
|
3874
3972
|
#
|
3875
3973
|
class DeleteJobResponse < Struct.new(
|
3876
3974
|
:job_name)
|
3975
|
+
SENSITIVE = []
|
3877
3976
|
include Aws::Structure
|
3878
3977
|
end
|
3879
3978
|
|
@@ -3892,6 +3991,7 @@ module Aws::Glue
|
|
3892
3991
|
#
|
3893
3992
|
class DeleteMLTransformRequest < Struct.new(
|
3894
3993
|
:transform_id)
|
3994
|
+
SENSITIVE = []
|
3895
3995
|
include Aws::Structure
|
3896
3996
|
end
|
3897
3997
|
|
@@ -3903,6 +4003,7 @@ module Aws::Glue
|
|
3903
4003
|
#
|
3904
4004
|
class DeleteMLTransformResponse < Struct.new(
|
3905
4005
|
:transform_id)
|
4006
|
+
SENSITIVE = []
|
3906
4007
|
include Aws::Structure
|
3907
4008
|
end
|
3908
4009
|
|
@@ -3941,6 +4042,7 @@ module Aws::Glue
|
|
3941
4042
|
:database_name,
|
3942
4043
|
:table_name,
|
3943
4044
|
:partition_values)
|
4045
|
+
SENSITIVE = []
|
3944
4046
|
include Aws::Structure
|
3945
4047
|
end
|
3946
4048
|
|
@@ -3963,6 +4065,7 @@ module Aws::Glue
|
|
3963
4065
|
#
|
3964
4066
|
class DeleteResourcePolicyRequest < Struct.new(
|
3965
4067
|
:policy_hash_condition)
|
4068
|
+
SENSITIVE = []
|
3966
4069
|
include Aws::Structure
|
3967
4070
|
end
|
3968
4071
|
|
@@ -3985,6 +4088,7 @@ module Aws::Glue
|
|
3985
4088
|
#
|
3986
4089
|
class DeleteSecurityConfigurationRequest < Struct.new(
|
3987
4090
|
:name)
|
4091
|
+
SENSITIVE = []
|
3988
4092
|
include Aws::Structure
|
3989
4093
|
end
|
3990
4094
|
|
@@ -4022,6 +4126,7 @@ module Aws::Glue
|
|
4022
4126
|
:catalog_id,
|
4023
4127
|
:database_name,
|
4024
4128
|
:name)
|
4129
|
+
SENSITIVE = []
|
4025
4130
|
include Aws::Structure
|
4026
4131
|
end
|
4027
4132
|
|
@@ -4066,6 +4171,7 @@ module Aws::Glue
|
|
4066
4171
|
:database_name,
|
4067
4172
|
:table_name,
|
4068
4173
|
:version_id)
|
4174
|
+
SENSITIVE = []
|
4069
4175
|
include Aws::Structure
|
4070
4176
|
end
|
4071
4177
|
|
@@ -4088,6 +4194,7 @@ module Aws::Glue
|
|
4088
4194
|
#
|
4089
4195
|
class DeleteTriggerRequest < Struct.new(
|
4090
4196
|
:name)
|
4197
|
+
SENSITIVE = []
|
4091
4198
|
include Aws::Structure
|
4092
4199
|
end
|
4093
4200
|
|
@@ -4099,6 +4206,7 @@ module Aws::Glue
|
|
4099
4206
|
#
|
4100
4207
|
class DeleteTriggerResponse < Struct.new(
|
4101
4208
|
:name)
|
4209
|
+
SENSITIVE = []
|
4102
4210
|
include Aws::Structure
|
4103
4211
|
end
|
4104
4212
|
|
@@ -4130,6 +4238,7 @@ module Aws::Glue
|
|
4130
4238
|
:catalog_id,
|
4131
4239
|
:database_name,
|
4132
4240
|
:function_name)
|
4241
|
+
SENSITIVE = []
|
4133
4242
|
include Aws::Structure
|
4134
4243
|
end
|
4135
4244
|
|
@@ -4152,6 +4261,7 @@ module Aws::Glue
|
|
4152
4261
|
#
|
4153
4262
|
class DeleteWorkflowRequest < Struct.new(
|
4154
4263
|
:name)
|
4264
|
+
SENSITIVE = []
|
4155
4265
|
include Aws::Structure
|
4156
4266
|
end
|
4157
4267
|
|
@@ -4163,6 +4273,7 @@ module Aws::Glue
|
|
4163
4273
|
#
|
4164
4274
|
class DeleteWorkflowResponse < Struct.new(
|
4165
4275
|
:name)
|
4276
|
+
SENSITIVE = []
|
4166
4277
|
include Aws::Structure
|
4167
4278
|
end
|
4168
4279
|
|
@@ -4386,6 +4497,7 @@ module Aws::Glue
|
|
4386
4497
|
:public_keys,
|
4387
4498
|
:security_configuration,
|
4388
4499
|
:arguments)
|
4500
|
+
SENSITIVE = []
|
4389
4501
|
include Aws::Structure
|
4390
4502
|
end
|
4391
4503
|
|
@@ -4430,6 +4542,7 @@ module Aws::Glue
|
|
4430
4542
|
class DevEndpointCustomLibraries < Struct.new(
|
4431
4543
|
:extra_python_libs_s3_path,
|
4432
4544
|
:extra_jars_s3_path)
|
4545
|
+
SENSITIVE = []
|
4433
4546
|
include Aws::Structure
|
4434
4547
|
end
|
4435
4548
|
|
@@ -4440,16 +4553,44 @@ module Aws::Glue
|
|
4440
4553
|
#
|
4441
4554
|
# {
|
4442
4555
|
# path: "Path",
|
4556
|
+
# scan_all: false,
|
4557
|
+
# scan_rate: 1.0,
|
4443
4558
|
# }
|
4444
4559
|
#
|
4445
4560
|
# @!attribute [rw] path
|
4446
4561
|
# The name of the DynamoDB table to crawl.
|
4447
4562
|
# @return [String]
|
4448
4563
|
#
|
4564
|
+
# @!attribute [rw] scan_all
|
4565
|
+
# Indicates whether to scan all the records, or to sample rows from
|
4566
|
+
# the table. Scanning all the records can take a long time when the
|
4567
|
+
# table is not a high throughput table.
|
4568
|
+
#
|
4569
|
+
# A value of `true` means to scan all records, while a value of
|
4570
|
+
# `false` means to sample the records. If no value is specified, the
|
4571
|
+
# value defaults to `true`.
|
4572
|
+
# @return [Boolean]
|
4573
|
+
#
|
4574
|
+
# @!attribute [rw] scan_rate
|
4575
|
+
# The percentage of the configured read capacity units to use by the
|
4576
|
+
# AWS Glue crawler. Read capacity units is a term defined by DynamoDB,
|
4577
|
+
# and is a numeric value that acts as rate limiter for the number of
|
4578
|
+
# reads that can be performed on that table per second.
|
4579
|
+
#
|
4580
|
+
# The valid values are null or a value between 0.1 to 1.5. A null
|
4581
|
+
# value is used when user does not provide a value, and defaults to
|
4582
|
+
# 0.5 of the configured Read Capacity Unit (for provisioned tables),
|
4583
|
+
# or 0.25 of the max configured Read Capacity Unit (for tables using
|
4584
|
+
# on-demand mode).
|
4585
|
+
# @return [Float]
|
4586
|
+
#
|
4449
4587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DynamoDBTarget AWS API Documentation
|
4450
4588
|
#
|
4451
4589
|
class DynamoDBTarget < Struct.new(
|
4452
|
-
:path
|
4590
|
+
:path,
|
4591
|
+
:scan_all,
|
4592
|
+
:scan_rate)
|
4593
|
+
SENSITIVE = []
|
4453
4594
|
include Aws::Structure
|
4454
4595
|
end
|
4455
4596
|
|
@@ -4469,6 +4610,7 @@ module Aws::Glue
|
|
4469
4610
|
class Edge < Struct.new(
|
4470
4611
|
:source_id,
|
4471
4612
|
:destination_id)
|
4613
|
+
SENSITIVE = []
|
4472
4614
|
include Aws::Structure
|
4473
4615
|
end
|
4474
4616
|
|
@@ -4495,6 +4637,7 @@ module Aws::Glue
|
|
4495
4637
|
class EncryptionAtRest < Struct.new(
|
4496
4638
|
:catalog_encryption_mode,
|
4497
4639
|
:sse_aws_kms_key_id)
|
4640
|
+
SENSITIVE = []
|
4498
4641
|
include Aws::Structure
|
4499
4642
|
end
|
4500
4643
|
|
@@ -4539,6 +4682,7 @@ module Aws::Glue
|
|
4539
4682
|
:s3_encryption,
|
4540
4683
|
:cloud_watch_encryption,
|
4541
4684
|
:job_bookmarks_encryption)
|
4685
|
+
SENSITIVE = []
|
4542
4686
|
include Aws::Structure
|
4543
4687
|
end
|
4544
4688
|
|
@@ -4552,6 +4696,7 @@ module Aws::Glue
|
|
4552
4696
|
#
|
4553
4697
|
class EntityNotFoundException < Struct.new(
|
4554
4698
|
:message)
|
4699
|
+
SENSITIVE = []
|
4555
4700
|
include Aws::Structure
|
4556
4701
|
end
|
4557
4702
|
|
@@ -4570,6 +4715,7 @@ module Aws::Glue
|
|
4570
4715
|
class ErrorDetail < Struct.new(
|
4571
4716
|
:error_code,
|
4572
4717
|
:error_message)
|
4718
|
+
SENSITIVE = []
|
4573
4719
|
include Aws::Structure
|
4574
4720
|
end
|
4575
4721
|
|
@@ -4589,6 +4735,7 @@ module Aws::Glue
|
|
4589
4735
|
class EvaluationMetrics < Struct.new(
|
4590
4736
|
:transform_type,
|
4591
4737
|
:find_matches_metrics)
|
4738
|
+
SENSITIVE = []
|
4592
4739
|
include Aws::Structure
|
4593
4740
|
end
|
4594
4741
|
|
@@ -4611,6 +4758,7 @@ module Aws::Glue
|
|
4611
4758
|
#
|
4612
4759
|
class ExecutionProperty < Struct.new(
|
4613
4760
|
:max_concurrent_runs)
|
4761
|
+
SENSITIVE = []
|
4614
4762
|
include Aws::Structure
|
4615
4763
|
end
|
4616
4764
|
|
@@ -4625,6 +4773,7 @@ module Aws::Glue
|
|
4625
4773
|
#
|
4626
4774
|
class ExportLabelsTaskRunProperties < Struct.new(
|
4627
4775
|
:output_s3_path)
|
4776
|
+
SENSITIVE = []
|
4628
4777
|
include Aws::Structure
|
4629
4778
|
end
|
4630
4779
|
|
@@ -4703,6 +4852,7 @@ module Aws::Glue
|
|
4703
4852
|
:recall,
|
4704
4853
|
:f1,
|
4705
4854
|
:confusion_matrix)
|
4855
|
+
SENSITIVE = []
|
4706
4856
|
include Aws::Structure
|
4707
4857
|
end
|
4708
4858
|
|
@@ -4774,6 +4924,7 @@ module Aws::Glue
|
|
4774
4924
|
:precision_recall_tradeoff,
|
4775
4925
|
:accuracy_cost_tradeoff,
|
4776
4926
|
:enforce_provided_labels)
|
4927
|
+
SENSITIVE = []
|
4777
4928
|
include Aws::Structure
|
4778
4929
|
end
|
4779
4930
|
|
@@ -4797,6 +4948,7 @@ module Aws::Glue
|
|
4797
4948
|
:job_id,
|
4798
4949
|
:job_name,
|
4799
4950
|
:job_run_id)
|
4951
|
+
SENSITIVE = []
|
4800
4952
|
include Aws::Structure
|
4801
4953
|
end
|
4802
4954
|
|
@@ -4816,6 +4968,7 @@ module Aws::Glue
|
|
4816
4968
|
#
|
4817
4969
|
class GetCatalogImportStatusRequest < Struct.new(
|
4818
4970
|
:catalog_id)
|
4971
|
+
SENSITIVE = []
|
4819
4972
|
include Aws::Structure
|
4820
4973
|
end
|
4821
4974
|
|
@@ -4827,6 +4980,7 @@ module Aws::Glue
|
|
4827
4980
|
#
|
4828
4981
|
class GetCatalogImportStatusResponse < Struct.new(
|
4829
4982
|
:import_status)
|
4983
|
+
SENSITIVE = []
|
4830
4984
|
include Aws::Structure
|
4831
4985
|
end
|
4832
4986
|
|
@@ -4845,6 +4999,7 @@ module Aws::Glue
|
|
4845
4999
|
#
|
4846
5000
|
class GetClassifierRequest < Struct.new(
|
4847
5001
|
:name)
|
5002
|
+
SENSITIVE = []
|
4848
5003
|
include Aws::Structure
|
4849
5004
|
end
|
4850
5005
|
|
@@ -4856,6 +5011,7 @@ module Aws::Glue
|
|
4856
5011
|
#
|
4857
5012
|
class GetClassifierResponse < Struct.new(
|
4858
5013
|
:classifier)
|
5014
|
+
SENSITIVE = []
|
4859
5015
|
include Aws::Structure
|
4860
5016
|
end
|
4861
5017
|
|
@@ -4880,6 +5036,7 @@ module Aws::Glue
|
|
4880
5036
|
class GetClassifiersRequest < Struct.new(
|
4881
5037
|
:max_results,
|
4882
5038
|
:next_token)
|
5039
|
+
SENSITIVE = []
|
4883
5040
|
include Aws::Structure
|
4884
5041
|
end
|
4885
5042
|
|
@@ -4896,6 +5053,7 @@ module Aws::Glue
|
|
4896
5053
|
class GetClassifiersResponse < Struct.new(
|
4897
5054
|
:classifiers,
|
4898
5055
|
:next_token)
|
5056
|
+
SENSITIVE = []
|
4899
5057
|
include Aws::Structure
|
4900
5058
|
end
|
4901
5059
|
|
@@ -4932,6 +5090,7 @@ module Aws::Glue
|
|
4932
5090
|
:catalog_id,
|
4933
5091
|
:name,
|
4934
5092
|
:hide_password)
|
5093
|
+
SENSITIVE = []
|
4935
5094
|
include Aws::Structure
|
4936
5095
|
end
|
4937
5096
|
|
@@ -4943,6 +5102,7 @@ module Aws::Glue
|
|
4943
5102
|
#
|
4944
5103
|
class GetConnectionResponse < Struct.new(
|
4945
5104
|
:connection)
|
5105
|
+
SENSITIVE = []
|
4946
5106
|
include Aws::Structure
|
4947
5107
|
end
|
4948
5108
|
|
@@ -4972,6 +5132,7 @@ module Aws::Glue
|
|
4972
5132
|
class GetConnectionsFilter < Struct.new(
|
4973
5133
|
:match_criteria,
|
4974
5134
|
:connection_type)
|
5135
|
+
SENSITIVE = []
|
4975
5136
|
include Aws::Structure
|
4976
5137
|
end
|
4977
5138
|
|
@@ -5023,6 +5184,7 @@ module Aws::Glue
|
|
5023
5184
|
:hide_password,
|
5024
5185
|
:next_token,
|
5025
5186
|
:max_results)
|
5187
|
+
SENSITIVE = []
|
5026
5188
|
include Aws::Structure
|
5027
5189
|
end
|
5028
5190
|
|
@@ -5040,6 +5202,7 @@ module Aws::Glue
|
|
5040
5202
|
class GetConnectionsResponse < Struct.new(
|
5041
5203
|
:connection_list,
|
5042
5204
|
:next_token)
|
5205
|
+
SENSITIVE = []
|
5043
5206
|
include Aws::Structure
|
5044
5207
|
end
|
5045
5208
|
|
@@ -5070,6 +5233,7 @@ module Aws::Glue
|
|
5070
5233
|
:crawler_name_list,
|
5071
5234
|
:max_results,
|
5072
5235
|
:next_token)
|
5236
|
+
SENSITIVE = []
|
5073
5237
|
include Aws::Structure
|
5074
5238
|
end
|
5075
5239
|
|
@@ -5087,6 +5251,7 @@ module Aws::Glue
|
|
5087
5251
|
class GetCrawlerMetricsResponse < Struct.new(
|
5088
5252
|
:crawler_metrics_list,
|
5089
5253
|
:next_token)
|
5254
|
+
SENSITIVE = []
|
5090
5255
|
include Aws::Structure
|
5091
5256
|
end
|
5092
5257
|
|
@@ -5105,6 +5270,7 @@ module Aws::Glue
|
|
5105
5270
|
#
|
5106
5271
|
class GetCrawlerRequest < Struct.new(
|
5107
5272
|
:name)
|
5273
|
+
SENSITIVE = []
|
5108
5274
|
include Aws::Structure
|
5109
5275
|
end
|
5110
5276
|
|
@@ -5116,6 +5282,7 @@ module Aws::Glue
|
|
5116
5282
|
#
|
5117
5283
|
class GetCrawlerResponse < Struct.new(
|
5118
5284
|
:crawler)
|
5285
|
+
SENSITIVE = []
|
5119
5286
|
include Aws::Structure
|
5120
5287
|
end
|
5121
5288
|
|
@@ -5140,6 +5307,7 @@ module Aws::Glue
|
|
5140
5307
|
class GetCrawlersRequest < Struct.new(
|
5141
5308
|
:max_results,
|
5142
5309
|
:next_token)
|
5310
|
+
SENSITIVE = []
|
5143
5311
|
include Aws::Structure
|
5144
5312
|
end
|
5145
5313
|
|
@@ -5157,6 +5325,7 @@ module Aws::Glue
|
|
5157
5325
|
class GetCrawlersResponse < Struct.new(
|
5158
5326
|
:crawlers,
|
5159
5327
|
:next_token)
|
5328
|
+
SENSITIVE = []
|
5160
5329
|
include Aws::Structure
|
5161
5330
|
end
|
5162
5331
|
|
@@ -5176,6 +5345,7 @@ module Aws::Glue
|
|
5176
5345
|
#
|
5177
5346
|
class GetDataCatalogEncryptionSettingsRequest < Struct.new(
|
5178
5347
|
:catalog_id)
|
5348
|
+
SENSITIVE = []
|
5179
5349
|
include Aws::Structure
|
5180
5350
|
end
|
5181
5351
|
|
@@ -5187,6 +5357,7 @@ module Aws::Glue
|
|
5187
5357
|
#
|
5188
5358
|
class GetDataCatalogEncryptionSettingsResponse < Struct.new(
|
5189
5359
|
:data_catalog_encryption_settings)
|
5360
|
+
SENSITIVE = []
|
5190
5361
|
include Aws::Structure
|
5191
5362
|
end
|
5192
5363
|
|
@@ -5213,6 +5384,7 @@ module Aws::Glue
|
|
5213
5384
|
class GetDatabaseRequest < Struct.new(
|
5214
5385
|
:catalog_id,
|
5215
5386
|
:name)
|
5387
|
+
SENSITIVE = []
|
5216
5388
|
include Aws::Structure
|
5217
5389
|
end
|
5218
5390
|
|
@@ -5224,6 +5396,7 @@ module Aws::Glue
|
|
5224
5396
|
#
|
5225
5397
|
class GetDatabaseResponse < Struct.new(
|
5226
5398
|
:database)
|
5399
|
+
SENSITIVE = []
|
5227
5400
|
include Aws::Structure
|
5228
5401
|
end
|
5229
5402
|
|
@@ -5255,6 +5428,7 @@ module Aws::Glue
|
|
5255
5428
|
:catalog_id,
|
5256
5429
|
:next_token,
|
5257
5430
|
:max_results)
|
5431
|
+
SENSITIVE = []
|
5258
5432
|
include Aws::Structure
|
5259
5433
|
end
|
5260
5434
|
|
@@ -5272,6 +5446,7 @@ module Aws::Glue
|
|
5272
5446
|
class GetDatabasesResponse < Struct.new(
|
5273
5447
|
:database_list,
|
5274
5448
|
:next_token)
|
5449
|
+
SENSITIVE = []
|
5275
5450
|
include Aws::Structure
|
5276
5451
|
end
|
5277
5452
|
|
@@ -5290,6 +5465,7 @@ module Aws::Glue
|
|
5290
5465
|
#
|
5291
5466
|
class GetDataflowGraphRequest < Struct.new(
|
5292
5467
|
:python_script)
|
5468
|
+
SENSITIVE = []
|
5293
5469
|
include Aws::Structure
|
5294
5470
|
end
|
5295
5471
|
|
@@ -5306,6 +5482,7 @@ module Aws::Glue
|
|
5306
5482
|
class GetDataflowGraphResponse < Struct.new(
|
5307
5483
|
:dag_nodes,
|
5308
5484
|
:dag_edges)
|
5485
|
+
SENSITIVE = []
|
5309
5486
|
include Aws::Structure
|
5310
5487
|
end
|
5311
5488
|
|
@@ -5324,6 +5501,7 @@ module Aws::Glue
|
|
5324
5501
|
#
|
5325
5502
|
class GetDevEndpointRequest < Struct.new(
|
5326
5503
|
:endpoint_name)
|
5504
|
+
SENSITIVE = []
|
5327
5505
|
include Aws::Structure
|
5328
5506
|
end
|
5329
5507
|
|
@@ -5335,6 +5513,7 @@ module Aws::Glue
|
|
5335
5513
|
#
|
5336
5514
|
class GetDevEndpointResponse < Struct.new(
|
5337
5515
|
:dev_endpoint)
|
5516
|
+
SENSITIVE = []
|
5338
5517
|
include Aws::Structure
|
5339
5518
|
end
|
5340
5519
|
|
@@ -5359,6 +5538,7 @@ module Aws::Glue
|
|
5359
5538
|
class GetDevEndpointsRequest < Struct.new(
|
5360
5539
|
:max_results,
|
5361
5540
|
:next_token)
|
5541
|
+
SENSITIVE = []
|
5362
5542
|
include Aws::Structure
|
5363
5543
|
end
|
5364
5544
|
|
@@ -5376,6 +5556,7 @@ module Aws::Glue
|
|
5376
5556
|
class GetDevEndpointsResponse < Struct.new(
|
5377
5557
|
:dev_endpoints,
|
5378
5558
|
:next_token)
|
5559
|
+
SENSITIVE = []
|
5379
5560
|
include Aws::Structure
|
5380
5561
|
end
|
5381
5562
|
|
@@ -5400,6 +5581,7 @@ module Aws::Glue
|
|
5400
5581
|
class GetJobBookmarkRequest < Struct.new(
|
5401
5582
|
:job_name,
|
5402
5583
|
:run_id)
|
5584
|
+
SENSITIVE = []
|
5403
5585
|
include Aws::Structure
|
5404
5586
|
end
|
5405
5587
|
|
@@ -5411,6 +5593,7 @@ module Aws::Glue
|
|
5411
5593
|
#
|
5412
5594
|
class GetJobBookmarkResponse < Struct.new(
|
5413
5595
|
:job_bookmark_entry)
|
5596
|
+
SENSITIVE = []
|
5414
5597
|
include Aws::Structure
|
5415
5598
|
end
|
5416
5599
|
|
@@ -5429,6 +5612,7 @@ module Aws::Glue
|
|
5429
5612
|
#
|
5430
5613
|
class GetJobRequest < Struct.new(
|
5431
5614
|
:job_name)
|
5615
|
+
SENSITIVE = []
|
5432
5616
|
include Aws::Structure
|
5433
5617
|
end
|
5434
5618
|
|
@@ -5440,6 +5624,7 @@ module Aws::Glue
|
|
5440
5624
|
#
|
5441
5625
|
class GetJobResponse < Struct.new(
|
5442
5626
|
:job)
|
5627
|
+
SENSITIVE = []
|
5443
5628
|
include Aws::Structure
|
5444
5629
|
end
|
5445
5630
|
|
@@ -5470,6 +5655,7 @@ module Aws::Glue
|
|
5470
5655
|
:job_name,
|
5471
5656
|
:run_id,
|
5472
5657
|
:predecessors_included)
|
5658
|
+
SENSITIVE = []
|
5473
5659
|
include Aws::Structure
|
5474
5660
|
end
|
5475
5661
|
|
@@ -5481,6 +5667,7 @@ module Aws::Glue
|
|
5481
5667
|
#
|
5482
5668
|
class GetJobRunResponse < Struct.new(
|
5483
5669
|
:job_run)
|
5670
|
+
SENSITIVE = []
|
5484
5671
|
include Aws::Structure
|
5485
5672
|
end
|
5486
5673
|
|
@@ -5511,6 +5698,7 @@ module Aws::Glue
|
|
5511
5698
|
:job_name,
|
5512
5699
|
:next_token,
|
5513
5700
|
:max_results)
|
5701
|
+
SENSITIVE = []
|
5514
5702
|
include Aws::Structure
|
5515
5703
|
end
|
5516
5704
|
|
@@ -5528,6 +5716,7 @@ module Aws::Glue
|
|
5528
5716
|
class GetJobRunsResponse < Struct.new(
|
5529
5717
|
:job_runs,
|
5530
5718
|
:next_token)
|
5719
|
+
SENSITIVE = []
|
5531
5720
|
include Aws::Structure
|
5532
5721
|
end
|
5533
5722
|
|
@@ -5552,6 +5741,7 @@ module Aws::Glue
|
|
5552
5741
|
class GetJobsRequest < Struct.new(
|
5553
5742
|
:next_token,
|
5554
5743
|
:max_results)
|
5744
|
+
SENSITIVE = []
|
5555
5745
|
include Aws::Structure
|
5556
5746
|
end
|
5557
5747
|
|
@@ -5569,6 +5759,7 @@ module Aws::Glue
|
|
5569
5759
|
class GetJobsResponse < Struct.new(
|
5570
5760
|
:jobs,
|
5571
5761
|
:next_token)
|
5762
|
+
SENSITIVE = []
|
5572
5763
|
include Aws::Structure
|
5573
5764
|
end
|
5574
5765
|
|
@@ -5593,6 +5784,7 @@ module Aws::Glue
|
|
5593
5784
|
class GetMLTaskRunRequest < Struct.new(
|
5594
5785
|
:transform_id,
|
5595
5786
|
:task_run_id)
|
5787
|
+
SENSITIVE = []
|
5596
5788
|
include Aws::Structure
|
5597
5789
|
end
|
5598
5790
|
|
@@ -5650,6 +5842,7 @@ module Aws::Glue
|
|
5650
5842
|
:last_modified_on,
|
5651
5843
|
:completed_on,
|
5652
5844
|
:execution_time)
|
5845
|
+
SENSITIVE = []
|
5653
5846
|
include Aws::Structure
|
5654
5847
|
end
|
5655
5848
|
|
@@ -5702,6 +5895,7 @@ module Aws::Glue
|
|
5702
5895
|
:max_results,
|
5703
5896
|
:filter,
|
5704
5897
|
:sort)
|
5898
|
+
SENSITIVE = []
|
5705
5899
|
include Aws::Structure
|
5706
5900
|
end
|
5707
5901
|
|
@@ -5718,6 +5912,7 @@ module Aws::Glue
|
|
5718
5912
|
class GetMLTaskRunsResponse < Struct.new(
|
5719
5913
|
:task_runs,
|
5720
5914
|
:next_token)
|
5915
|
+
SENSITIVE = []
|
5721
5916
|
include Aws::Structure
|
5722
5917
|
end
|
5723
5918
|
|
@@ -5737,6 +5932,7 @@ module Aws::Glue
|
|
5737
5932
|
#
|
5738
5933
|
class GetMLTransformRequest < Struct.new(
|
5739
5934
|
:transform_id)
|
5935
|
+
SENSITIVE = []
|
5740
5936
|
include Aws::Structure
|
5741
5937
|
end
|
5742
5938
|
|
@@ -5873,6 +6069,7 @@ module Aws::Glue
|
|
5873
6069
|
:number_of_workers,
|
5874
6070
|
:timeout,
|
5875
6071
|
:max_retries)
|
6072
|
+
SENSITIVE = []
|
5876
6073
|
include Aws::Structure
|
5877
6074
|
end
|
5878
6075
|
|
@@ -5927,6 +6124,7 @@ module Aws::Glue
|
|
5927
6124
|
:max_results,
|
5928
6125
|
:filter,
|
5929
6126
|
:sort)
|
6127
|
+
SENSITIVE = []
|
5930
6128
|
include Aws::Structure
|
5931
6129
|
end
|
5932
6130
|
|
@@ -5943,6 +6141,7 @@ module Aws::Glue
|
|
5943
6141
|
class GetMLTransformsResponse < Struct.new(
|
5944
6142
|
:transforms,
|
5945
6143
|
:next_token)
|
6144
|
+
SENSITIVE = []
|
5946
6145
|
include Aws::Structure
|
5947
6146
|
end
|
5948
6147
|
|
@@ -6003,6 +6202,7 @@ module Aws::Glue
|
|
6003
6202
|
:source,
|
6004
6203
|
:sinks,
|
6005
6204
|
:location)
|
6205
|
+
SENSITIVE = []
|
6006
6206
|
include Aws::Structure
|
6007
6207
|
end
|
6008
6208
|
|
@@ -6014,6 +6214,7 @@ module Aws::Glue
|
|
6014
6214
|
#
|
6015
6215
|
class GetMappingResponse < Struct.new(
|
6016
6216
|
:mapping)
|
6217
|
+
SENSITIVE = []
|
6017
6218
|
include Aws::Structure
|
6018
6219
|
end
|
6019
6220
|
|
@@ -6051,6 +6252,7 @@ module Aws::Glue
|
|
6051
6252
|
:database_name,
|
6052
6253
|
:table_name,
|
6053
6254
|
:partition_values)
|
6255
|
+
SENSITIVE = []
|
6054
6256
|
include Aws::Structure
|
6055
6257
|
end
|
6056
6258
|
|
@@ -6062,6 +6264,7 @@ module Aws::Glue
|
|
6062
6264
|
#
|
6063
6265
|
class GetPartitionResponse < Struct.new(
|
6064
6266
|
:partition)
|
6267
|
+
SENSITIVE = []
|
6065
6268
|
include Aws::Structure
|
6066
6269
|
end
|
6067
6270
|
|
@@ -6214,6 +6417,7 @@ module Aws::Glue
|
|
6214
6417
|
:next_token,
|
6215
6418
|
:segment,
|
6216
6419
|
:max_results)
|
6420
|
+
SENSITIVE = []
|
6217
6421
|
include Aws::Structure
|
6218
6422
|
end
|
6219
6423
|
|
@@ -6231,6 +6435,7 @@ module Aws::Glue
|
|
6231
6435
|
class GetPartitionsResponse < Struct.new(
|
6232
6436
|
:partitions,
|
6233
6437
|
:next_token)
|
6438
|
+
SENSITIVE = []
|
6234
6439
|
include Aws::Structure
|
6235
6440
|
end
|
6236
6441
|
|
@@ -6312,6 +6517,7 @@ module Aws::Glue
|
|
6312
6517
|
:sinks,
|
6313
6518
|
:location,
|
6314
6519
|
:language)
|
6520
|
+
SENSITIVE = []
|
6315
6521
|
include Aws::Structure
|
6316
6522
|
end
|
6317
6523
|
|
@@ -6328,6 +6534,7 @@ module Aws::Glue
|
|
6328
6534
|
class GetPlanResponse < Struct.new(
|
6329
6535
|
:python_script,
|
6330
6536
|
:scala_code)
|
6537
|
+
SENSITIVE = []
|
6331
6538
|
include Aws::Structure
|
6332
6539
|
end
|
6333
6540
|
|
@@ -6360,6 +6567,7 @@ module Aws::Glue
|
|
6360
6567
|
:policy_hash,
|
6361
6568
|
:create_time,
|
6362
6569
|
:update_time)
|
6570
|
+
SENSITIVE = []
|
6363
6571
|
include Aws::Structure
|
6364
6572
|
end
|
6365
6573
|
|
@@ -6378,6 +6586,7 @@ module Aws::Glue
|
|
6378
6586
|
#
|
6379
6587
|
class GetSecurityConfigurationRequest < Struct.new(
|
6380
6588
|
:name)
|
6589
|
+
SENSITIVE = []
|
6381
6590
|
include Aws::Structure
|
6382
6591
|
end
|
6383
6592
|
|
@@ -6389,6 +6598,7 @@ module Aws::Glue
|
|
6389
6598
|
#
|
6390
6599
|
class GetSecurityConfigurationResponse < Struct.new(
|
6391
6600
|
:security_configuration)
|
6601
|
+
SENSITIVE = []
|
6392
6602
|
include Aws::Structure
|
6393
6603
|
end
|
6394
6604
|
|
@@ -6413,6 +6623,7 @@ module Aws::Glue
|
|
6413
6623
|
class GetSecurityConfigurationsRequest < Struct.new(
|
6414
6624
|
:max_results,
|
6415
6625
|
:next_token)
|
6626
|
+
SENSITIVE = []
|
6416
6627
|
include Aws::Structure
|
6417
6628
|
end
|
6418
6629
|
|
@@ -6430,6 +6641,7 @@ module Aws::Glue
|
|
6430
6641
|
class GetSecurityConfigurationsResponse < Struct.new(
|
6431
6642
|
:security_configurations,
|
6432
6643
|
:next_token)
|
6644
|
+
SENSITIVE = []
|
6433
6645
|
include Aws::Structure
|
6434
6646
|
end
|
6435
6647
|
|
@@ -6463,6 +6675,7 @@ module Aws::Glue
|
|
6463
6675
|
:catalog_id,
|
6464
6676
|
:database_name,
|
6465
6677
|
:name)
|
6678
|
+
SENSITIVE = []
|
6466
6679
|
include Aws::Structure
|
6467
6680
|
end
|
6468
6681
|
|
@@ -6474,6 +6687,7 @@ module Aws::Glue
|
|
6474
6687
|
#
|
6475
6688
|
class GetTableResponse < Struct.new(
|
6476
6689
|
:table)
|
6690
|
+
SENSITIVE = []
|
6477
6691
|
include Aws::Structure
|
6478
6692
|
end
|
6479
6693
|
|
@@ -6515,6 +6729,7 @@ module Aws::Glue
|
|
6515
6729
|
:database_name,
|
6516
6730
|
:table_name,
|
6517
6731
|
:version_id)
|
6732
|
+
SENSITIVE = []
|
6518
6733
|
include Aws::Structure
|
6519
6734
|
end
|
6520
6735
|
|
@@ -6526,6 +6741,7 @@ module Aws::Glue
|
|
6526
6741
|
#
|
6527
6742
|
class GetTableVersionResponse < Struct.new(
|
6528
6743
|
:table_version)
|
6744
|
+
SENSITIVE = []
|
6529
6745
|
include Aws::Structure
|
6530
6746
|
end
|
6531
6747
|
|
@@ -6571,6 +6787,7 @@ module Aws::Glue
|
|
6571
6787
|
:table_name,
|
6572
6788
|
:next_token,
|
6573
6789
|
:max_results)
|
6790
|
+
SENSITIVE = []
|
6574
6791
|
include Aws::Structure
|
6575
6792
|
end
|
6576
6793
|
|
@@ -6589,6 +6806,7 @@ module Aws::Glue
|
|
6589
6806
|
class GetTableVersionsResponse < Struct.new(
|
6590
6807
|
:table_versions,
|
6591
6808
|
:next_token)
|
6809
|
+
SENSITIVE = []
|
6592
6810
|
include Aws::Structure
|
6593
6811
|
end
|
6594
6812
|
|
@@ -6634,6 +6852,7 @@ module Aws::Glue
|
|
6634
6852
|
:expression,
|
6635
6853
|
:next_token,
|
6636
6854
|
:max_results)
|
6855
|
+
SENSITIVE = []
|
6637
6856
|
include Aws::Structure
|
6638
6857
|
end
|
6639
6858
|
|
@@ -6651,6 +6870,7 @@ module Aws::Glue
|
|
6651
6870
|
class GetTablesResponse < Struct.new(
|
6652
6871
|
:table_list,
|
6653
6872
|
:next_token)
|
6873
|
+
SENSITIVE = []
|
6654
6874
|
include Aws::Structure
|
6655
6875
|
end
|
6656
6876
|
|
@@ -6670,6 +6890,7 @@ module Aws::Glue
|
|
6670
6890
|
#
|
6671
6891
|
class GetTagsRequest < Struct.new(
|
6672
6892
|
:resource_arn)
|
6893
|
+
SENSITIVE = []
|
6673
6894
|
include Aws::Structure
|
6674
6895
|
end
|
6675
6896
|
|
@@ -6681,6 +6902,7 @@ module Aws::Glue
|
|
6681
6902
|
#
|
6682
6903
|
class GetTagsResponse < Struct.new(
|
6683
6904
|
:tags)
|
6905
|
+
SENSITIVE = []
|
6684
6906
|
include Aws::Structure
|
6685
6907
|
end
|
6686
6908
|
|
@@ -6699,6 +6921,7 @@ module Aws::Glue
|
|
6699
6921
|
#
|
6700
6922
|
class GetTriggerRequest < Struct.new(
|
6701
6923
|
:name)
|
6924
|
+
SENSITIVE = []
|
6702
6925
|
include Aws::Structure
|
6703
6926
|
end
|
6704
6927
|
|
@@ -6710,6 +6933,7 @@ module Aws::Glue
|
|
6710
6933
|
#
|
6711
6934
|
class GetTriggerResponse < Struct.new(
|
6712
6935
|
:trigger)
|
6936
|
+
SENSITIVE = []
|
6713
6937
|
include Aws::Structure
|
6714
6938
|
end
|
6715
6939
|
|
@@ -6742,6 +6966,7 @@ module Aws::Glue
|
|
6742
6966
|
:next_token,
|
6743
6967
|
:dependent_job_name,
|
6744
6968
|
:max_results)
|
6969
|
+
SENSITIVE = []
|
6745
6970
|
include Aws::Structure
|
6746
6971
|
end
|
6747
6972
|
|
@@ -6759,6 +6984,7 @@ module Aws::Glue
|
|
6759
6984
|
class GetTriggersResponse < Struct.new(
|
6760
6985
|
:triggers,
|
6761
6986
|
:next_token)
|
6987
|
+
SENSITIVE = []
|
6762
6988
|
include Aws::Structure
|
6763
6989
|
end
|
6764
6990
|
|
@@ -6790,6 +7016,7 @@ module Aws::Glue
|
|
6790
7016
|
:catalog_id,
|
6791
7017
|
:database_name,
|
6792
7018
|
:function_name)
|
7019
|
+
SENSITIVE = []
|
6793
7020
|
include Aws::Structure
|
6794
7021
|
end
|
6795
7022
|
|
@@ -6801,6 +7028,7 @@ module Aws::Glue
|
|
6801
7028
|
#
|
6802
7029
|
class GetUserDefinedFunctionResponse < Struct.new(
|
6803
7030
|
:user_defined_function)
|
7031
|
+
SENSITIVE = []
|
6804
7032
|
include Aws::Structure
|
6805
7033
|
end
|
6806
7034
|
|
@@ -6821,7 +7049,9 @@ module Aws::Glue
|
|
6821
7049
|
# @return [String]
|
6822
7050
|
#
|
6823
7051
|
# @!attribute [rw] database_name
|
6824
|
-
# The name of the catalog database where the functions are located.
|
7052
|
+
# The name of the catalog database where the functions are located. If
|
7053
|
+
# none is provided, functions from all the databases across the
|
7054
|
+
# catalog will be returned.
|
6825
7055
|
# @return [String]
|
6826
7056
|
#
|
6827
7057
|
# @!attribute [rw] pattern
|
@@ -6845,6 +7075,7 @@ module Aws::Glue
|
|
6845
7075
|
:pattern,
|
6846
7076
|
:next_token,
|
6847
7077
|
:max_results)
|
7078
|
+
SENSITIVE = []
|
6848
7079
|
include Aws::Structure
|
6849
7080
|
end
|
6850
7081
|
|
@@ -6862,6 +7093,7 @@ module Aws::Glue
|
|
6862
7093
|
class GetUserDefinedFunctionsResponse < Struct.new(
|
6863
7094
|
:user_defined_functions,
|
6864
7095
|
:next_token)
|
7096
|
+
SENSITIVE = []
|
6865
7097
|
include Aws::Structure
|
6866
7098
|
end
|
6867
7099
|
|
@@ -6887,6 +7119,7 @@ module Aws::Glue
|
|
6887
7119
|
class GetWorkflowRequest < Struct.new(
|
6888
7120
|
:name,
|
6889
7121
|
:include_graph)
|
7122
|
+
SENSITIVE = []
|
6890
7123
|
include Aws::Structure
|
6891
7124
|
end
|
6892
7125
|
|
@@ -6898,6 +7131,7 @@ module Aws::Glue
|
|
6898
7131
|
#
|
6899
7132
|
class GetWorkflowResponse < Struct.new(
|
6900
7133
|
:workflow)
|
7134
|
+
SENSITIVE = []
|
6901
7135
|
include Aws::Structure
|
6902
7136
|
end
|
6903
7137
|
|
@@ -6922,6 +7156,7 @@ module Aws::Glue
|
|
6922
7156
|
class GetWorkflowRunPropertiesRequest < Struct.new(
|
6923
7157
|
:name,
|
6924
7158
|
:run_id)
|
7159
|
+
SENSITIVE = []
|
6925
7160
|
include Aws::Structure
|
6926
7161
|
end
|
6927
7162
|
|
@@ -6933,6 +7168,7 @@ module Aws::Glue
|
|
6933
7168
|
#
|
6934
7169
|
class GetWorkflowRunPropertiesResponse < Struct.new(
|
6935
7170
|
:run_properties)
|
7171
|
+
SENSITIVE = []
|
6936
7172
|
include Aws::Structure
|
6937
7173
|
end
|
6938
7174
|
|
@@ -6963,6 +7199,7 @@ module Aws::Glue
|
|
6963
7199
|
:name,
|
6964
7200
|
:run_id,
|
6965
7201
|
:include_graph)
|
7202
|
+
SENSITIVE = []
|
6966
7203
|
include Aws::Structure
|
6967
7204
|
end
|
6968
7205
|
|
@@ -6974,6 +7211,7 @@ module Aws::Glue
|
|
6974
7211
|
#
|
6975
7212
|
class GetWorkflowRunResponse < Struct.new(
|
6976
7213
|
:run)
|
7214
|
+
SENSITIVE = []
|
6977
7215
|
include Aws::Structure
|
6978
7216
|
end
|
6979
7217
|
|
@@ -7010,6 +7248,7 @@ module Aws::Glue
|
|
7010
7248
|
:include_graph,
|
7011
7249
|
:next_token,
|
7012
7250
|
:max_results)
|
7251
|
+
SENSITIVE = []
|
7013
7252
|
include Aws::Structure
|
7014
7253
|
end
|
7015
7254
|
|
@@ -7027,6 +7266,7 @@ module Aws::Glue
|
|
7027
7266
|
class GetWorkflowRunsResponse < Struct.new(
|
7028
7267
|
:runs,
|
7029
7268
|
:next_token)
|
7269
|
+
SENSITIVE = []
|
7030
7270
|
include Aws::Structure
|
7031
7271
|
end
|
7032
7272
|
|
@@ -7040,6 +7280,7 @@ module Aws::Glue
|
|
7040
7280
|
#
|
7041
7281
|
class GlueEncryptionException < Struct.new(
|
7042
7282
|
:message)
|
7283
|
+
SENSITIVE = []
|
7043
7284
|
include Aws::Structure
|
7044
7285
|
end
|
7045
7286
|
|
@@ -7079,6 +7320,7 @@ module Aws::Glue
|
|
7079
7320
|
:table_name,
|
7080
7321
|
:catalog_id,
|
7081
7322
|
:connection_name)
|
7323
|
+
SENSITIVE = []
|
7082
7324
|
include Aws::Structure
|
7083
7325
|
end
|
7084
7326
|
|
@@ -7112,7 +7354,7 @@ module Aws::Glue
|
|
7112
7354
|
#
|
7113
7355
|
#
|
7114
7356
|
#
|
7115
|
-
# [1]:
|
7357
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html
|
7116
7358
|
# @return [String]
|
7117
7359
|
#
|
7118
7360
|
# @!attribute [rw] custom_patterns
|
@@ -7121,7 +7363,7 @@ module Aws::Glue
|
|
7121
7363
|
#
|
7122
7364
|
#
|
7123
7365
|
#
|
7124
|
-
# [1]:
|
7366
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html
|
7125
7367
|
# @return [String]
|
7126
7368
|
#
|
7127
7369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GrokClassifier AWS API Documentation
|
@@ -7134,6 +7376,7 @@ module Aws::Glue
|
|
7134
7376
|
:version,
|
7135
7377
|
:grok_pattern,
|
7136
7378
|
:custom_patterns)
|
7379
|
+
SENSITIVE = []
|
7137
7380
|
include Aws::Structure
|
7138
7381
|
end
|
7139
7382
|
|
@@ -7147,6 +7390,7 @@ module Aws::Glue
|
|
7147
7390
|
#
|
7148
7391
|
class IdempotentParameterMismatchException < Struct.new(
|
7149
7392
|
:message)
|
7393
|
+
SENSITIVE = []
|
7150
7394
|
include Aws::Structure
|
7151
7395
|
end
|
7152
7396
|
|
@@ -7160,6 +7404,7 @@ module Aws::Glue
|
|
7160
7404
|
#
|
7161
7405
|
class IllegalWorkflowStateException < Struct.new(
|
7162
7406
|
:message)
|
7407
|
+
SENSITIVE = []
|
7163
7408
|
include Aws::Structure
|
7164
7409
|
end
|
7165
7410
|
|
@@ -7179,6 +7424,7 @@ module Aws::Glue
|
|
7179
7424
|
#
|
7180
7425
|
class ImportCatalogToGlueRequest < Struct.new(
|
7181
7426
|
:catalog_id)
|
7427
|
+
SENSITIVE = []
|
7182
7428
|
include Aws::Structure
|
7183
7429
|
end
|
7184
7430
|
|
@@ -7202,6 +7448,7 @@ module Aws::Glue
|
|
7202
7448
|
class ImportLabelsTaskRunProperties < Struct.new(
|
7203
7449
|
:input_s3_path,
|
7204
7450
|
:replace)
|
7451
|
+
SENSITIVE = []
|
7205
7452
|
include Aws::Structure
|
7206
7453
|
end
|
7207
7454
|
|
@@ -7215,6 +7462,7 @@ module Aws::Glue
|
|
7215
7462
|
#
|
7216
7463
|
class InternalServiceException < Struct.new(
|
7217
7464
|
:message)
|
7465
|
+
SENSITIVE = []
|
7218
7466
|
include Aws::Structure
|
7219
7467
|
end
|
7220
7468
|
|
@@ -7228,6 +7476,7 @@ module Aws::Glue
|
|
7228
7476
|
#
|
7229
7477
|
class InvalidInputException < Struct.new(
|
7230
7478
|
:message)
|
7479
|
+
SENSITIVE = []
|
7231
7480
|
include Aws::Structure
|
7232
7481
|
end
|
7233
7482
|
|
@@ -7256,7 +7505,7 @@ module Aws::Glue
|
|
7256
7505
|
#
|
7257
7506
|
#
|
7258
7507
|
#
|
7259
|
-
# [1]:
|
7508
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html
|
7260
7509
|
# @return [Array<String>]
|
7261
7510
|
#
|
7262
7511
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JdbcTarget AWS API Documentation
|
@@ -7265,6 +7514,7 @@ module Aws::Glue
|
|
7265
7514
|
:connection_name,
|
7266
7515
|
:path,
|
7267
7516
|
:exclusions)
|
7517
|
+
SENSITIVE = []
|
7268
7518
|
include Aws::Structure
|
7269
7519
|
end
|
7270
7520
|
|
@@ -7459,6 +7709,7 @@ module Aws::Glue
|
|
7459
7709
|
:security_configuration,
|
7460
7710
|
:notification_property,
|
7461
7711
|
:glue_version)
|
7712
|
+
SENSITIVE = []
|
7462
7713
|
include Aws::Structure
|
7463
7714
|
end
|
7464
7715
|
|
@@ -7502,6 +7753,7 @@ module Aws::Glue
|
|
7502
7753
|
:previous_run_id,
|
7503
7754
|
:run_id,
|
7504
7755
|
:job_bookmark)
|
7756
|
+
SENSITIVE = []
|
7505
7757
|
include Aws::Structure
|
7506
7758
|
end
|
7507
7759
|
|
@@ -7529,6 +7781,7 @@ module Aws::Glue
|
|
7529
7781
|
class JobBookmarksEncryption < Struct.new(
|
7530
7782
|
:job_bookmarks_encryption_mode,
|
7531
7783
|
:kms_key_arn)
|
7784
|
+
SENSITIVE = []
|
7532
7785
|
include Aws::Structure
|
7533
7786
|
end
|
7534
7787
|
|
@@ -7564,6 +7817,7 @@ module Aws::Glue
|
|
7564
7817
|
:name,
|
7565
7818
|
:script_location,
|
7566
7819
|
:python_version)
|
7820
|
+
SENSITIVE = []
|
7567
7821
|
include Aws::Structure
|
7568
7822
|
end
|
7569
7823
|
|
@@ -7577,6 +7831,7 @@ module Aws::Glue
|
|
7577
7831
|
#
|
7578
7832
|
class JobNodeDetails < Struct.new(
|
7579
7833
|
:job_runs)
|
7834
|
+
SENSITIVE = []
|
7580
7835
|
include Aws::Structure
|
7581
7836
|
end
|
7582
7837
|
|
@@ -7789,6 +8044,7 @@ module Aws::Glue
|
|
7789
8044
|
:log_group_name,
|
7790
8045
|
:notification_property,
|
7791
8046
|
:glue_version)
|
8047
|
+
SENSITIVE = []
|
7792
8048
|
include Aws::Structure
|
7793
8049
|
end
|
7794
8050
|
|
@@ -8001,6 +8257,7 @@ module Aws::Glue
|
|
8001
8257
|
:security_configuration,
|
8002
8258
|
:notification_property,
|
8003
8259
|
:glue_version)
|
8260
|
+
SENSITIVE = []
|
8004
8261
|
include Aws::Structure
|
8005
8262
|
end
|
8006
8263
|
|
@@ -8024,7 +8281,7 @@ module Aws::Glue
|
|
8024
8281
|
#
|
8025
8282
|
# @!attribute [rw] json_path
|
8026
8283
|
# A `JsonPath` string defining the JSON data for the classifier to
|
8027
|
-
# classify. AWS Glue supports a subset of
|
8284
|
+
# classify. AWS Glue supports a subset of JsonPath, as described in
|
8028
8285
|
# [Writing JsonPath Custom Classifiers][1].
|
8029
8286
|
#
|
8030
8287
|
#
|
@@ -8040,6 +8297,7 @@ module Aws::Glue
|
|
8040
8297
|
:last_updated,
|
8041
8298
|
:version,
|
8042
8299
|
:json_path)
|
8300
|
+
SENSITIVE = []
|
8043
8301
|
include Aws::Structure
|
8044
8302
|
end
|
8045
8303
|
|
@@ -8055,6 +8313,7 @@ module Aws::Glue
|
|
8055
8313
|
#
|
8056
8314
|
class LabelingSetGenerationTaskRunProperties < Struct.new(
|
8057
8315
|
:output_s3_path)
|
8316
|
+
SENSITIVE = []
|
8058
8317
|
include Aws::Structure
|
8059
8318
|
end
|
8060
8319
|
|
@@ -8093,6 +8352,7 @@ module Aws::Glue
|
|
8093
8352
|
:log_stream,
|
8094
8353
|
:message_prefix,
|
8095
8354
|
:start_time)
|
8355
|
+
SENSITIVE = []
|
8096
8356
|
include Aws::Structure
|
8097
8357
|
end
|
8098
8358
|
|
@@ -8125,6 +8385,7 @@ module Aws::Glue
|
|
8125
8385
|
:max_results,
|
8126
8386
|
:next_token,
|
8127
8387
|
:tags)
|
8388
|
+
SENSITIVE = []
|
8128
8389
|
include Aws::Structure
|
8129
8390
|
end
|
8130
8391
|
|
@@ -8143,6 +8404,7 @@ module Aws::Glue
|
|
8143
8404
|
class ListCrawlersResponse < Struct.new(
|
8144
8405
|
:crawler_names,
|
8145
8406
|
:next_token)
|
8407
|
+
SENSITIVE = []
|
8146
8408
|
include Aws::Structure
|
8147
8409
|
end
|
8148
8410
|
|
@@ -8175,6 +8437,7 @@ module Aws::Glue
|
|
8175
8437
|
:next_token,
|
8176
8438
|
:max_results,
|
8177
8439
|
:tags)
|
8440
|
+
SENSITIVE = []
|
8178
8441
|
include Aws::Structure
|
8179
8442
|
end
|
8180
8443
|
|
@@ -8193,6 +8456,7 @@ module Aws::Glue
|
|
8193
8456
|
class ListDevEndpointsResponse < Struct.new(
|
8194
8457
|
:dev_endpoint_names,
|
8195
8458
|
:next_token)
|
8459
|
+
SENSITIVE = []
|
8196
8460
|
include Aws::Structure
|
8197
8461
|
end
|
8198
8462
|
|
@@ -8225,6 +8489,7 @@ module Aws::Glue
|
|
8225
8489
|
:next_token,
|
8226
8490
|
:max_results,
|
8227
8491
|
:tags)
|
8492
|
+
SENSITIVE = []
|
8228
8493
|
include Aws::Structure
|
8229
8494
|
end
|
8230
8495
|
|
@@ -8243,6 +8508,7 @@ module Aws::Glue
|
|
8243
8508
|
class ListJobsResponse < Struct.new(
|
8244
8509
|
:job_names,
|
8245
8510
|
:next_token)
|
8511
|
+
SENSITIVE = []
|
8246
8512
|
include Aws::Structure
|
8247
8513
|
end
|
8248
8514
|
|
@@ -8307,6 +8573,7 @@ module Aws::Glue
|
|
8307
8573
|
:filter,
|
8308
8574
|
:sort,
|
8309
8575
|
:tags)
|
8576
|
+
SENSITIVE = []
|
8310
8577
|
include Aws::Structure
|
8311
8578
|
end
|
8312
8579
|
|
@@ -8325,6 +8592,7 @@ module Aws::Glue
|
|
8325
8592
|
class ListMLTransformsResponse < Struct.new(
|
8326
8593
|
:transform_ids,
|
8327
8594
|
:next_token)
|
8595
|
+
SENSITIVE = []
|
8328
8596
|
include Aws::Structure
|
8329
8597
|
end
|
8330
8598
|
|
@@ -8365,6 +8633,7 @@ module Aws::Glue
|
|
8365
8633
|
:dependent_job_name,
|
8366
8634
|
:max_results,
|
8367
8635
|
:tags)
|
8636
|
+
SENSITIVE = []
|
8368
8637
|
include Aws::Structure
|
8369
8638
|
end
|
8370
8639
|
|
@@ -8383,6 +8652,7 @@ module Aws::Glue
|
|
8383
8652
|
class ListTriggersResponse < Struct.new(
|
8384
8653
|
:trigger_names,
|
8385
8654
|
:next_token)
|
8655
|
+
SENSITIVE = []
|
8386
8656
|
include Aws::Structure
|
8387
8657
|
end
|
8388
8658
|
|
@@ -8407,6 +8677,7 @@ module Aws::Glue
|
|
8407
8677
|
class ListWorkflowsRequest < Struct.new(
|
8408
8678
|
:next_token,
|
8409
8679
|
:max_results)
|
8680
|
+
SENSITIVE = []
|
8410
8681
|
include Aws::Structure
|
8411
8682
|
end
|
8412
8683
|
|
@@ -8423,6 +8694,7 @@ module Aws::Glue
|
|
8423
8694
|
class ListWorkflowsResponse < Struct.new(
|
8424
8695
|
:workflows,
|
8425
8696
|
:next_token)
|
8697
|
+
SENSITIVE = []
|
8426
8698
|
include Aws::Structure
|
8427
8699
|
end
|
8428
8700
|
|
@@ -8473,6 +8745,7 @@ module Aws::Glue
|
|
8473
8745
|
:jdbc,
|
8474
8746
|
:s3,
|
8475
8747
|
:dynamo_db)
|
8748
|
+
SENSITIVE = []
|
8476
8749
|
include Aws::Structure
|
8477
8750
|
end
|
8478
8751
|
|
@@ -8663,6 +8936,7 @@ module Aws::Glue
|
|
8663
8936
|
:number_of_workers,
|
8664
8937
|
:timeout,
|
8665
8938
|
:max_retries)
|
8939
|
+
SENSITIVE = []
|
8666
8940
|
include Aws::Structure
|
8667
8941
|
end
|
8668
8942
|
|
@@ -8676,6 +8950,7 @@ module Aws::Glue
|
|
8676
8950
|
#
|
8677
8951
|
class MLTransformNotReadyException < Struct.new(
|
8678
8952
|
:message)
|
8953
|
+
SENSITIVE = []
|
8679
8954
|
include Aws::Structure
|
8680
8955
|
end
|
8681
8956
|
|
@@ -8726,6 +9001,7 @@ module Aws::Glue
|
|
8726
9001
|
:target_table,
|
8727
9002
|
:target_path,
|
8728
9003
|
:target_type)
|
9004
|
+
SENSITIVE = []
|
8729
9005
|
include Aws::Structure
|
8730
9006
|
end
|
8731
9007
|
|
@@ -8739,6 +9015,7 @@ module Aws::Glue
|
|
8739
9015
|
#
|
8740
9016
|
class NoScheduleException < Struct.new(
|
8741
9017
|
:message)
|
9018
|
+
SENSITIVE = []
|
8742
9019
|
include Aws::Structure
|
8743
9020
|
end
|
8744
9021
|
|
@@ -8778,6 +9055,7 @@ module Aws::Glue
|
|
8778
9055
|
:trigger_details,
|
8779
9056
|
:job_details,
|
8780
9057
|
:crawler_details)
|
9058
|
+
SENSITIVE = []
|
8781
9059
|
include Aws::Structure
|
8782
9060
|
end
|
8783
9061
|
|
@@ -8799,6 +9077,7 @@ module Aws::Glue
|
|
8799
9077
|
#
|
8800
9078
|
class NotificationProperty < Struct.new(
|
8801
9079
|
:notify_delay_after)
|
9080
|
+
SENSITIVE = []
|
8802
9081
|
include Aws::Structure
|
8803
9082
|
end
|
8804
9083
|
|
@@ -8812,6 +9091,7 @@ module Aws::Glue
|
|
8812
9091
|
#
|
8813
9092
|
class OperationTimeoutException < Struct.new(
|
8814
9093
|
:message)
|
9094
|
+
SENSITIVE = []
|
8815
9095
|
include Aws::Structure
|
8816
9096
|
end
|
8817
9097
|
|
@@ -8839,6 +9119,7 @@ module Aws::Glue
|
|
8839
9119
|
class Order < Struct.new(
|
8840
9120
|
:column,
|
8841
9121
|
:sort_order)
|
9122
|
+
SENSITIVE = []
|
8842
9123
|
include Aws::Structure
|
8843
9124
|
end
|
8844
9125
|
|
@@ -8889,6 +9170,7 @@ module Aws::Glue
|
|
8889
9170
|
:storage_descriptor,
|
8890
9171
|
:parameters,
|
8891
9172
|
:last_analyzed_time)
|
9173
|
+
SENSITIVE = []
|
8892
9174
|
include Aws::Structure
|
8893
9175
|
end
|
8894
9176
|
|
@@ -8907,6 +9189,7 @@ module Aws::Glue
|
|
8907
9189
|
class PartitionError < Struct.new(
|
8908
9190
|
:partition_values,
|
8909
9191
|
:error_detail)
|
9192
|
+
SENSITIVE = []
|
8910
9193
|
include Aws::Structure
|
8911
9194
|
end
|
8912
9195
|
|
@@ -9002,6 +9285,7 @@ module Aws::Glue
|
|
9002
9285
|
:storage_descriptor,
|
9003
9286
|
:parameters,
|
9004
9287
|
:last_analyzed_time)
|
9288
|
+
SENSITIVE = []
|
9005
9289
|
include Aws::Structure
|
9006
9290
|
end
|
9007
9291
|
|
@@ -9022,6 +9306,7 @@ module Aws::Glue
|
|
9022
9306
|
#
|
9023
9307
|
class PartitionValueList < Struct.new(
|
9024
9308
|
:values)
|
9309
|
+
SENSITIVE = []
|
9025
9310
|
include Aws::Structure
|
9026
9311
|
end
|
9027
9312
|
|
@@ -9057,6 +9342,7 @@ module Aws::Glue
|
|
9057
9342
|
:subnet_id,
|
9058
9343
|
:security_group_id_list,
|
9059
9344
|
:availability_zone)
|
9345
|
+
SENSITIVE = []
|
9060
9346
|
include Aws::Structure
|
9061
9347
|
end
|
9062
9348
|
|
@@ -9076,6 +9362,7 @@ module Aws::Glue
|
|
9076
9362
|
class Predecessor < Struct.new(
|
9077
9363
|
:job_name,
|
9078
9364
|
:run_id)
|
9365
|
+
SENSITIVE = []
|
9079
9366
|
include Aws::Structure
|
9080
9367
|
end
|
9081
9368
|
|
@@ -9111,6 +9398,7 @@ module Aws::Glue
|
|
9111
9398
|
class Predicate < Struct.new(
|
9112
9399
|
:logical,
|
9113
9400
|
:conditions)
|
9401
|
+
SENSITIVE = []
|
9114
9402
|
include Aws::Structure
|
9115
9403
|
end
|
9116
9404
|
|
@@ -9139,6 +9427,7 @@ module Aws::Glue
|
|
9139
9427
|
class PrincipalPermissions < Struct.new(
|
9140
9428
|
:principal,
|
9141
9429
|
:permissions)
|
9430
|
+
SENSITIVE = []
|
9142
9431
|
include Aws::Structure
|
9143
9432
|
end
|
9144
9433
|
|
@@ -9171,6 +9460,7 @@ module Aws::Glue
|
|
9171
9460
|
:key,
|
9172
9461
|
:value,
|
9173
9462
|
:comparator)
|
9463
|
+
SENSITIVE = []
|
9174
9464
|
include Aws::Structure
|
9175
9465
|
end
|
9176
9466
|
|
@@ -9205,6 +9495,7 @@ module Aws::Glue
|
|
9205
9495
|
class PutDataCatalogEncryptionSettingsRequest < Struct.new(
|
9206
9496
|
:catalog_id,
|
9207
9497
|
:data_catalog_encryption_settings)
|
9498
|
+
SENSITIVE = []
|
9208
9499
|
include Aws::Structure
|
9209
9500
|
end
|
9210
9501
|
|
@@ -9245,6 +9536,7 @@ module Aws::Glue
|
|
9245
9536
|
:policy_in_json,
|
9246
9537
|
:policy_hash_condition,
|
9247
9538
|
:policy_exists_condition)
|
9539
|
+
SENSITIVE = []
|
9248
9540
|
include Aws::Structure
|
9249
9541
|
end
|
9250
9542
|
|
@@ -9257,6 +9549,7 @@ module Aws::Glue
|
|
9257
9549
|
#
|
9258
9550
|
class PutResourcePolicyResponse < Struct.new(
|
9259
9551
|
:policy_hash)
|
9552
|
+
SENSITIVE = []
|
9260
9553
|
include Aws::Structure
|
9261
9554
|
end
|
9262
9555
|
|
@@ -9290,6 +9583,7 @@ module Aws::Glue
|
|
9290
9583
|
:name,
|
9291
9584
|
:run_id,
|
9292
9585
|
:run_properties)
|
9586
|
+
SENSITIVE = []
|
9293
9587
|
include Aws::Structure
|
9294
9588
|
end
|
9295
9589
|
|
@@ -9318,6 +9612,7 @@ module Aws::Glue
|
|
9318
9612
|
class ResetJobBookmarkRequest < Struct.new(
|
9319
9613
|
:job_name,
|
9320
9614
|
:run_id)
|
9615
|
+
SENSITIVE = []
|
9321
9616
|
include Aws::Structure
|
9322
9617
|
end
|
9323
9618
|
|
@@ -9329,6 +9624,7 @@ module Aws::Glue
|
|
9329
9624
|
#
|
9330
9625
|
class ResetJobBookmarkResponse < Struct.new(
|
9331
9626
|
:job_bookmark_entry)
|
9627
|
+
SENSITIVE = []
|
9332
9628
|
include Aws::Structure
|
9333
9629
|
end
|
9334
9630
|
|
@@ -9342,6 +9638,7 @@ module Aws::Glue
|
|
9342
9638
|
#
|
9343
9639
|
class ResourceNumberLimitExceededException < Struct.new(
|
9344
9640
|
:message)
|
9641
|
+
SENSITIVE = []
|
9345
9642
|
include Aws::Structure
|
9346
9643
|
end
|
9347
9644
|
|
@@ -9368,6 +9665,7 @@ module Aws::Glue
|
|
9368
9665
|
class ResourceUri < Struct.new(
|
9369
9666
|
:resource_type,
|
9370
9667
|
:uri)
|
9668
|
+
SENSITIVE = []
|
9371
9669
|
include Aws::Structure
|
9372
9670
|
end
|
9373
9671
|
|
@@ -9396,6 +9694,7 @@ module Aws::Glue
|
|
9396
9694
|
class S3Encryption < Struct.new(
|
9397
9695
|
:s3_encryption_mode,
|
9398
9696
|
:kms_key_arn)
|
9697
|
+
SENSITIVE = []
|
9399
9698
|
include Aws::Structure
|
9400
9699
|
end
|
9401
9700
|
|
@@ -9419,7 +9718,7 @@ module Aws::Glue
|
|
9419
9718
|
#
|
9420
9719
|
#
|
9421
9720
|
#
|
9422
|
-
# [1]:
|
9721
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html
|
9423
9722
|
# @return [Array<String>]
|
9424
9723
|
#
|
9425
9724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/S3Target AWS API Documentation
|
@@ -9427,20 +9726,20 @@ module Aws::Glue
|
|
9427
9726
|
class S3Target < Struct.new(
|
9428
9727
|
:path,
|
9429
9728
|
:exclusions)
|
9729
|
+
SENSITIVE = []
|
9430
9730
|
include Aws::Structure
|
9431
9731
|
end
|
9432
9732
|
|
9433
9733
|
# A scheduling object using a `cron` statement to schedule an event.
|
9434
9734
|
#
|
9435
9735
|
# @!attribute [rw] schedule_expression
|
9436
|
-
# A `cron` expression used to specify the schedule
|
9437
|
-
#
|
9438
|
-
#
|
9439
|
-
# `cron(15 12 * * ? *)`.
|
9736
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
9737
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
9738
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
9440
9739
|
#
|
9441
9740
|
#
|
9442
9741
|
#
|
9443
|
-
# [1]:
|
9742
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
9444
9743
|
# @return [String]
|
9445
9744
|
#
|
9446
9745
|
# @!attribute [rw] state
|
@@ -9452,6 +9751,7 @@ module Aws::Glue
|
|
9452
9751
|
class Schedule < Struct.new(
|
9453
9752
|
:schedule_expression,
|
9454
9753
|
:state)
|
9754
|
+
SENSITIVE = []
|
9455
9755
|
include Aws::Structure
|
9456
9756
|
end
|
9457
9757
|
|
@@ -9465,6 +9765,7 @@ module Aws::Glue
|
|
9465
9765
|
#
|
9466
9766
|
class SchedulerNotRunningException < Struct.new(
|
9467
9767
|
:message)
|
9768
|
+
SENSITIVE = []
|
9468
9769
|
include Aws::Structure
|
9469
9770
|
end
|
9470
9771
|
|
@@ -9478,6 +9779,7 @@ module Aws::Glue
|
|
9478
9779
|
#
|
9479
9780
|
class SchedulerRunningException < Struct.new(
|
9480
9781
|
:message)
|
9782
|
+
SENSITIVE = []
|
9481
9783
|
include Aws::Structure
|
9482
9784
|
end
|
9483
9785
|
|
@@ -9491,6 +9793,7 @@ module Aws::Glue
|
|
9491
9793
|
#
|
9492
9794
|
class SchedulerTransitioningException < Struct.new(
|
9493
9795
|
:message)
|
9796
|
+
SENSITIVE = []
|
9494
9797
|
include Aws::Structure
|
9495
9798
|
end
|
9496
9799
|
|
@@ -9517,6 +9820,7 @@ module Aws::Glue
|
|
9517
9820
|
class SchemaChangePolicy < Struct.new(
|
9518
9821
|
:update_behavior,
|
9519
9822
|
:delete_behavior)
|
9823
|
+
SENSITIVE = []
|
9520
9824
|
include Aws::Structure
|
9521
9825
|
end
|
9522
9826
|
|
@@ -9545,6 +9849,7 @@ module Aws::Glue
|
|
9545
9849
|
class SchemaColumn < Struct.new(
|
9546
9850
|
:name,
|
9547
9851
|
:data_type)
|
9852
|
+
SENSITIVE = []
|
9548
9853
|
include Aws::Structure
|
9549
9854
|
end
|
9550
9855
|
|
@@ -9609,6 +9914,7 @@ module Aws::Glue
|
|
9609
9914
|
:search_text,
|
9610
9915
|
:sort_criteria,
|
9611
9916
|
:max_results)
|
9917
|
+
SENSITIVE = []
|
9612
9918
|
include Aws::Structure
|
9613
9919
|
end
|
9614
9920
|
|
@@ -9627,6 +9933,7 @@ module Aws::Glue
|
|
9627
9933
|
class SearchTablesResponse < Struct.new(
|
9628
9934
|
:next_token,
|
9629
9935
|
:table_list)
|
9936
|
+
SENSITIVE = []
|
9630
9937
|
include Aws::Structure
|
9631
9938
|
end
|
9632
9939
|
|
@@ -9651,6 +9958,7 @@ module Aws::Glue
|
|
9651
9958
|
:name,
|
9652
9959
|
:created_time_stamp,
|
9653
9960
|
:encryption_configuration)
|
9961
|
+
SENSITIVE = []
|
9654
9962
|
include Aws::Structure
|
9655
9963
|
end
|
9656
9964
|
|
@@ -9680,6 +9988,7 @@ module Aws::Glue
|
|
9680
9988
|
class Segment < Struct.new(
|
9681
9989
|
:segment_number,
|
9682
9990
|
:total_segments)
|
9991
|
+
SENSITIVE = []
|
9683
9992
|
include Aws::Structure
|
9684
9993
|
end
|
9685
9994
|
|
@@ -9717,6 +10026,7 @@ module Aws::Glue
|
|
9717
10026
|
:name,
|
9718
10027
|
:serialization_library,
|
9719
10028
|
:parameters)
|
10029
|
+
SENSITIVE = []
|
9720
10030
|
include Aws::Structure
|
9721
10031
|
end
|
9722
10032
|
|
@@ -9753,6 +10063,7 @@ module Aws::Glue
|
|
9753
10063
|
:skewed_column_names,
|
9754
10064
|
:skewed_column_values,
|
9755
10065
|
:skewed_column_value_location_maps)
|
10066
|
+
SENSITIVE = []
|
9756
10067
|
include Aws::Structure
|
9757
10068
|
end
|
9758
10069
|
|
@@ -9779,6 +10090,7 @@ module Aws::Glue
|
|
9779
10090
|
class SortCriterion < Struct.new(
|
9780
10091
|
:field_name,
|
9781
10092
|
:sort)
|
10093
|
+
SENSITIVE = []
|
9782
10094
|
include Aws::Structure
|
9783
10095
|
end
|
9784
10096
|
|
@@ -9797,6 +10109,7 @@ module Aws::Glue
|
|
9797
10109
|
#
|
9798
10110
|
class StartCrawlerRequest < Struct.new(
|
9799
10111
|
:name)
|
10112
|
+
SENSITIVE = []
|
9800
10113
|
include Aws::Structure
|
9801
10114
|
end
|
9802
10115
|
|
@@ -9819,6 +10132,7 @@ module Aws::Glue
|
|
9819
10132
|
#
|
9820
10133
|
class StartCrawlerScheduleRequest < Struct.new(
|
9821
10134
|
:crawler_name)
|
10135
|
+
SENSITIVE = []
|
9822
10136
|
include Aws::Structure
|
9823
10137
|
end
|
9824
10138
|
|
@@ -9847,6 +10161,7 @@ module Aws::Glue
|
|
9847
10161
|
class StartExportLabelsTaskRunRequest < Struct.new(
|
9848
10162
|
:transform_id,
|
9849
10163
|
:output_s3_path)
|
10164
|
+
SENSITIVE = []
|
9850
10165
|
include Aws::Structure
|
9851
10166
|
end
|
9852
10167
|
|
@@ -9858,6 +10173,7 @@ module Aws::Glue
|
|
9858
10173
|
#
|
9859
10174
|
class StartExportLabelsTaskRunResponse < Struct.new(
|
9860
10175
|
:task_run_id)
|
10176
|
+
SENSITIVE = []
|
9861
10177
|
include Aws::Structure
|
9862
10178
|
end
|
9863
10179
|
|
@@ -9889,6 +10205,7 @@ module Aws::Glue
|
|
9889
10205
|
:transform_id,
|
9890
10206
|
:input_s3_path,
|
9891
10207
|
:replace_all_labels)
|
10208
|
+
SENSITIVE = []
|
9892
10209
|
include Aws::Structure
|
9893
10210
|
end
|
9894
10211
|
|
@@ -9900,6 +10217,7 @@ module Aws::Glue
|
|
9900
10217
|
#
|
9901
10218
|
class StartImportLabelsTaskRunResponse < Struct.new(
|
9902
10219
|
:task_run_id)
|
10220
|
+
SENSITIVE = []
|
9903
10221
|
include Aws::Structure
|
9904
10222
|
end
|
9905
10223
|
|
@@ -10044,6 +10362,7 @@ module Aws::Glue
|
|
10044
10362
|
:notification_property,
|
10045
10363
|
:worker_type,
|
10046
10364
|
:number_of_workers)
|
10365
|
+
SENSITIVE = []
|
10047
10366
|
include Aws::Structure
|
10048
10367
|
end
|
10049
10368
|
|
@@ -10055,6 +10374,7 @@ module Aws::Glue
|
|
10055
10374
|
#
|
10056
10375
|
class StartJobRunResponse < Struct.new(
|
10057
10376
|
:job_run_id)
|
10377
|
+
SENSITIVE = []
|
10058
10378
|
include Aws::Structure
|
10059
10379
|
end
|
10060
10380
|
|
@@ -10073,6 +10393,7 @@ module Aws::Glue
|
|
10073
10393
|
#
|
10074
10394
|
class StartMLEvaluationTaskRunRequest < Struct.new(
|
10075
10395
|
:transform_id)
|
10396
|
+
SENSITIVE = []
|
10076
10397
|
include Aws::Structure
|
10077
10398
|
end
|
10078
10399
|
|
@@ -10084,6 +10405,7 @@ module Aws::Glue
|
|
10084
10405
|
#
|
10085
10406
|
class StartMLEvaluationTaskRunResponse < Struct.new(
|
10086
10407
|
:task_run_id)
|
10408
|
+
SENSITIVE = []
|
10087
10409
|
include Aws::Structure
|
10088
10410
|
end
|
10089
10411
|
|
@@ -10109,6 +10431,7 @@ module Aws::Glue
|
|
10109
10431
|
class StartMLLabelingSetGenerationTaskRunRequest < Struct.new(
|
10110
10432
|
:transform_id,
|
10111
10433
|
:output_s3_path)
|
10434
|
+
SENSITIVE = []
|
10112
10435
|
include Aws::Structure
|
10113
10436
|
end
|
10114
10437
|
|
@@ -10120,6 +10443,7 @@ module Aws::Glue
|
|
10120
10443
|
#
|
10121
10444
|
class StartMLLabelingSetGenerationTaskRunResponse < Struct.new(
|
10122
10445
|
:task_run_id)
|
10446
|
+
SENSITIVE = []
|
10123
10447
|
include Aws::Structure
|
10124
10448
|
end
|
10125
10449
|
|
@@ -10138,6 +10462,7 @@ module Aws::Glue
|
|
10138
10462
|
#
|
10139
10463
|
class StartTriggerRequest < Struct.new(
|
10140
10464
|
:name)
|
10465
|
+
SENSITIVE = []
|
10141
10466
|
include Aws::Structure
|
10142
10467
|
end
|
10143
10468
|
|
@@ -10149,6 +10474,7 @@ module Aws::Glue
|
|
10149
10474
|
#
|
10150
10475
|
class StartTriggerResponse < Struct.new(
|
10151
10476
|
:name)
|
10477
|
+
SENSITIVE = []
|
10152
10478
|
include Aws::Structure
|
10153
10479
|
end
|
10154
10480
|
|
@@ -10167,6 +10493,7 @@ module Aws::Glue
|
|
10167
10493
|
#
|
10168
10494
|
class StartWorkflowRunRequest < Struct.new(
|
10169
10495
|
:name)
|
10496
|
+
SENSITIVE = []
|
10170
10497
|
include Aws::Structure
|
10171
10498
|
end
|
10172
10499
|
|
@@ -10178,6 +10505,7 @@ module Aws::Glue
|
|
10178
10505
|
#
|
10179
10506
|
class StartWorkflowRunResponse < Struct.new(
|
10180
10507
|
:run_id)
|
10508
|
+
SENSITIVE = []
|
10181
10509
|
include Aws::Structure
|
10182
10510
|
end
|
10183
10511
|
|
@@ -10196,6 +10524,7 @@ module Aws::Glue
|
|
10196
10524
|
#
|
10197
10525
|
class StopCrawlerRequest < Struct.new(
|
10198
10526
|
:name)
|
10527
|
+
SENSITIVE = []
|
10199
10528
|
include Aws::Structure
|
10200
10529
|
end
|
10201
10530
|
|
@@ -10218,6 +10547,7 @@ module Aws::Glue
|
|
10218
10547
|
#
|
10219
10548
|
class StopCrawlerScheduleRequest < Struct.new(
|
10220
10549
|
:crawler_name)
|
10550
|
+
SENSITIVE = []
|
10221
10551
|
include Aws::Structure
|
10222
10552
|
end
|
10223
10553
|
|
@@ -10240,6 +10570,7 @@ module Aws::Glue
|
|
10240
10570
|
#
|
10241
10571
|
class StopTriggerRequest < Struct.new(
|
10242
10572
|
:name)
|
10573
|
+
SENSITIVE = []
|
10243
10574
|
include Aws::Structure
|
10244
10575
|
end
|
10245
10576
|
|
@@ -10251,6 +10582,7 @@ module Aws::Glue
|
|
10251
10582
|
#
|
10252
10583
|
class StopTriggerResponse < Struct.new(
|
10253
10584
|
:name)
|
10585
|
+
SENSITIVE = []
|
10254
10586
|
include Aws::Structure
|
10255
10587
|
end
|
10256
10588
|
|
@@ -10275,6 +10607,7 @@ module Aws::Glue
|
|
10275
10607
|
class StopWorkflowRunRequest < Struct.new(
|
10276
10608
|
:name,
|
10277
10609
|
:run_id)
|
10610
|
+
SENSITIVE = []
|
10278
10611
|
include Aws::Structure
|
10279
10612
|
end
|
10280
10613
|
|
@@ -10400,6 +10733,7 @@ module Aws::Glue
|
|
10400
10733
|
:parameters,
|
10401
10734
|
:skewed_info,
|
10402
10735
|
:stored_as_sub_directories)
|
10736
|
+
SENSITIVE = []
|
10403
10737
|
include Aws::Structure
|
10404
10738
|
end
|
10405
10739
|
|
@@ -10507,6 +10841,7 @@ module Aws::Glue
|
|
10507
10841
|
:parameters,
|
10508
10842
|
:created_by,
|
10509
10843
|
:is_registered_with_lake_formation)
|
10844
|
+
SENSITIVE = []
|
10510
10845
|
include Aws::Structure
|
10511
10846
|
end
|
10512
10847
|
|
@@ -10526,6 +10861,7 @@ module Aws::Glue
|
|
10526
10861
|
class TableError < Struct.new(
|
10527
10862
|
:table_name,
|
10528
10863
|
:error_detail)
|
10864
|
+
SENSITIVE = []
|
10529
10865
|
include Aws::Structure
|
10530
10866
|
end
|
10531
10867
|
|
@@ -10675,6 +11011,7 @@ module Aws::Glue
|
|
10675
11011
|
:view_expanded_text,
|
10676
11012
|
:table_type,
|
10677
11013
|
:parameters)
|
11014
|
+
SENSITIVE = []
|
10678
11015
|
include Aws::Structure
|
10679
11016
|
end
|
10680
11017
|
|
@@ -10695,6 +11032,7 @@ module Aws::Glue
|
|
10695
11032
|
class TableVersion < Struct.new(
|
10696
11033
|
:table,
|
10697
11034
|
:version_id)
|
11035
|
+
SENSITIVE = []
|
10698
11036
|
include Aws::Structure
|
10699
11037
|
end
|
10700
11038
|
|
@@ -10719,6 +11057,7 @@ module Aws::Glue
|
|
10719
11057
|
:table_name,
|
10720
11058
|
:version_id,
|
10721
11059
|
:error_detail)
|
11060
|
+
SENSITIVE = []
|
10722
11061
|
include Aws::Structure
|
10723
11062
|
end
|
10724
11063
|
|
@@ -10751,6 +11090,7 @@ module Aws::Glue
|
|
10751
11090
|
class TagResourceRequest < Struct.new(
|
10752
11091
|
:resource_arn,
|
10753
11092
|
:tags_to_add)
|
11093
|
+
SENSITIVE = []
|
10754
11094
|
include Aws::Structure
|
10755
11095
|
end
|
10756
11096
|
|
@@ -10816,6 +11156,7 @@ module Aws::Glue
|
|
10816
11156
|
:last_modified_on,
|
10817
11157
|
:completed_on,
|
10818
11158
|
:execution_time)
|
11159
|
+
SENSITIVE = []
|
10819
11160
|
include Aws::Structure
|
10820
11161
|
end
|
10821
11162
|
|
@@ -10855,6 +11196,7 @@ module Aws::Glue
|
|
10855
11196
|
:status,
|
10856
11197
|
:started_before,
|
10857
11198
|
:started_after)
|
11199
|
+
SENSITIVE = []
|
10858
11200
|
include Aws::Structure
|
10859
11201
|
end
|
10860
11202
|
|
@@ -10888,6 +11230,7 @@ module Aws::Glue
|
|
10888
11230
|
:export_labels_task_run_properties,
|
10889
11231
|
:labeling_set_generation_task_run_properties,
|
10890
11232
|
:find_matches_task_run_properties)
|
11233
|
+
SENSITIVE = []
|
10891
11234
|
include Aws::Structure
|
10892
11235
|
end
|
10893
11236
|
|
@@ -10917,6 +11260,7 @@ module Aws::Glue
|
|
10917
11260
|
class TaskRunSortCriteria < Struct.new(
|
10918
11261
|
:column,
|
10919
11262
|
:sort_direction)
|
11263
|
+
SENSITIVE = []
|
10920
11264
|
include Aws::Structure
|
10921
11265
|
end
|
10922
11266
|
|
@@ -11006,6 +11350,7 @@ module Aws::Glue
|
|
11006
11350
|
:last_modified_before,
|
11007
11351
|
:last_modified_after,
|
11008
11352
|
:schema)
|
11353
|
+
SENSITIVE = []
|
11009
11354
|
include Aws::Structure
|
11010
11355
|
end
|
11011
11356
|
|
@@ -11045,6 +11390,7 @@ module Aws::Glue
|
|
11045
11390
|
class TransformParameters < Struct.new(
|
11046
11391
|
:transform_type,
|
11047
11392
|
:find_matches_parameters)
|
11393
|
+
SENSITIVE = []
|
11048
11394
|
include Aws::Structure
|
11049
11395
|
end
|
11050
11396
|
|
@@ -11074,6 +11420,7 @@ module Aws::Glue
|
|
11074
11420
|
class TransformSortCriteria < Struct.new(
|
11075
11421
|
:column,
|
11076
11422
|
:sort_direction)
|
11423
|
+
SENSITIVE = []
|
11077
11424
|
include Aws::Structure
|
11078
11425
|
end
|
11079
11426
|
|
@@ -11133,6 +11480,7 @@ module Aws::Glue
|
|
11133
11480
|
:schedule,
|
11134
11481
|
:actions,
|
11135
11482
|
:predicate)
|
11483
|
+
SENSITIVE = []
|
11136
11484
|
include Aws::Structure
|
11137
11485
|
end
|
11138
11486
|
|
@@ -11146,6 +11494,7 @@ module Aws::Glue
|
|
11146
11494
|
#
|
11147
11495
|
class TriggerNodeDetails < Struct.new(
|
11148
11496
|
:trigger)
|
11497
|
+
SENSITIVE = []
|
11149
11498
|
include Aws::Structure
|
11150
11499
|
end
|
11151
11500
|
|
@@ -11222,6 +11571,7 @@ module Aws::Glue
|
|
11222
11571
|
:schedule,
|
11223
11572
|
:actions,
|
11224
11573
|
:predicate)
|
11574
|
+
SENSITIVE = []
|
11225
11575
|
include Aws::Structure
|
11226
11576
|
end
|
11227
11577
|
|
@@ -11247,6 +11597,7 @@ module Aws::Glue
|
|
11247
11597
|
class UntagResourceRequest < Struct.new(
|
11248
11598
|
:resource_arn,
|
11249
11599
|
:tags_to_remove)
|
11600
|
+
SENSITIVE = []
|
11250
11601
|
include Aws::Structure
|
11251
11602
|
end
|
11252
11603
|
|
@@ -11307,6 +11658,7 @@ module Aws::Glue
|
|
11307
11658
|
:xml_classifier,
|
11308
11659
|
:json_classifier,
|
11309
11660
|
:csv_classifier)
|
11661
|
+
SENSITIVE = []
|
11310
11662
|
include Aws::Structure
|
11311
11663
|
end
|
11312
11664
|
|
@@ -11356,6 +11708,7 @@ module Aws::Glue
|
|
11356
11708
|
:catalog_id,
|
11357
11709
|
:name,
|
11358
11710
|
:connection_input)
|
11711
|
+
SENSITIVE = []
|
11359
11712
|
include Aws::Structure
|
11360
11713
|
end
|
11361
11714
|
|
@@ -11388,6 +11741,8 @@ module Aws::Glue
|
|
11388
11741
|
# dynamo_db_targets: [
|
11389
11742
|
# {
|
11390
11743
|
# path: "Path",
|
11744
|
+
# scan_all: false,
|
11745
|
+
# scan_rate: 1.0,
|
11391
11746
|
# },
|
11392
11747
|
# ],
|
11393
11748
|
# catalog_targets: [
|
@@ -11431,14 +11786,13 @@ module Aws::Glue
|
|
11431
11786
|
# @return [Types::CrawlerTargets]
|
11432
11787
|
#
|
11433
11788
|
# @!attribute [rw] schedule
|
11434
|
-
# A `cron` expression used to specify the schedule
|
11435
|
-
#
|
11436
|
-
#
|
11437
|
-
# `cron(15 12 * * ? *)`.
|
11789
|
+
# A `cron` expression used to specify the schedule (see [Time-Based
|
11790
|
+
# Schedules for Jobs and Crawlers][1]. For example, to run something
|
11791
|
+
# every day at 12:15 UTC, you would specify: `cron(15 12 * * ? *)`.
|
11438
11792
|
#
|
11439
11793
|
#
|
11440
11794
|
#
|
11441
|
-
# [1]:
|
11795
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
11442
11796
|
# @return [String]
|
11443
11797
|
#
|
11444
11798
|
# @!attribute [rw] classifiers
|
@@ -11457,13 +11811,13 @@ module Aws::Glue
|
|
11457
11811
|
# @return [Types::SchemaChangePolicy]
|
11458
11812
|
#
|
11459
11813
|
# @!attribute [rw] configuration
|
11460
|
-
#
|
11461
|
-
#
|
11814
|
+
# Crawler configuration information. This versioned JSON string allows
|
11815
|
+
# users to specify aspects of a crawler's behavior. For more
|
11462
11816
|
# information, see [Configuring a Crawler][1].
|
11463
11817
|
#
|
11464
11818
|
#
|
11465
11819
|
#
|
11466
|
-
# [1]:
|
11820
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
11467
11821
|
# @return [String]
|
11468
11822
|
#
|
11469
11823
|
# @!attribute [rw] crawler_security_configuration
|
@@ -11485,6 +11839,7 @@ module Aws::Glue
|
|
11485
11839
|
:schema_change_policy,
|
11486
11840
|
:configuration,
|
11487
11841
|
:crawler_security_configuration)
|
11842
|
+
SENSITIVE = []
|
11488
11843
|
include Aws::Structure
|
11489
11844
|
end
|
11490
11845
|
|
@@ -11505,14 +11860,14 @@ module Aws::Glue
|
|
11505
11860
|
# @return [String]
|
11506
11861
|
#
|
11507
11862
|
# @!attribute [rw] schedule
|
11508
|
-
# The updated `cron` expression used to specify the schedule
|
11509
|
-
#
|
11510
|
-
#
|
11511
|
-
#
|
11863
|
+
# The updated `cron` expression used to specify the schedule (see
|
11864
|
+
# [Time-Based Schedules for Jobs and Crawlers][1]. For example, to run
|
11865
|
+
# something every day at 12:15 UTC, you would specify: `cron(15 12 * *
|
11866
|
+
# ? *)`.
|
11512
11867
|
#
|
11513
11868
|
#
|
11514
11869
|
#
|
11515
|
-
# [1]:
|
11870
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html
|
11516
11871
|
# @return [String]
|
11517
11872
|
#
|
11518
11873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateCrawlerScheduleRequest AWS API Documentation
|
@@ -11520,6 +11875,7 @@ module Aws::Glue
|
|
11520
11875
|
class UpdateCrawlerScheduleRequest < Struct.new(
|
11521
11876
|
:crawler_name,
|
11522
11877
|
:schedule)
|
11878
|
+
SENSITIVE = []
|
11523
11879
|
include Aws::Structure
|
11524
11880
|
end
|
11525
11881
|
|
@@ -11583,6 +11939,7 @@ module Aws::Glue
|
|
11583
11939
|
:header,
|
11584
11940
|
:disable_value_trimming,
|
11585
11941
|
:allow_single_column)
|
11942
|
+
SENSITIVE = []
|
11586
11943
|
include Aws::Structure
|
11587
11944
|
end
|
11588
11945
|
|
@@ -11631,6 +11988,7 @@ module Aws::Glue
|
|
11631
11988
|
:catalog_id,
|
11632
11989
|
:name,
|
11633
11990
|
:database_input)
|
11991
|
+
SENSITIVE = []
|
11634
11992
|
include Aws::Structure
|
11635
11993
|
end
|
11636
11994
|
|
@@ -11716,6 +12074,7 @@ module Aws::Glue
|
|
11716
12074
|
:update_etl_libraries,
|
11717
12075
|
:delete_arguments,
|
11718
12076
|
:add_arguments)
|
12077
|
+
SENSITIVE = []
|
11719
12078
|
include Aws::Structure
|
11720
12079
|
end
|
11721
12080
|
|
@@ -11760,6 +12119,7 @@ module Aws::Glue
|
|
11760
12119
|
:classification,
|
11761
12120
|
:grok_pattern,
|
11762
12121
|
:custom_patterns)
|
12122
|
+
SENSITIVE = []
|
11763
12123
|
include Aws::Structure
|
11764
12124
|
end
|
11765
12125
|
|
@@ -11816,6 +12176,7 @@ module Aws::Glue
|
|
11816
12176
|
class UpdateJobRequest < Struct.new(
|
11817
12177
|
:job_name,
|
11818
12178
|
:job_update)
|
12179
|
+
SENSITIVE = []
|
11819
12180
|
include Aws::Structure
|
11820
12181
|
end
|
11821
12182
|
|
@@ -11827,6 +12188,7 @@ module Aws::Glue
|
|
11827
12188
|
#
|
11828
12189
|
class UpdateJobResponse < Struct.new(
|
11829
12190
|
:job_name)
|
12191
|
+
SENSITIVE = []
|
11830
12192
|
include Aws::Structure
|
11831
12193
|
end
|
11832
12194
|
|
@@ -11846,7 +12208,7 @@ module Aws::Glue
|
|
11846
12208
|
#
|
11847
12209
|
# @!attribute [rw] json_path
|
11848
12210
|
# A `JsonPath` string defining the JSON data for the classifier to
|
11849
|
-
# classify. AWS Glue supports a subset of
|
12211
|
+
# classify. AWS Glue supports a subset of JsonPath, as described in
|
11850
12212
|
# [Writing JsonPath Custom Classifiers][1].
|
11851
12213
|
#
|
11852
12214
|
#
|
@@ -11859,6 +12221,7 @@ module Aws::Glue
|
|
11859
12221
|
class UpdateJsonClassifierRequest < Struct.new(
|
11860
12222
|
:name,
|
11861
12223
|
:json_path)
|
12224
|
+
SENSITIVE = []
|
11862
12225
|
include Aws::Structure
|
11863
12226
|
end
|
11864
12227
|
|
@@ -11983,6 +12346,7 @@ module Aws::Glue
|
|
11983
12346
|
:number_of_workers,
|
11984
12347
|
:timeout,
|
11985
12348
|
:max_retries)
|
12349
|
+
SENSITIVE = []
|
11986
12350
|
include Aws::Structure
|
11987
12351
|
end
|
11988
12352
|
|
@@ -11994,6 +12358,7 @@ module Aws::Glue
|
|
11994
12358
|
#
|
11995
12359
|
class UpdateMLTransformResponse < Struct.new(
|
11996
12360
|
:transform_id)
|
12361
|
+
SENSITIVE = []
|
11997
12362
|
include Aws::Structure
|
11998
12363
|
end
|
11999
12364
|
|
@@ -12088,6 +12453,7 @@ module Aws::Glue
|
|
12088
12453
|
:table_name,
|
12089
12454
|
:partition_value_list,
|
12090
12455
|
:partition_input)
|
12456
|
+
SENSITIVE = []
|
12091
12457
|
include Aws::Structure
|
12092
12458
|
end
|
12093
12459
|
|
@@ -12198,6 +12564,7 @@ module Aws::Glue
|
|
12198
12564
|
:database_name,
|
12199
12565
|
:table_input,
|
12200
12566
|
:skip_archive)
|
12567
|
+
SENSITIVE = []
|
12201
12568
|
include Aws::Structure
|
12202
12569
|
end
|
12203
12570
|
|
@@ -12256,6 +12623,7 @@ module Aws::Glue
|
|
12256
12623
|
class UpdateTriggerRequest < Struct.new(
|
12257
12624
|
:name,
|
12258
12625
|
:trigger_update)
|
12626
|
+
SENSITIVE = []
|
12259
12627
|
include Aws::Structure
|
12260
12628
|
end
|
12261
12629
|
|
@@ -12267,6 +12635,7 @@ module Aws::Glue
|
|
12267
12635
|
#
|
12268
12636
|
class UpdateTriggerResponse < Struct.new(
|
12269
12637
|
:trigger)
|
12638
|
+
SENSITIVE = []
|
12270
12639
|
include Aws::Structure
|
12271
12640
|
end
|
12272
12641
|
|
@@ -12317,6 +12686,7 @@ module Aws::Glue
|
|
12317
12686
|
:database_name,
|
12318
12687
|
:function_name,
|
12319
12688
|
:function_input)
|
12689
|
+
SENSITIVE = []
|
12320
12690
|
include Aws::Structure
|
12321
12691
|
end
|
12322
12692
|
|
@@ -12354,6 +12724,7 @@ module Aws::Glue
|
|
12354
12724
|
:name,
|
12355
12725
|
:description,
|
12356
12726
|
:default_run_properties)
|
12727
|
+
SENSITIVE = []
|
12357
12728
|
include Aws::Structure
|
12358
12729
|
end
|
12359
12730
|
|
@@ -12365,6 +12736,7 @@ module Aws::Glue
|
|
12365
12736
|
#
|
12366
12737
|
class UpdateWorkflowResponse < Struct.new(
|
12367
12738
|
:name)
|
12739
|
+
SENSITIVE = []
|
12368
12740
|
include Aws::Structure
|
12369
12741
|
end
|
12370
12742
|
|
@@ -12402,6 +12774,7 @@ module Aws::Glue
|
|
12402
12774
|
:name,
|
12403
12775
|
:classification,
|
12404
12776
|
:row_tag)
|
12777
|
+
SENSITIVE = []
|
12405
12778
|
include Aws::Structure
|
12406
12779
|
end
|
12407
12780
|
|
@@ -12412,6 +12785,10 @@ module Aws::Glue
|
|
12412
12785
|
# The name of the function.
|
12413
12786
|
# @return [String]
|
12414
12787
|
#
|
12788
|
+
# @!attribute [rw] database_name
|
12789
|
+
# The name of the database where the function resides.
|
12790
|
+
# @return [String]
|
12791
|
+
#
|
12415
12792
|
# @!attribute [rw] class_name
|
12416
12793
|
# The Java class that contains the function code.
|
12417
12794
|
# @return [String]
|
@@ -12436,11 +12813,13 @@ module Aws::Glue
|
|
12436
12813
|
#
|
12437
12814
|
class UserDefinedFunction < Struct.new(
|
12438
12815
|
:function_name,
|
12816
|
+
:database_name,
|
12439
12817
|
:class_name,
|
12440
12818
|
:owner_name,
|
12441
12819
|
:owner_type,
|
12442
12820
|
:create_time,
|
12443
12821
|
:resource_uris)
|
12822
|
+
SENSITIVE = []
|
12444
12823
|
include Aws::Structure
|
12445
12824
|
end
|
12446
12825
|
|
@@ -12490,6 +12869,7 @@ module Aws::Glue
|
|
12490
12869
|
:owner_name,
|
12491
12870
|
:owner_type,
|
12492
12871
|
:resource_uris)
|
12872
|
+
SENSITIVE = []
|
12493
12873
|
include Aws::Structure
|
12494
12874
|
end
|
12495
12875
|
|
@@ -12503,6 +12883,7 @@ module Aws::Glue
|
|
12503
12883
|
#
|
12504
12884
|
class ValidationException < Struct.new(
|
12505
12885
|
:message)
|
12886
|
+
SENSITIVE = []
|
12506
12887
|
include Aws::Structure
|
12507
12888
|
end
|
12508
12889
|
|
@@ -12516,6 +12897,7 @@ module Aws::Glue
|
|
12516
12897
|
#
|
12517
12898
|
class VersionMismatchException < Struct.new(
|
12518
12899
|
:message)
|
12900
|
+
SENSITIVE = []
|
12519
12901
|
include Aws::Structure
|
12520
12902
|
end
|
12521
12903
|
|
@@ -12563,6 +12945,7 @@ module Aws::Glue
|
|
12563
12945
|
:last_modified_on,
|
12564
12946
|
:last_run,
|
12565
12947
|
:graph)
|
12948
|
+
SENSITIVE = []
|
12566
12949
|
include Aws::Structure
|
12567
12950
|
end
|
12568
12951
|
|
@@ -12585,6 +12968,7 @@ module Aws::Glue
|
|
12585
12968
|
class WorkflowGraph < Struct.new(
|
12586
12969
|
:nodes,
|
12587
12970
|
:edges)
|
12971
|
+
SENSITIVE = []
|
12588
12972
|
include Aws::Structure
|
12589
12973
|
end
|
12590
12974
|
|
@@ -12636,6 +13020,7 @@ module Aws::Glue
|
|
12636
13020
|
:status,
|
12637
13021
|
:statistics,
|
12638
13022
|
:graph)
|
13023
|
+
SENSITIVE = []
|
12639
13024
|
include Aws::Structure
|
12640
13025
|
end
|
12641
13026
|
|
@@ -12674,6 +13059,7 @@ module Aws::Glue
|
|
12674
13059
|
:stopped_actions,
|
12675
13060
|
:succeeded_actions,
|
12676
13061
|
:running_actions)
|
13062
|
+
SENSITIVE = []
|
12677
13063
|
include Aws::Structure
|
12678
13064
|
end
|
12679
13065
|
|
@@ -12717,6 +13103,7 @@ module Aws::Glue
|
|
12717
13103
|
:last_updated,
|
12718
13104
|
:version,
|
12719
13105
|
:row_tag)
|
13106
|
+
SENSITIVE = []
|
12720
13107
|
include Aws::Structure
|
12721
13108
|
end
|
12722
13109
|
|