aws-sdk-glue 1.123.0 → 1.125.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dbc5b917d8ad3d02d2618d804a4639eb0fcfb3a025c9733551012ad0d4def71e
4
- data.tar.gz: e859ea73987ae4425a755b07ae6c30f24812fee239f8bd85d771d13a7a252376
3
+ metadata.gz: 5a267182803621aa945ae65cad27f5749dec99c157504d7dbe3d02e06c127450
4
+ data.tar.gz: 0f7c637a827f430f6f7bf7a93537d18550a2e2209f8c4276dda1c0373e9a2f3d
5
5
  SHA512:
6
- metadata.gz: fb46acaaadfbb35208e1f47997e8dc501252d03578aafdabc0c662863df8a1bff426c80f6373bbd21b7f545db9ab62d00bccbc0b8cce7a6326e69f9b37a39aa3
7
- data.tar.gz: 13534e2e4fce172c092598dd5bacadd0f9a02b1ee046095f193d536d03100e042dd0bb9f74841800565dbf130bb76fff7cde80042d705725b3bd91bf2a11b8d4
6
+ metadata.gz: 35856dca20ba688b3cea4196a6bc53c47ad3bed1741e8be407626004f271e3cf4d01c50da615692f12578b82ac92107851273e0da51c39a0dc84d26f46e81399
7
+ data.tar.gz: 989d0fdbc49e23de833190fe4248911ab26470d09f8801f685b86c314eb0586a703f68f2ff049b7986bab0fff1c87927c131912dd7aa958b0fa59c800565610d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.125.0 (2022-11-29)
5
+ ------------------
6
+
7
+ * Feature - This release allows the creation of Custom Visual Transforms (Dynamic Transforms) to be created via AWS Glue CLI/SDK.
8
+
9
+ 1.124.0 (2022-11-18)
10
+ ------------------
11
+
12
+ * Feature - AWSGlue Crawler - Adding support for Table and Column level Comments with database level datatypes for JDBC based crawler.
13
+
4
14
  1.123.0 (2022-11-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.123.0
1
+ 1.125.0
@@ -776,6 +776,8 @@ module Aws::Glue
776
776
  # resp.crawlers[0].targets.jdbc_targets[0].path #=> String
777
777
  # resp.crawlers[0].targets.jdbc_targets[0].exclusions #=> Array
778
778
  # resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
779
+ # resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata #=> Array
780
+ # resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata[0] #=> String, one of "COMMENTS", "RAWTYPES"
779
781
  # resp.crawlers[0].targets.mongo_db_targets #=> Array
780
782
  # resp.crawlers[0].targets.mongo_db_targets[0].connection_name #=> String
781
783
  # resp.crawlers[0].targets.mongo_db_targets[0].path #=> String
@@ -1463,6 +1465,22 @@ module Aws::Glue
1463
1465
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.inputs[0] #=> String
1464
1466
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
1465
1467
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
1468
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.name #=> String
1469
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.transform_name #=> String
1470
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs #=> Array
1471
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs[0] #=> String
1472
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters #=> Array
1473
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].name #=> String
1474
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
1475
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_rule #=> String
1476
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_message #=> String
1477
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value #=> Array
1478
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value[0] #=> String
1479
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].list_type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
1480
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].is_optional #=> Boolean
1481
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.function_name #=> String
1482
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.path #=> String
1483
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.version #=> String
1466
1484
  # resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
1467
1485
  # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
1468
1486
  # resp.jobs[0].source_control_details.repository #=> String
@@ -2304,7 +2322,7 @@ module Aws::Glue
2304
2322
  # @option params [String] :configuration
2305
2323
  # Crawler configuration information. This versioned JSON string allows
2306
2324
  # users to specify aspects of a crawler's behavior. For more
2307
- # information, see [Configuring a Crawler][1].
2325
+ # information, see [Setting crawler configuration options][1].
2308
2326
  #
2309
2327
  #
2310
2328
  #
@@ -2348,6 +2366,7 @@ module Aws::Glue
2348
2366
  # connection_name: "ConnectionName",
2349
2367
  # path: "Path",
2350
2368
  # exclusions: ["Path"],
2369
+ # enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
2351
2370
  # },
2352
2371
  # ],
2353
2372
  # mongo_db_targets: [
@@ -3601,6 +3620,25 @@ module Aws::Glue
3601
3620
  # database: "EnclosedInStringProperty", # required
3602
3621
  # table: "EnclosedInStringProperty", # required
3603
3622
  # },
3623
+ # dynamic_transform: {
3624
+ # name: "EnclosedInStringProperty", # required
3625
+ # transform_name: "EnclosedInStringProperty", # required
3626
+ # inputs: ["NodeId"], # required
3627
+ # parameters: [
3628
+ # {
3629
+ # name: "EnclosedInStringProperty", # required
3630
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
3631
+ # validation_rule: "EnclosedInStringProperty",
3632
+ # validation_message: "EnclosedInStringProperty",
3633
+ # value: ["EnclosedInStringProperty"],
3634
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
3635
+ # is_optional: false,
3636
+ # },
3637
+ # ],
3638
+ # function_name: "EnclosedInStringProperty", # required
3639
+ # path: "EnclosedInStringProperty", # required
3640
+ # version: "EnclosedInStringProperty",
3641
+ # },
3604
3642
  # },
3605
3643
  # },
3606
3644
  # execution_class: "FLEX", # accepts FLEX, STANDARD
@@ -6188,6 +6226,8 @@ module Aws::Glue
6188
6226
  # resp.crawler.targets.jdbc_targets[0].path #=> String
6189
6227
  # resp.crawler.targets.jdbc_targets[0].exclusions #=> Array
6190
6228
  # resp.crawler.targets.jdbc_targets[0].exclusions[0] #=> String
6229
+ # resp.crawler.targets.jdbc_targets[0].enable_additional_metadata #=> Array
6230
+ # resp.crawler.targets.jdbc_targets[0].enable_additional_metadata[0] #=> String, one of "COMMENTS", "RAWTYPES"
6191
6231
  # resp.crawler.targets.mongo_db_targets #=> Array
6192
6232
  # resp.crawler.targets.mongo_db_targets[0].connection_name #=> String
6193
6233
  # resp.crawler.targets.mongo_db_targets[0].path #=> String
@@ -6332,6 +6372,8 @@ module Aws::Glue
6332
6372
  # resp.crawlers[0].targets.jdbc_targets[0].path #=> String
6333
6373
  # resp.crawlers[0].targets.jdbc_targets[0].exclusions #=> Array
6334
6374
  # resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
6375
+ # resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata #=> Array
6376
+ # resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata[0] #=> String, one of "COMMENTS", "RAWTYPES"
6335
6377
  # resp.crawlers[0].targets.mongo_db_targets #=> Array
6336
6378
  # resp.crawlers[0].targets.mongo_db_targets[0].connection_name #=> String
6337
6379
  # resp.crawlers[0].targets.mongo_db_targets[0].path #=> String
@@ -7262,6 +7304,22 @@ module Aws::Glue
7262
7304
  # resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.inputs[0] #=> String
7263
7305
  # resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
7264
7306
  # resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
7307
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.name #=> String
7308
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.transform_name #=> String
7309
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs #=> Array
7310
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs[0] #=> String
7311
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters #=> Array
7312
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].name #=> String
7313
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
7314
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_rule #=> String
7315
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_message #=> String
7316
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value #=> Array
7317
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value[0] #=> String
7318
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].list_type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
7319
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].is_optional #=> Boolean
7320
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.function_name #=> String
7321
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.path #=> String
7322
+ # resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.version #=> String
7265
7323
  # resp.job.execution_class #=> String, one of "FLEX", "STANDARD"
7266
7324
  # resp.job.source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
7267
7325
  # resp.job.source_control_details.repository #=> String
@@ -7992,6 +8050,22 @@ module Aws::Glue
7992
8050
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.inputs[0] #=> String
7993
8051
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
7994
8052
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
8053
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.name #=> String
8054
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.transform_name #=> String
8055
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs #=> Array
8056
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs[0] #=> String
8057
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters #=> Array
8058
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].name #=> String
8059
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
8060
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_rule #=> String
8061
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_message #=> String
8062
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value #=> Array
8063
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value[0] #=> String
8064
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].list_type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
8065
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].is_optional #=> Boolean
8066
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.function_name #=> String
8067
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.path #=> String
8068
+ # resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.version #=> String
7995
8069
  # resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
7996
8070
  # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
7997
8071
  # resp.jobs[0].source_control_details.repository #=> String
@@ -13596,7 +13670,7 @@ module Aws::Glue
13596
13670
  # @option params [String] :configuration
13597
13671
  # Crawler configuration information. This versioned JSON string allows
13598
13672
  # users to specify aspects of a crawler's behavior. For more
13599
- # information, see [Configuring a Crawler][1].
13673
+ # information, see [Setting crawler configuration options][1].
13600
13674
  #
13601
13675
  #
13602
13676
  #
@@ -13631,6 +13705,7 @@ module Aws::Glue
13631
13705
  # connection_name: "ConnectionName",
13632
13706
  # path: "Path",
13633
13707
  # exclusions: ["Path"],
13708
+ # enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
13634
13709
  # },
13635
13710
  # ],
13636
13711
  # mongo_db_targets: [
@@ -14565,6 +14640,25 @@ module Aws::Glue
14565
14640
  # database: "EnclosedInStringProperty", # required
14566
14641
  # table: "EnclosedInStringProperty", # required
14567
14642
  # },
14643
+ # dynamic_transform: {
14644
+ # name: "EnclosedInStringProperty", # required
14645
+ # transform_name: "EnclosedInStringProperty", # required
14646
+ # inputs: ["NodeId"], # required
14647
+ # parameters: [
14648
+ # {
14649
+ # name: "EnclosedInStringProperty", # required
14650
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
14651
+ # validation_rule: "EnclosedInStringProperty",
14652
+ # validation_message: "EnclosedInStringProperty",
14653
+ # value: ["EnclosedInStringProperty"],
14654
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
14655
+ # is_optional: false,
14656
+ # },
14657
+ # ],
14658
+ # function_name: "EnclosedInStringProperty", # required
14659
+ # path: "EnclosedInStringProperty", # required
14660
+ # version: "EnclosedInStringProperty",
14661
+ # },
14568
14662
  # },
14569
14663
  # },
14570
14664
  # execution_class: "FLEX", # accepts FLEX, STANDARD
@@ -15390,7 +15484,7 @@ module Aws::Glue
15390
15484
  params: params,
15391
15485
  config: config)
15392
15486
  context[:gem_name] = 'aws-sdk-glue'
15393
- context[:gem_version] = '1.123.0'
15487
+ context[:gem_version] = '1.125.0'
15394
15488
  Seahorse::Client::Request.new(handlers, context)
15395
15489
  end
15396
15490
 
@@ -343,11 +343,13 @@ module Aws::Glue
343
343
  DropDuplicates = Shapes::StructureShape.new(name: 'DropDuplicates')
344
344
  DropFields = Shapes::StructureShape.new(name: 'DropFields')
345
345
  DropNullFields = Shapes::StructureShape.new(name: 'DropNullFields')
346
+ DynamicTransform = Shapes::StructureShape.new(name: 'DynamicTransform')
346
347
  DynamoDBCatalogSource = Shapes::StructureShape.new(name: 'DynamoDBCatalogSource')
347
348
  DynamoDBTarget = Shapes::StructureShape.new(name: 'DynamoDBTarget')
348
349
  DynamoDBTargetList = Shapes::ListShape.new(name: 'DynamoDBTargetList')
349
350
  Edge = Shapes::StructureShape.new(name: 'Edge')
350
351
  EdgeList = Shapes::ListShape.new(name: 'EdgeList')
352
+ EnableAdditionalMetadata = Shapes::ListShape.new(name: 'EnableAdditionalMetadata')
351
353
  EnableHybridValues = Shapes::StringShape.new(name: 'EnableHybridValues')
352
354
  EnclosedInStringProperties = Shapes::ListShape.new(name: 'EnclosedInStringProperties')
353
355
  EnclosedInStringPropertiesMinOne = Shapes::ListShape.new(name: 'EnclosedInStringPropertiesMinOne')
@@ -557,6 +559,7 @@ module Aws::Glue
557
559
  JDBCConnectorTarget = Shapes::StructureShape.new(name: 'JDBCConnectorTarget')
558
560
  JDBCDataType = Shapes::StringShape.new(name: 'JDBCDataType')
559
561
  JDBCDataTypeMapping = Shapes::MapShape.new(name: 'JDBCDataTypeMapping')
562
+ JdbcMetadataEntry = Shapes::StringShape.new(name: 'JdbcMetadataEntry')
560
563
  JdbcTarget = Shapes::StructureShape.new(name: 'JdbcTarget')
561
564
  JdbcTargetList = Shapes::ListShape.new(name: 'JdbcTargetList')
562
565
  Job = Shapes::StructureShape.new(name: 'Job')
@@ -708,6 +711,7 @@ module Aws::Glue
708
711
  PIIDetection = Shapes::StructureShape.new(name: 'PIIDetection')
709
712
  PageSize = Shapes::IntegerShape.new(name: 'PageSize')
710
713
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
714
+ ParamType = Shapes::StringShape.new(name: 'ParamType')
711
715
  ParametersMap = Shapes::MapShape.new(name: 'ParametersMap')
712
716
  ParametersMapValue = Shapes::StringShape.new(name: 'ParametersMapValue')
713
717
  ParquetCompressionType = Shapes::StringShape.new(name: 'ParquetCompressionType')
@@ -944,6 +948,8 @@ module Aws::Glue
944
948
  Topk = Shapes::IntegerShape.new(name: 'Topk')
945
949
  TotalSegmentsInteger = Shapes::IntegerShape.new(name: 'TotalSegmentsInteger')
946
950
  TransactionIdString = Shapes::StringShape.new(name: 'TransactionIdString')
951
+ TransformConfigParameter = Shapes::StructureShape.new(name: 'TransformConfigParameter')
952
+ TransformConfigParameterList = Shapes::ListShape.new(name: 'TransformConfigParameterList')
947
953
  TransformEncryption = Shapes::StructureShape.new(name: 'TransformEncryption')
948
954
  TransformFilterCriteria = Shapes::StructureShape.new(name: 'TransformFilterCriteria')
949
955
  TransformIdList = Shapes::ListShape.new(name: 'TransformIdList')
@@ -1456,6 +1462,7 @@ module Aws::Glue
1456
1462
  CodeGenConfigurationNode.add_member(:my_sql_catalog_target, Shapes::ShapeRef.new(shape: MySQLCatalogTarget, location_name: "MySQLCatalogTarget"))
1457
1463
  CodeGenConfigurationNode.add_member(:oracle_sql_catalog_target, Shapes::ShapeRef.new(shape: OracleSQLCatalogTarget, location_name: "OracleSQLCatalogTarget"))
1458
1464
  CodeGenConfigurationNode.add_member(:postgre_sql_catalog_target, Shapes::ShapeRef.new(shape: PostgreSQLCatalogTarget, location_name: "PostgreSQLCatalogTarget"))
1465
+ CodeGenConfigurationNode.add_member(:dynamic_transform, Shapes::ShapeRef.new(shape: DynamicTransform, location_name: "DynamicTransform"))
1459
1466
  CodeGenConfigurationNode.struct_class = Types::CodeGenConfigurationNode
1460
1467
 
1461
1468
  CodeGenConfigurationNodes.key = Shapes::ShapeRef.new(shape: NodeId)
@@ -2314,6 +2321,15 @@ module Aws::Glue
2314
2321
  DropNullFields.add_member(:null_text_list, Shapes::ShapeRef.new(shape: NullValueFields, location_name: "NullTextList"))
2315
2322
  DropNullFields.struct_class = Types::DropNullFields
2316
2323
 
2324
+ DynamicTransform.add_member(:name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Name"))
2325
+ DynamicTransform.add_member(:transform_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "TransformName"))
2326
+ DynamicTransform.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
2327
+ DynamicTransform.add_member(:parameters, Shapes::ShapeRef.new(shape: TransformConfigParameterList, location_name: "Parameters"))
2328
+ DynamicTransform.add_member(:function_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "FunctionName"))
2329
+ DynamicTransform.add_member(:path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Path"))
2330
+ DynamicTransform.add_member(:version, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Version"))
2331
+ DynamicTransform.struct_class = Types::DynamicTransform
2332
+
2317
2333
  DynamoDBCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
2318
2334
  DynamoDBCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
2319
2335
  DynamoDBCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
@@ -2332,6 +2348,8 @@ module Aws::Glue
2332
2348
 
2333
2349
  EdgeList.member = Shapes::ShapeRef.new(shape: Edge)
2334
2350
 
2351
+ EnableAdditionalMetadata.member = Shapes::ShapeRef.new(shape: JdbcMetadataEntry)
2352
+
2335
2353
  EnclosedInStringProperties.member = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
2336
2354
 
2337
2355
  EnclosedInStringPropertiesMinOne.member = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
@@ -3128,6 +3146,7 @@ module Aws::Glue
3128
3146
  JdbcTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
3129
3147
  JdbcTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
3130
3148
  JdbcTarget.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
3149
+ JdbcTarget.add_member(:enable_additional_metadata, Shapes::ShapeRef.new(shape: EnableAdditionalMetadata, location_name: "EnableAdditionalMetadata"))
3131
3150
  JdbcTarget.struct_class = Types::JdbcTarget
3132
3151
 
3133
3152
  JdbcTargetList.member = Shapes::ShapeRef.new(shape: JdbcTarget)
@@ -4459,6 +4478,17 @@ module Aws::Glue
4459
4478
  TaskRunSortCriteria.add_member(:sort_direction, Shapes::ShapeRef.new(shape: SortDirectionType, required: true, location_name: "SortDirection"))
4460
4479
  TaskRunSortCriteria.struct_class = Types::TaskRunSortCriteria
4461
4480
 
4481
+ TransformConfigParameter.add_member(:name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Name"))
4482
+ TransformConfigParameter.add_member(:type, Shapes::ShapeRef.new(shape: ParamType, required: true, location_name: "Type"))
4483
+ TransformConfigParameter.add_member(:validation_rule, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ValidationRule"))
4484
+ TransformConfigParameter.add_member(:validation_message, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ValidationMessage"))
4485
+ TransformConfigParameter.add_member(:value, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, location_name: "Value"))
4486
+ TransformConfigParameter.add_member(:list_type, Shapes::ShapeRef.new(shape: ParamType, location_name: "ListType"))
4487
+ TransformConfigParameter.add_member(:is_optional, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "IsOptional"))
4488
+ TransformConfigParameter.struct_class = Types::TransformConfigParameter
4489
+
4490
+ TransformConfigParameterList.member = Shapes::ShapeRef.new(shape: TransformConfigParameter)
4491
+
4462
4492
  TransformEncryption.add_member(:ml_user_data_encryption, Shapes::ShapeRef.new(shape: MLUserDataEncryption, location_name: "MlUserDataEncryption"))
4463
4493
  TransformEncryption.add_member(:task_run_security_configuration_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TaskRunSecurityConfigurationName"))
4464
4494
  TransformEncryption.struct_class = Types::TransformEncryption
@@ -50,6 +50,9 @@ module Aws::Glue
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
+ if self[:region].nil?
54
+ raise ArgumentError, "Missing required EndpointParameter: :region"
55
+ end
53
56
  self[:use_dual_stack] = options[:use_dual_stack]
54
57
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
58
  if self[:use_dual_stack].nil?
@@ -29,82 +29,82 @@ module Aws::Glue
29
29
  # @api private
30
30
  RULES = <<-JSON
31
31
  eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2dsdWUtZmlwcy57UmVnaW9ufS57UGFydGl0
77
- aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
78
- fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0
79
- aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFi
80
- bGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUg
81
- b3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
82
- biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0s
83
- dHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
84
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6Imdl
85
- dEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3Vw
86
- cG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
87
- aXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
88
- cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZ2x1ZS1maXBzLntS
89
- ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRp
90
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7
91
- ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBidXQg
92
- dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6
93
- ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFs
94
- cyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5
95
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
96
- bGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJn
97
- diI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVhbFN0
98
- YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
99
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9nbHVlLntSZWdpb259
100
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
101
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
102
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxl
103
- ZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3Rh
104
- Y2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBv
105
- aW50Ijp7InVybCI6Imh0dHBzOi8vZ2x1ZS57UmVnaW9ufS57UGFydGl0aW9u
106
- UmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6
107
- e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
32
+ bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
+ YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
+ ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
+ aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
+ ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
+ IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
+ bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
+ aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
+ IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
+ IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
+ aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
+ Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
+ cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
+ bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
+ YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
+ bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
+ ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
+ IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
+ b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
+ ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
+ dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
+ c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
+ c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
+ dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
+ eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
+ In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
+ UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
+ cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
+ cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
+ ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
+ IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
+ bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
+ LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
+ bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
+ IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
+ YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
+ Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
+ YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
+ aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
+ biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
+ fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
+ cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
+ cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
+ ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
+ Ijp7InVybCI6Imh0dHBzOi8vZ2x1ZS1maXBzLntSZWdpb259LntQYXJ0aXRp
77
+ b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
78
+ LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
79
+ b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
80
+ ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
81
+ ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
82
+ IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
83
+ cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
84
+ eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
85
+ QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
86
+ b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
87
+ dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
88
+ IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9nbHVlLWZpcHMue1Jl
89
+ Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
90
+ cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsi
91
+ Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0
92
+ aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoi
93
+ ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxz
94
+ IiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlw
95
+ ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29s
96
+ ZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2
97
+ IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3Rh
98
+ Y2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
99
+ OltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2dsdWUue1JlZ2lvbn0u
100
+ e1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVy
101
+ dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
102
+ ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVk
103
+ IGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFj
104
+ ayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9p
105
+ bnQiOnsidXJsIjoiaHR0cHM6Ly9nbHVlLntSZWdpb259LntQYXJ0aXRpb25S
106
+ ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
107
+ fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
108
108
 
109
109
  JSON
110
110
  end
@@ -2819,6 +2819,25 @@ module Aws::Glue
2819
2819
  # database: "EnclosedInStringProperty", # required
2820
2820
  # table: "EnclosedInStringProperty", # required
2821
2821
  # },
2822
+ # dynamic_transform: {
2823
+ # name: "EnclosedInStringProperty", # required
2824
+ # transform_name: "EnclosedInStringProperty", # required
2825
+ # inputs: ["NodeId"], # required
2826
+ # parameters: [
2827
+ # {
2828
+ # name: "EnclosedInStringProperty", # required
2829
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
2830
+ # validation_rule: "EnclosedInStringProperty",
2831
+ # validation_message: "EnclosedInStringProperty",
2832
+ # value: ["EnclosedInStringProperty"],
2833
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
2834
+ # is_optional: false,
2835
+ # },
2836
+ # ],
2837
+ # function_name: "EnclosedInStringProperty", # required
2838
+ # path: "EnclosedInStringProperty", # required
2839
+ # version: "EnclosedInStringProperty",
2840
+ # },
2822
2841
  # }
2823
2842
  #
2824
2843
  # @!attribute [rw] athena_connector_source
@@ -3057,6 +3076,10 @@ module Aws::Glue
3057
3076
  # Specifies a target that uses Postgres SQL.
3058
3077
  # @return [Types::PostgreSQLCatalogTarget]
3059
3078
  #
3079
+ # @!attribute [rw] dynamic_transform
3080
+ # Specifies a custom visual transform created by a user.
3081
+ # @return [Types::DynamicTransform]
3082
+ #
3060
3083
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CodeGenConfigurationNode AWS API Documentation
3061
3084
  #
3062
3085
  class CodeGenConfigurationNode < Struct.new(
@@ -3109,7 +3132,8 @@ module Aws::Glue
3109
3132
  :microsoft_sql_server_catalog_target,
3110
3133
  :my_sql_catalog_target,
3111
3134
  :oracle_sql_catalog_target,
3112
- :postgre_sql_catalog_target)
3135
+ :postgre_sql_catalog_target,
3136
+ :dynamic_transform)
3113
3137
  SENSITIVE = []
3114
3138
  include Aws::Structure
3115
3139
  end
@@ -4164,11 +4188,11 @@ module Aws::Glue
4164
4188
  # @!attribute [rw] configuration
4165
4189
  # Crawler configuration information. This versioned JSON string allows
4166
4190
  # users to specify aspects of a crawler's behavior. For more
4167
- # information, see [Include and Exclude Patterns][1].
4191
+ # information, see [Setting crawler configuration options][1].
4168
4192
  #
4169
4193
  #
4170
4194
  #
4171
- # [1]: https://docs.aws.amazon.com/glue/latest/dg/define-crawler.html#crawler-data-stores-exclude
4195
+ # [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
4172
4196
  # @return [String]
4173
4197
  #
4174
4198
  # @!attribute [rw] crawler_security_configuration
@@ -4397,6 +4421,7 @@ module Aws::Glue
4397
4421
  # connection_name: "ConnectionName",
4398
4422
  # path: "Path",
4399
4423
  # exclusions: ["Path"],
4424
+ # enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
4400
4425
  # },
4401
4426
  # ],
4402
4427
  # mongo_db_targets: [
@@ -4716,6 +4741,7 @@ module Aws::Glue
4716
4741
  # connection_name: "ConnectionName",
4717
4742
  # path: "Path",
4718
4743
  # exclusions: ["Path"],
4744
+ # enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
4719
4745
  # },
4720
4746
  # ],
4721
4747
  # mongo_db_targets: [
@@ -4836,7 +4862,7 @@ module Aws::Glue
4836
4862
  # @!attribute [rw] configuration
4837
4863
  # Crawler configuration information. This versioned JSON string allows
4838
4864
  # users to specify aspects of a crawler's behavior. For more
4839
- # information, see [Configuring a Crawler][1].
4865
+ # information, see [Setting crawler configuration options][1].
4840
4866
  #
4841
4867
  #
4842
4868
  #
@@ -6120,6 +6146,25 @@ module Aws::Glue
6120
6146
  # database: "EnclosedInStringProperty", # required
6121
6147
  # table: "EnclosedInStringProperty", # required
6122
6148
  # },
6149
+ # dynamic_transform: {
6150
+ # name: "EnclosedInStringProperty", # required
6151
+ # transform_name: "EnclosedInStringProperty", # required
6152
+ # inputs: ["NodeId"], # required
6153
+ # parameters: [
6154
+ # {
6155
+ # name: "EnclosedInStringProperty", # required
6156
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
6157
+ # validation_rule: "EnclosedInStringProperty",
6158
+ # validation_message: "EnclosedInStringProperty",
6159
+ # value: ["EnclosedInStringProperty"],
6160
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
6161
+ # is_optional: false,
6162
+ # },
6163
+ # ],
6164
+ # function_name: "EnclosedInStringProperty", # required
6165
+ # path: "EnclosedInStringProperty", # required
6166
+ # version: "EnclosedInStringProperty",
6167
+ # },
6123
6168
  # },
6124
6169
  # },
6125
6170
  # execution_class: "FLEX", # accepts FLEX, STANDARD
@@ -9748,6 +9793,75 @@ module Aws::Glue
9748
9793
  include Aws::Structure
9749
9794
  end
9750
9795
 
9796
+ # Specifies the set of parameters needed to perform the dynamic
9797
+ # transform.
9798
+ #
9799
+ # @note When making an API call, you may pass DynamicTransform
9800
+ # data as a hash:
9801
+ #
9802
+ # {
9803
+ # name: "EnclosedInStringProperty", # required
9804
+ # transform_name: "EnclosedInStringProperty", # required
9805
+ # inputs: ["NodeId"], # required
9806
+ # parameters: [
9807
+ # {
9808
+ # name: "EnclosedInStringProperty", # required
9809
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
9810
+ # validation_rule: "EnclosedInStringProperty",
9811
+ # validation_message: "EnclosedInStringProperty",
9812
+ # value: ["EnclosedInStringProperty"],
9813
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
9814
+ # is_optional: false,
9815
+ # },
9816
+ # ],
9817
+ # function_name: "EnclosedInStringProperty", # required
9818
+ # path: "EnclosedInStringProperty", # required
9819
+ # version: "EnclosedInStringProperty",
9820
+ # }
9821
+ #
9822
+ # @!attribute [rw] name
9823
+ # Specifies the name of the dynamic transform.
9824
+ # @return [String]
9825
+ #
9826
+ # @!attribute [rw] transform_name
9827
+ # Specifies the name of the dynamic transform as it appears in the
9828
+ # Glue Studio visual editor.
9829
+ # @return [String]
9830
+ #
9831
+ # @!attribute [rw] inputs
9832
+ # Specifies the inputs for the dynamic transform that are required.
9833
+ # @return [Array<String>]
9834
+ #
9835
+ # @!attribute [rw] parameters
9836
+ # Specifies the parameters of the dynamic transform.
9837
+ # @return [Array<Types::TransformConfigParameter>]
9838
+ #
9839
+ # @!attribute [rw] function_name
9840
+ # Specifies the name of the function of the dynamic transform.
9841
+ # @return [String]
9842
+ #
9843
+ # @!attribute [rw] path
9844
+ # Specifies the path of the dynamic transform source and config files.
9845
+ # @return [String]
9846
+ #
9847
+ # @!attribute [rw] version
9848
+ # This field is not used and will be deprecated in future release.
9849
+ # @return [String]
9850
+ #
9851
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DynamicTransform AWS API Documentation
9852
+ #
9853
+ class DynamicTransform < Struct.new(
9854
+ :name,
9855
+ :transform_name,
9856
+ :inputs,
9857
+ :parameters,
9858
+ :function_name,
9859
+ :path,
9860
+ :version)
9861
+ SENSITIVE = []
9862
+ include Aws::Structure
9863
+ end
9864
+
9751
9865
  # Specifies a DynamoDB data source in the Glue Data Catalog.
9752
9866
  #
9753
9867
  # @note When making an API call, you may pass DynamoDBCatalogSource
@@ -13963,7 +14077,7 @@ module Aws::Glue
13963
14077
  end
13964
14078
 
13965
14079
  # Specifies a user-defined schema when a schema cannot be determined by
13966
- # AWS Glue.
14080
+ # Glue.
13967
14081
  #
13968
14082
  # @note When making an API call, you may pass GlueSchema
13969
14083
  # data as a hash:
@@ -14618,6 +14732,7 @@ module Aws::Glue
14618
14732
  # connection_name: "ConnectionName",
14619
14733
  # path: "Path",
14620
14734
  # exclusions: ["Path"],
14735
+ # enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
14621
14736
  # }
14622
14737
  #
14623
14738
  # @!attribute [rw] connection_name
@@ -14637,12 +14752,22 @@ module Aws::Glue
14637
14752
  # [1]: https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html
14638
14753
  # @return [Array<String>]
14639
14754
  #
14755
+ # @!attribute [rw] enable_additional_metadata
14756
+ # Specify a value of `RAWTYPES` or `COMMENTS` to enable additional
14757
+ # metadata in table responses. `RAWTYPES` provides the native-level
14758
+ # datatype. `COMMENTS` provides comments associated with a column or
14759
+ # table in the database.
14760
+ #
14761
+ # If you do not need additional metadata, keep the field empty.
14762
+ # @return [Array<String>]
14763
+ #
14640
14764
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JdbcTarget AWS API Documentation
14641
14765
  #
14642
14766
  class JdbcTarget < Struct.new(
14643
14767
  :connection_name,
14644
14768
  :path,
14645
- :exclusions)
14769
+ :exclusions,
14770
+ :enable_additional_metadata)
14646
14771
  SENSITIVE = []
14647
14772
  include Aws::Structure
14648
14773
  end
@@ -15952,6 +16077,25 @@ module Aws::Glue
15952
16077
  # database: "EnclosedInStringProperty", # required
15953
16078
  # table: "EnclosedInStringProperty", # required
15954
16079
  # },
16080
+ # dynamic_transform: {
16081
+ # name: "EnclosedInStringProperty", # required
16082
+ # transform_name: "EnclosedInStringProperty", # required
16083
+ # inputs: ["NodeId"], # required
16084
+ # parameters: [
16085
+ # {
16086
+ # name: "EnclosedInStringProperty", # required
16087
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
16088
+ # validation_rule: "EnclosedInStringProperty",
16089
+ # validation_message: "EnclosedInStringProperty",
16090
+ # value: ["EnclosedInStringProperty"],
16091
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
16092
+ # is_optional: false,
16093
+ # },
16094
+ # ],
16095
+ # function_name: "EnclosedInStringProperty", # required
16096
+ # path: "EnclosedInStringProperty", # required
16097
+ # version: "EnclosedInStringProperty",
16098
+ # },
15955
16099
  # },
15956
16100
  # },
15957
16101
  # execution_class: "FLEX", # accepts FLEX, STANDARD
@@ -23601,6 +23745,70 @@ module Aws::Glue
23601
23745
  include Aws::Structure
23602
23746
  end
23603
23747
 
23748
+ # Specifies the parameters in the config file of the dynamic transform.
23749
+ #
23750
+ # @note When making an API call, you may pass TransformConfigParameter
23751
+ # data as a hash:
23752
+ #
23753
+ # {
23754
+ # name: "EnclosedInStringProperty", # required
23755
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
23756
+ # validation_rule: "EnclosedInStringProperty",
23757
+ # validation_message: "EnclosedInStringProperty",
23758
+ # value: ["EnclosedInStringProperty"],
23759
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
23760
+ # is_optional: false,
23761
+ # }
23762
+ #
23763
+ # @!attribute [rw] name
23764
+ # Specifies the name of the parameter in the config file of the
23765
+ # dynamic transform.
23766
+ # @return [String]
23767
+ #
23768
+ # @!attribute [rw] type
23769
+ # Specifies the parameter type in the config file of the dynamic
23770
+ # transform.
23771
+ # @return [String]
23772
+ #
23773
+ # @!attribute [rw] validation_rule
23774
+ # Specifies the validation rule in the config file of the dynamic
23775
+ # transform.
23776
+ # @return [String]
23777
+ #
23778
+ # @!attribute [rw] validation_message
23779
+ # Specifies the validation message in the config file of the dynamic
23780
+ # transform.
23781
+ # @return [String]
23782
+ #
23783
+ # @!attribute [rw] value
23784
+ # Specifies the value of the parameter in the config file of the
23785
+ # dynamic transform.
23786
+ # @return [Array<String>]
23787
+ #
23788
+ # @!attribute [rw] list_type
23789
+ # Specifies the list type of the parameter in the config file of the
23790
+ # dynamic transform.
23791
+ # @return [String]
23792
+ #
23793
+ # @!attribute [rw] is_optional
23794
+ # Specifies whether the parameter is optional or not in the config
23795
+ # file of the dynamic transform.
23796
+ # @return [Boolean]
23797
+ #
23798
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TransformConfigParameter AWS API Documentation
23799
+ #
23800
+ class TransformConfigParameter < Struct.new(
23801
+ :name,
23802
+ :type,
23803
+ :validation_rule,
23804
+ :validation_message,
23805
+ :value,
23806
+ :list_type,
23807
+ :is_optional)
23808
+ SENSITIVE = []
23809
+ include Aws::Structure
23810
+ end
23811
+
23604
23812
  # The encryption-at-rest settings of the transform that apply to
23605
23813
  # accessing user data. Machine learning transforms can access user data
23606
23814
  # encrypted in Amazon S3 using KMS.
@@ -24454,6 +24662,7 @@ module Aws::Glue
24454
24662
  # connection_name: "ConnectionName",
24455
24663
  # path: "Path",
24456
24664
  # exclusions: ["Path"],
24665
+ # enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
24457
24666
  # },
24458
24667
  # ],
24459
24668
  # mongo_db_targets: [
@@ -24571,7 +24780,7 @@ module Aws::Glue
24571
24780
  # @!attribute [rw] configuration
24572
24781
  # Crawler configuration information. This versioned JSON string allows
24573
24782
  # users to specify aspects of a crawler's behavior. For more
24574
- # information, see [Configuring a Crawler][1].
24783
+ # information, see [Setting crawler configuration options][1].
24575
24784
  #
24576
24785
  #
24577
24786
  #
@@ -25684,6 +25893,25 @@ module Aws::Glue
25684
25893
  # database: "EnclosedInStringProperty", # required
25685
25894
  # table: "EnclosedInStringProperty", # required
25686
25895
  # },
25896
+ # dynamic_transform: {
25897
+ # name: "EnclosedInStringProperty", # required
25898
+ # transform_name: "EnclosedInStringProperty", # required
25899
+ # inputs: ["NodeId"], # required
25900
+ # parameters: [
25901
+ # {
25902
+ # name: "EnclosedInStringProperty", # required
25903
+ # type: "str", # required, accepts str, int, float, complex, bool, list, null
25904
+ # validation_rule: "EnclosedInStringProperty",
25905
+ # validation_message: "EnclosedInStringProperty",
25906
+ # value: ["EnclosedInStringProperty"],
25907
+ # list_type: "str", # accepts str, int, float, complex, bool, list, null
25908
+ # is_optional: false,
25909
+ # },
25910
+ # ],
25911
+ # function_name: "EnclosedInStringProperty", # required
25912
+ # path: "EnclosedInStringProperty", # required
25913
+ # version: "EnclosedInStringProperty",
25914
+ # },
25687
25915
  # },
25688
25916
  # },
25689
25917
  # execution_class: "FLEX", # accepts FLEX, STANDARD
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.123.0'
55
+ GEM_VERSION = '1.125.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.123.0
4
+ version: 1.125.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-11 00:00:00.000000000 Z
11
+ date: 2022-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core