aws-sdk-entityresolution 1.36.0 → 1.37.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-entityresolution/client.rb +69 -18
- data/lib/aws-sdk-entityresolution/client_api.rb +30 -12
- data/lib/aws-sdk-entityresolution/types.rb +192 -26
- data/lib/aws-sdk-entityresolution.rb +1 -1
- data/sig/client.rbs +13 -1
- data/sig/types.rbs +22 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5110f4aa4486f606eaa6567c8fdf5a87fff5fe42eef8b8c05acd71f7eee56794
|
4
|
+
data.tar.gz: 9f34592b8073b477016dcdbbfe83ad616b64693dca176243be91cb6fde630e67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59122ed173e486d123f527f2a2ae80ebb75b869b2e30a252d062ad7170433fa15c03b36e289ac68031dade3aad543450c4f4539b801d4455074d2004bb4f8e95
|
7
|
+
data.tar.gz: 338e6c5969cd37d394686c59c53a42bb02e333646bd4dd8086d143abc112b4b84da1675593068db1e3e655b015abb2bd1fe2b430c33d6e12ec098d16b6d2f330
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.37.0
|
@@ -592,6 +592,8 @@ module Aws::EntityResolution
|
|
592
592
|
# have a unique workflow name. To modify an existing workflow, use the
|
593
593
|
# UpdateIdMappingWorkflow API.
|
594
594
|
#
|
595
|
+
# Incremental processing is not supported for ID mapping workflows.
|
596
|
+
#
|
595
597
|
# @option params [required, String] :workflow_name
|
596
598
|
# The name of the workflow. There can't be multiple
|
597
599
|
# `IdMappingWorkflows` with the same name.
|
@@ -611,6 +613,9 @@ module Aws::EntityResolution
|
|
611
613
|
# An object which defines the ID mapping technique and any additional
|
612
614
|
# configurations.
|
613
615
|
#
|
616
|
+
# @option params [Types::IdMappingIncrementalRunConfig] :incremental_run_config
|
617
|
+
# The incremental run configuration for the ID mapping workflow.
|
618
|
+
#
|
614
619
|
# @option params [String] :role_arn
|
615
620
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
616
621
|
# assumes this role to create resources on your behalf as part of
|
@@ -627,6 +632,7 @@ module Aws::EntityResolution
|
|
627
632
|
# * {Types::CreateIdMappingWorkflowOutput#input_source_config #input_source_config} => Array<Types::IdMappingWorkflowInputSource>
|
628
633
|
# * {Types::CreateIdMappingWorkflowOutput#output_source_config #output_source_config} => Array<Types::IdMappingWorkflowOutputSource>
|
629
634
|
# * {Types::CreateIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
|
635
|
+
# * {Types::CreateIdMappingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IdMappingIncrementalRunConfig
|
630
636
|
# * {Types::CreateIdMappingWorkflowOutput#role_arn #role_arn} => String
|
631
637
|
#
|
632
638
|
# @example Request syntax with placeholder values
|
@@ -636,7 +642,7 @@ module Aws::EntityResolution
|
|
636
642
|
# description: "Description",
|
637
643
|
# input_source_config: [ # required
|
638
644
|
# {
|
639
|
-
# input_source_arn: "
|
645
|
+
# input_source_arn: "InputSourceARN", # required
|
640
646
|
# schema_name: "EntityName",
|
641
647
|
# type: "SOURCE", # accepts SOURCE, TARGET
|
642
648
|
# },
|
@@ -669,6 +675,9 @@ module Aws::EntityResolution
|
|
669
675
|
# },
|
670
676
|
# },
|
671
677
|
# },
|
678
|
+
# incremental_run_config: {
|
679
|
+
# incremental_run_type: "ON_DEMAND", # accepts ON_DEMAND
|
680
|
+
# },
|
672
681
|
# role_arn: "IdMappingRoleArn",
|
673
682
|
# tags: {
|
674
683
|
# "TagKey" => "TagValue",
|
@@ -697,6 +706,7 @@ module Aws::EntityResolution
|
|
697
706
|
# resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
698
707
|
# resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
|
699
708
|
# resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
|
709
|
+
# resp.incremental_run_config.incremental_run_type #=> String, one of "ON_DEMAND"
|
700
710
|
# resp.role_arn #=> String
|
701
711
|
#
|
702
712
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdMappingWorkflow AWS API Documentation
|
@@ -764,7 +774,7 @@ module Aws::EntityResolution
|
|
764
774
|
# description: "Description",
|
765
775
|
# input_source_config: [
|
766
776
|
# {
|
767
|
-
# input_source_arn: "
|
777
|
+
# input_source_arn: "InputSourceARN", # required
|
768
778
|
# schema_name: "EntityName",
|
769
779
|
# },
|
770
780
|
# ],
|
@@ -836,8 +846,8 @@ module Aws::EntityResolution
|
|
836
846
|
# processing job. The workflow name must be unique. To modify an
|
837
847
|
# existing workflow, use `UpdateMatchingWorkflow`.
|
838
848
|
#
|
839
|
-
# For workflows where `resolutionType` is
|
840
|
-
# processing is not supported.
|
849
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
850
|
+
# incremental processing is not supported.
|
841
851
|
#
|
842
852
|
# @option params [required, String] :workflow_name
|
843
853
|
# The name of the workflow. There can't be multiple `MatchingWorkflows`
|
@@ -863,8 +873,8 @@ module Aws::EntityResolution
|
|
863
873
|
# contains only the `incrementalRunType` field, which appears as
|
864
874
|
# "Automatic" in the console.
|
865
875
|
#
|
866
|
-
# For workflows where `resolutionType` is `ML_MATCHING`,
|
867
|
-
# processing is not supported.
|
876
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
877
|
+
# incremental processing is not supported.
|
868
878
|
#
|
869
879
|
# @option params [required, String] :role_arn
|
870
880
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
@@ -892,7 +902,7 @@ module Aws::EntityResolution
|
|
892
902
|
# description: "Description",
|
893
903
|
# input_source_config: [ # required
|
894
904
|
# {
|
895
|
-
# input_source_arn: "
|
905
|
+
# input_source_arn: "InputSourceARN", # required
|
896
906
|
# schema_name: "EntityName", # required
|
897
907
|
# apply_normalization: false,
|
898
908
|
# },
|
@@ -1262,7 +1272,7 @@ module Aws::EntityResolution
|
|
1262
1272
|
# workflow_name: "EntityName", # required
|
1263
1273
|
# records: [ # required
|
1264
1274
|
# {
|
1265
|
-
# input_source_arn: "
|
1275
|
+
# input_source_arn: "InputSourceARN", # required
|
1266
1276
|
# unique_id: "UniqueId", # required
|
1267
1277
|
# record_attribute_map: { # required
|
1268
1278
|
# "RecordAttributeMapString255KeyString" => "RecordAttributeMapString255ValueString",
|
@@ -1312,6 +1322,7 @@ module Aws::EntityResolution
|
|
1312
1322
|
# * {Types::GetIdMappingJobOutput#metrics #metrics} => Types::IdMappingJobMetrics
|
1313
1323
|
# * {Types::GetIdMappingJobOutput#error_details #error_details} => Types::ErrorDetails
|
1314
1324
|
# * {Types::GetIdMappingJobOutput#output_source_config #output_source_config} => Array<Types::IdMappingJobOutputSource>
|
1325
|
+
# * {Types::GetIdMappingJobOutput#job_type #job_type} => String
|
1315
1326
|
#
|
1316
1327
|
# @example Request syntax with placeholder values
|
1317
1328
|
#
|
@@ -1329,15 +1340,24 @@ module Aws::EntityResolution
|
|
1329
1340
|
# resp.metrics.input_records #=> Integer
|
1330
1341
|
# resp.metrics.total_records_processed #=> Integer
|
1331
1342
|
# resp.metrics.records_not_processed #=> Integer
|
1343
|
+
# resp.metrics.delete_records_processed #=> Integer
|
1332
1344
|
# resp.metrics.total_mapped_records #=> Integer
|
1333
1345
|
# resp.metrics.total_mapped_source_records #=> Integer
|
1334
1346
|
# resp.metrics.total_mapped_target_records #=> Integer
|
1335
1347
|
# resp.metrics.unique_records_loaded #=> Integer
|
1348
|
+
# resp.metrics.new_mapped_records #=> Integer
|
1349
|
+
# resp.metrics.new_mapped_source_records #=> Integer
|
1350
|
+
# resp.metrics.new_mapped_target_records #=> Integer
|
1351
|
+
# resp.metrics.new_unique_records_loaded #=> Integer
|
1352
|
+
# resp.metrics.mapped_records_removed #=> Integer
|
1353
|
+
# resp.metrics.mapped_source_records_removed #=> Integer
|
1354
|
+
# resp.metrics.mapped_target_records_removed #=> Integer
|
1336
1355
|
# resp.error_details.error_message #=> String
|
1337
1356
|
# resp.output_source_config #=> Array
|
1338
1357
|
# resp.output_source_config[0].role_arn #=> String
|
1339
1358
|
# resp.output_source_config[0].output_s3_path #=> String
|
1340
1359
|
# resp.output_source_config[0].kms_arn #=> String
|
1360
|
+
# resp.job_type #=> String, one of "BATCH", "INCREMENTAL", "DELETE_ONLY"
|
1341
1361
|
#
|
1342
1362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdMappingJob AWS API Documentation
|
1343
1363
|
#
|
@@ -1363,6 +1383,7 @@ module Aws::EntityResolution
|
|
1363
1383
|
# * {Types::GetIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
|
1364
1384
|
# * {Types::GetIdMappingWorkflowOutput#created_at #created_at} => Time
|
1365
1385
|
# * {Types::GetIdMappingWorkflowOutput#updated_at #updated_at} => Time
|
1386
|
+
# * {Types::GetIdMappingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IdMappingIncrementalRunConfig
|
1366
1387
|
# * {Types::GetIdMappingWorkflowOutput#role_arn #role_arn} => String
|
1367
1388
|
# * {Types::GetIdMappingWorkflowOutput#tags #tags} => Hash<String,String>
|
1368
1389
|
#
|
@@ -1396,6 +1417,7 @@ module Aws::EntityResolution
|
|
1396
1417
|
# resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
|
1397
1418
|
# resp.created_at #=> Time
|
1398
1419
|
# resp.updated_at #=> Time
|
1420
|
+
# resp.incremental_run_config.incremental_run_type #=> String, one of "ON_DEMAND"
|
1399
1421
|
# resp.role_arn #=> String
|
1400
1422
|
# resp.tags #=> Hash
|
1401
1423
|
# resp.tags["TagKey"] #=> String
|
@@ -1470,8 +1492,7 @@ module Aws::EntityResolution
|
|
1470
1492
|
end
|
1471
1493
|
|
1472
1494
|
# Returns the corresponding Match ID of a customer record if the record
|
1473
|
-
# has been processed in a rule-based matching workflow
|
1474
|
-
# workflow.
|
1495
|
+
# has been processed in a rule-based matching workflow.
|
1475
1496
|
#
|
1476
1497
|
# You can call this API as a dry run of an incremental load on the
|
1477
1498
|
# rule-based matching workflow.
|
@@ -1552,6 +1573,7 @@ module Aws::EntityResolution
|
|
1552
1573
|
# resp.metrics.input_records #=> Integer
|
1553
1574
|
# resp.metrics.total_records_processed #=> Integer
|
1554
1575
|
# resp.metrics.records_not_processed #=> Integer
|
1576
|
+
# resp.metrics.delete_records_processed #=> Integer
|
1555
1577
|
# resp.metrics.match_i_ds #=> Integer
|
1556
1578
|
# resp.error_details.error_message #=> String
|
1557
1579
|
# resp.output_source_config #=> Array
|
@@ -2175,10 +2197,27 @@ module Aws::EntityResolution
|
|
2175
2197
|
# @option params [Array<Types::IdMappingJobOutputSource>] :output_source_config
|
2176
2198
|
# A list of `OutputSource` objects.
|
2177
2199
|
#
|
2200
|
+
# @option params [String] :job_type
|
2201
|
+
# The job type for the ID mapping job.
|
2202
|
+
#
|
2203
|
+
# If the `jobType` value is set to `INCREMENTAL`, only new or changed
|
2204
|
+
# data is processed since the last job run. This is the default value if
|
2205
|
+
# the `CreateIdMappingWorkflow` API is configured with an
|
2206
|
+
# `incrementalRunConfig`.
|
2207
|
+
#
|
2208
|
+
# If the `jobType` value is set to `BATCH`, all data is processed from
|
2209
|
+
# the input source, regardless of previous job runs. This is the default
|
2210
|
+
# value if the `CreateIdMappingWorkflow` API isn't configured with an
|
2211
|
+
# `incrementalRunConfig`.
|
2212
|
+
#
|
2213
|
+
# If the `jobType` value is set to `DELETE_ONLY`, only deletion requests
|
2214
|
+
# from `BatchDeleteUniqueIds` are processed.
|
2215
|
+
#
|
2178
2216
|
# @return [Types::StartIdMappingJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2179
2217
|
#
|
2180
2218
|
# * {Types::StartIdMappingJobOutput#job_id #job_id} => String
|
2181
2219
|
# * {Types::StartIdMappingJobOutput#output_source_config #output_source_config} => Array<Types::IdMappingJobOutputSource>
|
2220
|
+
# * {Types::StartIdMappingJobOutput#job_type #job_type} => String
|
2182
2221
|
#
|
2183
2222
|
# @example Request syntax with placeholder values
|
2184
2223
|
#
|
@@ -2191,6 +2230,7 @@ module Aws::EntityResolution
|
|
2191
2230
|
# kms_arn: "KMSArn",
|
2192
2231
|
# },
|
2193
2232
|
# ],
|
2233
|
+
# job_type: "BATCH", # accepts BATCH, INCREMENTAL, DELETE_ONLY
|
2194
2234
|
# })
|
2195
2235
|
#
|
2196
2236
|
# @example Response structure
|
@@ -2200,6 +2240,7 @@ module Aws::EntityResolution
|
|
2200
2240
|
# resp.output_source_config[0].role_arn #=> String
|
2201
2241
|
# resp.output_source_config[0].output_s3_path #=> String
|
2202
2242
|
# resp.output_source_config[0].kms_arn #=> String
|
2243
|
+
# resp.job_type #=> String, one of "BATCH", "INCREMENTAL", "DELETE_ONLY"
|
2203
2244
|
#
|
2204
2245
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/StartIdMappingJob AWS API Documentation
|
2205
2246
|
#
|
@@ -2311,6 +2352,8 @@ module Aws::EntityResolution
|
|
2311
2352
|
# of a `POST` request, and the `IdMappingWorkflow` must already exist
|
2312
2353
|
# for the method to succeed.
|
2313
2354
|
#
|
2355
|
+
# Incremental processing is not supported for ID mapping workflows.
|
2356
|
+
#
|
2314
2357
|
# @option params [required, String] :workflow_name
|
2315
2358
|
# The name of the workflow.
|
2316
2359
|
#
|
@@ -2329,6 +2372,9 @@ module Aws::EntityResolution
|
|
2329
2372
|
# An object which defines the ID mapping technique and any additional
|
2330
2373
|
# configurations.
|
2331
2374
|
#
|
2375
|
+
# @option params [Types::IdMappingIncrementalRunConfig] :incremental_run_config
|
2376
|
+
# The incremental run configuration for the update ID mapping workflow.
|
2377
|
+
#
|
2332
2378
|
# @option params [String] :role_arn
|
2333
2379
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
2334
2380
|
# assumes this role to access Amazon Web Services resources on your
|
@@ -2342,6 +2388,7 @@ module Aws::EntityResolution
|
|
2342
2388
|
# * {Types::UpdateIdMappingWorkflowOutput#input_source_config #input_source_config} => Array<Types::IdMappingWorkflowInputSource>
|
2343
2389
|
# * {Types::UpdateIdMappingWorkflowOutput#output_source_config #output_source_config} => Array<Types::IdMappingWorkflowOutputSource>
|
2344
2390
|
# * {Types::UpdateIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
|
2391
|
+
# * {Types::UpdateIdMappingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IdMappingIncrementalRunConfig
|
2345
2392
|
# * {Types::UpdateIdMappingWorkflowOutput#role_arn #role_arn} => String
|
2346
2393
|
#
|
2347
2394
|
# @example Request syntax with placeholder values
|
@@ -2351,7 +2398,7 @@ module Aws::EntityResolution
|
|
2351
2398
|
# description: "Description",
|
2352
2399
|
# input_source_config: [ # required
|
2353
2400
|
# {
|
2354
|
-
# input_source_arn: "
|
2401
|
+
# input_source_arn: "InputSourceARN", # required
|
2355
2402
|
# schema_name: "EntityName",
|
2356
2403
|
# type: "SOURCE", # accepts SOURCE, TARGET
|
2357
2404
|
# },
|
@@ -2384,6 +2431,9 @@ module Aws::EntityResolution
|
|
2384
2431
|
# },
|
2385
2432
|
# },
|
2386
2433
|
# },
|
2434
|
+
# incremental_run_config: {
|
2435
|
+
# incremental_run_type: "ON_DEMAND", # accepts ON_DEMAND
|
2436
|
+
# },
|
2387
2437
|
# role_arn: "IdMappingRoleArn",
|
2388
2438
|
# })
|
2389
2439
|
#
|
@@ -2409,6 +2459,7 @@ module Aws::EntityResolution
|
|
2409
2459
|
# resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
2410
2460
|
# resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
|
2411
2461
|
# resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
|
2462
|
+
# resp.incremental_run_config.incremental_run_type #=> String, one of "ON_DEMAND"
|
2412
2463
|
# resp.role_arn #=> String
|
2413
2464
|
#
|
2414
2465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdMappingWorkflow AWS API Documentation
|
@@ -2460,7 +2511,7 @@ module Aws::EntityResolution
|
|
2460
2511
|
# description: "Description",
|
2461
2512
|
# input_source_config: [
|
2462
2513
|
# {
|
2463
|
-
# input_source_arn: "
|
2514
|
+
# input_source_arn: "InputSourceARN", # required
|
2464
2515
|
# schema_name: "EntityName",
|
2465
2516
|
# },
|
2466
2517
|
# ],
|
@@ -2525,8 +2576,8 @@ module Aws::EntityResolution
|
|
2525
2576
|
# Updates an existing matching workflow. The workflow must already exist
|
2526
2577
|
# for this operation to succeed.
|
2527
2578
|
#
|
2528
|
-
# For workflows where `resolutionType` is
|
2529
|
-
# processing is not supported.
|
2579
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
2580
|
+
# incremental processing is not supported.
|
2530
2581
|
#
|
2531
2582
|
# @option params [required, String] :workflow_name
|
2532
2583
|
# The name of the workflow to be retrieved.
|
@@ -2551,8 +2602,8 @@ module Aws::EntityResolution
|
|
2551
2602
|
# contains only the `incrementalRunType` field, which appears as
|
2552
2603
|
# "Automatic" in the console.
|
2553
2604
|
#
|
2554
|
-
# For workflows where `resolutionType` is `ML_MATCHING`,
|
2555
|
-
# processing is not supported.
|
2605
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
2606
|
+
# incremental processing is not supported.
|
2556
2607
|
#
|
2557
2608
|
# @option params [required, String] :role_arn
|
2558
2609
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
@@ -2576,7 +2627,7 @@ module Aws::EntityResolution
|
|
2576
2627
|
# description: "Description",
|
2577
2628
|
# input_source_config: [ # required
|
2578
2629
|
# {
|
2579
|
-
# input_source_arn: "
|
2630
|
+
# input_source_arn: "InputSourceARN", # required
|
2580
2631
|
# schema_name: "EntityName", # required
|
2581
2632
|
# apply_normalization: false,
|
2582
2633
|
# },
|
@@ -2752,7 +2803,7 @@ module Aws::EntityResolution
|
|
2752
2803
|
tracer: tracer
|
2753
2804
|
)
|
2754
2805
|
context[:gem_name] = 'aws-sdk-entityresolution'
|
2755
|
-
context[:gem_version] = '1.
|
2806
|
+
context[:gem_version] = '1.37.0'
|
2756
2807
|
Seahorse::Client::Request.new(handlers, context)
|
2757
2808
|
end
|
2758
2809
|
|
@@ -60,7 +60,6 @@ module Aws::EntityResolution
|
|
60
60
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
61
61
|
ExceedsLimitException = Shapes::StructureShape.new(name: 'ExceedsLimitException')
|
62
62
|
FailedRecord = Shapes::StructureShape.new(name: 'FailedRecord')
|
63
|
-
FailedRecordInputSourceARNString = Shapes::StringShape.new(name: 'FailedRecordInputSourceARNString')
|
64
63
|
FailedRecordsList = Shapes::ListShape.new(name: 'FailedRecordsList')
|
65
64
|
GenerateMatchIdInput = Shapes::StructureShape.new(name: 'GenerateMatchIdInput')
|
66
65
|
GenerateMatchIdInputRecordsList = Shapes::ListShape.new(name: 'GenerateMatchIdInputRecordsList')
|
@@ -84,6 +83,8 @@ module Aws::EntityResolution
|
|
84
83
|
GetSchemaMappingInput = Shapes::StructureShape.new(name: 'GetSchemaMappingInput')
|
85
84
|
GetSchemaMappingOutput = Shapes::StructureShape.new(name: 'GetSchemaMappingOutput')
|
86
85
|
HeaderSafeUniqueId = Shapes::StringShape.new(name: 'HeaderSafeUniqueId')
|
86
|
+
IdMappingIncrementalRunConfig = Shapes::StructureShape.new(name: 'IdMappingIncrementalRunConfig')
|
87
|
+
IdMappingIncrementalRunType = Shapes::StringShape.new(name: 'IdMappingIncrementalRunType')
|
87
88
|
IdMappingJobMetrics = Shapes::StructureShape.new(name: 'IdMappingJobMetrics')
|
88
89
|
IdMappingJobOutputSource = Shapes::StructureShape.new(name: 'IdMappingJobOutputSource')
|
89
90
|
IdMappingJobOutputSourceConfig = Shapes::ListShape.new(name: 'IdMappingJobOutputSourceConfig')
|
@@ -95,7 +96,6 @@ module Aws::EntityResolution
|
|
95
96
|
IdMappingWorkflowArn = Shapes::StringShape.new(name: 'IdMappingWorkflowArn')
|
96
97
|
IdMappingWorkflowInputSource = Shapes::StructureShape.new(name: 'IdMappingWorkflowInputSource')
|
97
98
|
IdMappingWorkflowInputSourceConfig = Shapes::ListShape.new(name: 'IdMappingWorkflowInputSourceConfig')
|
98
|
-
IdMappingWorkflowInputSourceInputSourceARNString = Shapes::StringShape.new(name: 'IdMappingWorkflowInputSourceInputSourceARNString')
|
99
99
|
IdMappingWorkflowList = Shapes::ListShape.new(name: 'IdMappingWorkflowList')
|
100
100
|
IdMappingWorkflowOutputSource = Shapes::StructureShape.new(name: 'IdMappingWorkflowOutputSource')
|
101
101
|
IdMappingWorkflowOutputSourceConfig = Shapes::ListShape.new(name: 'IdMappingWorkflowOutputSourceConfig')
|
@@ -109,15 +109,14 @@ module Aws::EntityResolution
|
|
109
109
|
IdNamespaceIdMappingWorkflowPropertiesList = Shapes::ListShape.new(name: 'IdNamespaceIdMappingWorkflowPropertiesList')
|
110
110
|
IdNamespaceInputSource = Shapes::StructureShape.new(name: 'IdNamespaceInputSource')
|
111
111
|
IdNamespaceInputSourceConfig = Shapes::ListShape.new(name: 'IdNamespaceInputSourceConfig')
|
112
|
-
IdNamespaceInputSourceInputSourceARNString = Shapes::StringShape.new(name: 'IdNamespaceInputSourceInputSourceARNString')
|
113
112
|
IdNamespaceList = Shapes::ListShape.new(name: 'IdNamespaceList')
|
114
113
|
IdNamespaceSummary = Shapes::StructureShape.new(name: 'IdNamespaceSummary')
|
115
114
|
IdNamespaceType = Shapes::StringShape.new(name: 'IdNamespaceType')
|
116
115
|
IncrementalRunConfig = Shapes::StructureShape.new(name: 'IncrementalRunConfig')
|
117
116
|
IncrementalRunType = Shapes::StringShape.new(name: 'IncrementalRunType')
|
118
117
|
InputSource = Shapes::StructureShape.new(name: 'InputSource')
|
118
|
+
InputSourceARN = Shapes::StringShape.new(name: 'InputSourceARN')
|
119
119
|
InputSourceConfig = Shapes::ListShape.new(name: 'InputSourceConfig')
|
120
|
-
InputSourceInputSourceARNString = Shapes::StringShape.new(name: 'InputSourceInputSourceARNString')
|
121
120
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
122
121
|
IntermediateSourceConfiguration = Shapes::StructureShape.new(name: 'IntermediateSourceConfiguration')
|
123
122
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
@@ -128,6 +127,7 @@ module Aws::EntityResolution
|
|
128
127
|
JobOutputSourceConfig = Shapes::ListShape.new(name: 'JobOutputSourceConfig')
|
129
128
|
JobStatus = Shapes::StringShape.new(name: 'JobStatus')
|
130
129
|
JobSummary = Shapes::StructureShape.new(name: 'JobSummary')
|
130
|
+
JobType = Shapes::StringShape.new(name: 'JobType')
|
131
131
|
KMSArn = Shapes::StringShape.new(name: 'KMSArn')
|
132
132
|
ListIdMappingJobsInput = Shapes::StructureShape.new(name: 'ListIdMappingJobsInput')
|
133
133
|
ListIdMappingJobsInputMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListIdMappingJobsInputMaxResultsInteger')
|
@@ -156,7 +156,6 @@ module Aws::EntityResolution
|
|
156
156
|
MatchGroupsList = Shapes::ListShape.new(name: 'MatchGroupsList')
|
157
157
|
MatchPurpose = Shapes::StringShape.new(name: 'MatchPurpose')
|
158
158
|
MatchedRecord = Shapes::StructureShape.new(name: 'MatchedRecord')
|
159
|
-
MatchedRecordInputSourceARNString = Shapes::StringShape.new(name: 'MatchedRecordInputSourceARNString')
|
160
159
|
MatchedRecordsList = Shapes::ListShape.new(name: 'MatchedRecordsList')
|
161
160
|
MatchingWorkflowArn = Shapes::StringShape.new(name: 'MatchingWorkflowArn')
|
162
161
|
MatchingWorkflowList = Shapes::ListShape.new(name: 'MatchingWorkflowList')
|
@@ -193,7 +192,6 @@ module Aws::EntityResolution
|
|
193
192
|
RecordAttributeMapString255KeyString = Shapes::StringShape.new(name: 'RecordAttributeMapString255KeyString')
|
194
193
|
RecordAttributeMapString255ValueString = Shapes::StringShape.new(name: 'RecordAttributeMapString255ValueString')
|
195
194
|
RecordAttributeMapValueString = Shapes::StringShape.new(name: 'RecordAttributeMapValueString')
|
196
|
-
RecordInputSourceARNString = Shapes::StringShape.new(name: 'RecordInputSourceARNString')
|
197
195
|
RecordMatchingModel = Shapes::StringShape.new(name: 'RecordMatchingModel')
|
198
196
|
RecordMatchingModelList = Shapes::ListShape.new(name: 'RecordMatchingModelList')
|
199
197
|
RequiredBucketActionsList = Shapes::ListShape.new(name: 'RequiredBucketActionsList')
|
@@ -293,6 +291,7 @@ module Aws::EntityResolution
|
|
293
291
|
CreateIdMappingWorkflowInput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
294
292
|
CreateIdMappingWorkflowInput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
295
293
|
CreateIdMappingWorkflowInput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
294
|
+
CreateIdMappingWorkflowInput.add_member(:incremental_run_config, Shapes::ShapeRef.new(shape: IdMappingIncrementalRunConfig, location_name: "incrementalRunConfig"))
|
296
295
|
CreateIdMappingWorkflowInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
297
296
|
CreateIdMappingWorkflowInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
298
297
|
CreateIdMappingWorkflowInput.struct_class = Types::CreateIdMappingWorkflowInput
|
@@ -303,6 +302,7 @@ module Aws::EntityResolution
|
|
303
302
|
CreateIdMappingWorkflowOutput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
304
303
|
CreateIdMappingWorkflowOutput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
305
304
|
CreateIdMappingWorkflowOutput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
305
|
+
CreateIdMappingWorkflowOutput.add_member(:incremental_run_config, Shapes::ShapeRef.new(shape: IdMappingIncrementalRunConfig, location_name: "incrementalRunConfig"))
|
306
306
|
CreateIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
307
307
|
CreateIdMappingWorkflowOutput.struct_class = Types::CreateIdMappingWorkflowOutput
|
308
308
|
|
@@ -413,7 +413,7 @@ module Aws::EntityResolution
|
|
413
413
|
ExceedsLimitException.add_member(:quota_value, Shapes::ShapeRef.new(shape: Integer, location_name: "quotaValue"))
|
414
414
|
ExceedsLimitException.struct_class = Types::ExceedsLimitException
|
415
415
|
|
416
|
-
FailedRecord.add_member(:input_source_arn, Shapes::ShapeRef.new(shape:
|
416
|
+
FailedRecord.add_member(:input_source_arn, Shapes::ShapeRef.new(shape: InputSourceARN, required: true, location_name: "inputSourceARN"))
|
417
417
|
FailedRecord.add_member(:unique_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "uniqueId"))
|
418
418
|
FailedRecord.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "errorMessage"))
|
419
419
|
FailedRecord.struct_class = Types::FailedRecord
|
@@ -442,6 +442,7 @@ module Aws::EntityResolution
|
|
442
442
|
GetIdMappingJobOutput.add_member(:metrics, Shapes::ShapeRef.new(shape: IdMappingJobMetrics, location_name: "metrics"))
|
443
443
|
GetIdMappingJobOutput.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "errorDetails"))
|
444
444
|
GetIdMappingJobOutput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingJobOutputSourceConfig, location_name: "outputSourceConfig"))
|
445
|
+
GetIdMappingJobOutput.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "jobType"))
|
445
446
|
GetIdMappingJobOutput.struct_class = Types::GetIdMappingJobOutput
|
446
447
|
|
447
448
|
GetIdMappingWorkflowInput.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location: "uri", location_name: "workflowName"))
|
@@ -455,6 +456,7 @@ module Aws::EntityResolution
|
|
455
456
|
GetIdMappingWorkflowOutput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
456
457
|
GetIdMappingWorkflowOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
457
458
|
GetIdMappingWorkflowOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
459
|
+
GetIdMappingWorkflowOutput.add_member(:incremental_run_config, Shapes::ShapeRef.new(shape: IdMappingIncrementalRunConfig, location_name: "incrementalRunConfig"))
|
458
460
|
GetIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
459
461
|
GetIdMappingWorkflowOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
460
462
|
GetIdMappingWorkflowOutput.struct_class = Types::GetIdMappingWorkflowOutput
|
@@ -552,13 +554,24 @@ module Aws::EntityResolution
|
|
552
554
|
GetSchemaMappingOutput.add_member(:has_workflows, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "hasWorkflows"))
|
553
555
|
GetSchemaMappingOutput.struct_class = Types::GetSchemaMappingOutput
|
554
556
|
|
557
|
+
IdMappingIncrementalRunConfig.add_member(:incremental_run_type, Shapes::ShapeRef.new(shape: IdMappingIncrementalRunType, location_name: "incrementalRunType"))
|
558
|
+
IdMappingIncrementalRunConfig.struct_class = Types::IdMappingIncrementalRunConfig
|
559
|
+
|
555
560
|
IdMappingJobMetrics.add_member(:input_records, Shapes::ShapeRef.new(shape: Integer, location_name: "inputRecords"))
|
556
561
|
IdMappingJobMetrics.add_member(:total_records_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "totalRecordsProcessed"))
|
557
562
|
IdMappingJobMetrics.add_member(:records_not_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "recordsNotProcessed"))
|
563
|
+
IdMappingJobMetrics.add_member(:delete_records_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "deleteRecordsProcessed"))
|
558
564
|
IdMappingJobMetrics.add_member(:total_mapped_records, Shapes::ShapeRef.new(shape: Integer, location_name: "totalMappedRecords"))
|
559
565
|
IdMappingJobMetrics.add_member(:total_mapped_source_records, Shapes::ShapeRef.new(shape: Integer, location_name: "totalMappedSourceRecords"))
|
560
566
|
IdMappingJobMetrics.add_member(:total_mapped_target_records, Shapes::ShapeRef.new(shape: Integer, location_name: "totalMappedTargetRecords"))
|
561
567
|
IdMappingJobMetrics.add_member(:unique_records_loaded, Shapes::ShapeRef.new(shape: Integer, location_name: "uniqueRecordsLoaded"))
|
568
|
+
IdMappingJobMetrics.add_member(:new_mapped_records, Shapes::ShapeRef.new(shape: Integer, location_name: "newMappedRecords"))
|
569
|
+
IdMappingJobMetrics.add_member(:new_mapped_source_records, Shapes::ShapeRef.new(shape: Integer, location_name: "newMappedSourceRecords"))
|
570
|
+
IdMappingJobMetrics.add_member(:new_mapped_target_records, Shapes::ShapeRef.new(shape: Integer, location_name: "newMappedTargetRecords"))
|
571
|
+
IdMappingJobMetrics.add_member(:new_unique_records_loaded, Shapes::ShapeRef.new(shape: Integer, location_name: "newUniqueRecordsLoaded"))
|
572
|
+
IdMappingJobMetrics.add_member(:mapped_records_removed, Shapes::ShapeRef.new(shape: Integer, location_name: "mappedRecordsRemoved"))
|
573
|
+
IdMappingJobMetrics.add_member(:mapped_source_records_removed, Shapes::ShapeRef.new(shape: Integer, location_name: "mappedSourceRecordsRemoved"))
|
574
|
+
IdMappingJobMetrics.add_member(:mapped_target_records_removed, Shapes::ShapeRef.new(shape: Integer, location_name: "mappedTargetRecordsRemoved"))
|
562
575
|
IdMappingJobMetrics.struct_class = Types::IdMappingJobMetrics
|
563
576
|
|
564
577
|
IdMappingJobOutputSource.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
@@ -581,7 +594,7 @@ module Aws::EntityResolution
|
|
581
594
|
IdMappingTechniques.add_member(:provider_properties, Shapes::ShapeRef.new(shape: ProviderProperties, location_name: "providerProperties"))
|
582
595
|
IdMappingTechniques.struct_class = Types::IdMappingTechniques
|
583
596
|
|
584
|
-
IdMappingWorkflowInputSource.add_member(:input_source_arn, Shapes::ShapeRef.new(shape:
|
597
|
+
IdMappingWorkflowInputSource.add_member(:input_source_arn, Shapes::ShapeRef.new(shape: InputSourceARN, required: true, location_name: "inputSourceARN"))
|
585
598
|
IdMappingWorkflowInputSource.add_member(:schema_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "schemaName"))
|
586
599
|
IdMappingWorkflowInputSource.add_member(:type, Shapes::ShapeRef.new(shape: IdNamespaceType, location_name: "type"))
|
587
600
|
IdMappingWorkflowInputSource.struct_class = Types::IdMappingWorkflowInputSource
|
@@ -616,7 +629,7 @@ module Aws::EntityResolution
|
|
616
629
|
|
617
630
|
IdNamespaceIdMappingWorkflowPropertiesList.member = Shapes::ShapeRef.new(shape: IdNamespaceIdMappingWorkflowProperties)
|
618
631
|
|
619
|
-
IdNamespaceInputSource.add_member(:input_source_arn, Shapes::ShapeRef.new(shape:
|
632
|
+
IdNamespaceInputSource.add_member(:input_source_arn, Shapes::ShapeRef.new(shape: InputSourceARN, required: true, location_name: "inputSourceARN"))
|
620
633
|
IdNamespaceInputSource.add_member(:schema_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "schemaName"))
|
621
634
|
IdNamespaceInputSource.struct_class = Types::IdNamespaceInputSource
|
622
635
|
|
@@ -636,7 +649,7 @@ module Aws::EntityResolution
|
|
636
649
|
IncrementalRunConfig.add_member(:incremental_run_type, Shapes::ShapeRef.new(shape: IncrementalRunType, location_name: "incrementalRunType"))
|
637
650
|
IncrementalRunConfig.struct_class = Types::IncrementalRunConfig
|
638
651
|
|
639
|
-
InputSource.add_member(:input_source_arn, Shapes::ShapeRef.new(shape:
|
652
|
+
InputSource.add_member(:input_source_arn, Shapes::ShapeRef.new(shape: InputSourceARN, required: true, location_name: "inputSourceARN"))
|
640
653
|
InputSource.add_member(:schema_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "schemaName"))
|
641
654
|
InputSource.add_member(:apply_normalization, Shapes::ShapeRef.new(shape: Boolean, location_name: "applyNormalization"))
|
642
655
|
InputSource.struct_class = Types::InputSource
|
@@ -654,6 +667,7 @@ module Aws::EntityResolution
|
|
654
667
|
JobMetrics.add_member(:input_records, Shapes::ShapeRef.new(shape: Integer, location_name: "inputRecords"))
|
655
668
|
JobMetrics.add_member(:total_records_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "totalRecordsProcessed"))
|
656
669
|
JobMetrics.add_member(:records_not_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "recordsNotProcessed"))
|
670
|
+
JobMetrics.add_member(:delete_records_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "deleteRecordsProcessed"))
|
657
671
|
JobMetrics.add_member(:match_i_ds, Shapes::ShapeRef.new(shape: Integer, location_name: "matchIDs"))
|
658
672
|
JobMetrics.struct_class = Types::JobMetrics
|
659
673
|
|
@@ -742,7 +756,7 @@ module Aws::EntityResolution
|
|
742
756
|
|
743
757
|
MatchGroupsList.member = Shapes::ShapeRef.new(shape: MatchGroup)
|
744
758
|
|
745
|
-
MatchedRecord.add_member(:input_source_arn, Shapes::ShapeRef.new(shape:
|
759
|
+
MatchedRecord.add_member(:input_source_arn, Shapes::ShapeRef.new(shape: InputSourceARN, required: true, location_name: "inputSourceARN"))
|
746
760
|
MatchedRecord.add_member(:record_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "recordId"))
|
747
761
|
MatchedRecord.struct_class = Types::MatchedRecord
|
748
762
|
|
@@ -840,7 +854,7 @@ module Aws::EntityResolution
|
|
840
854
|
PutPolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "policy"))
|
841
855
|
PutPolicyOutput.struct_class = Types::PutPolicyOutput
|
842
856
|
|
843
|
-
Record.add_member(:input_source_arn, Shapes::ShapeRef.new(shape:
|
857
|
+
Record.add_member(:input_source_arn, Shapes::ShapeRef.new(shape: InputSourceARN, required: true, location_name: "inputSourceARN"))
|
844
858
|
Record.add_member(:unique_id, Shapes::ShapeRef.new(shape: UniqueId, required: true, location_name: "uniqueId"))
|
845
859
|
Record.add_member(:record_attribute_map, Shapes::ShapeRef.new(shape: RecordAttributeMapString255, required: true, location_name: "recordAttributeMap"))
|
846
860
|
Record.struct_class = Types::Record
|
@@ -911,10 +925,12 @@ module Aws::EntityResolution
|
|
911
925
|
|
912
926
|
StartIdMappingJobInput.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityNameOrIdMappingWorkflowArn, required: true, location: "uri", location_name: "workflowName"))
|
913
927
|
StartIdMappingJobInput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingJobOutputSourceConfig, location_name: "outputSourceConfig"))
|
928
|
+
StartIdMappingJobInput.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "jobType"))
|
914
929
|
StartIdMappingJobInput.struct_class = Types::StartIdMappingJobInput
|
915
930
|
|
916
931
|
StartIdMappingJobOutput.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "jobId"))
|
917
932
|
StartIdMappingJobOutput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingJobOutputSourceConfig, location_name: "outputSourceConfig"))
|
933
|
+
StartIdMappingJobOutput.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "jobType"))
|
918
934
|
StartIdMappingJobOutput.struct_class = Types::StartIdMappingJobOutput
|
919
935
|
|
920
936
|
StartMatchingJobInput.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location: "uri", location_name: "workflowName"))
|
@@ -954,6 +970,7 @@ module Aws::EntityResolution
|
|
954
970
|
UpdateIdMappingWorkflowInput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
955
971
|
UpdateIdMappingWorkflowInput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
956
972
|
UpdateIdMappingWorkflowInput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
973
|
+
UpdateIdMappingWorkflowInput.add_member(:incremental_run_config, Shapes::ShapeRef.new(shape: IdMappingIncrementalRunConfig, location_name: "incrementalRunConfig"))
|
957
974
|
UpdateIdMappingWorkflowInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
958
975
|
UpdateIdMappingWorkflowInput.struct_class = Types::UpdateIdMappingWorkflowInput
|
959
976
|
|
@@ -963,6 +980,7 @@ module Aws::EntityResolution
|
|
963
980
|
UpdateIdMappingWorkflowOutput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
964
981
|
UpdateIdMappingWorkflowOutput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
965
982
|
UpdateIdMappingWorkflowOutput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
983
|
+
UpdateIdMappingWorkflowOutput.add_member(:incremental_run_config, Shapes::ShapeRef.new(shape: IdMappingIncrementalRunConfig, location_name: "incrementalRunConfig"))
|
966
984
|
UpdateIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
967
985
|
UpdateIdMappingWorkflowOutput.struct_class = Types::UpdateIdMappingWorkflowOutput
|
968
986
|
|
@@ -144,7 +144,7 @@ module Aws::EntityResolution
|
|
144
144
|
include Aws::Structure
|
145
145
|
end
|
146
146
|
|
147
|
-
# The request
|
147
|
+
# The request couldn't be processed because of conflict in the current
|
148
148
|
# state of the resource. Example: Workflow already exists, Schema
|
149
149
|
# already exists, Workflow is currently running, etc.
|
150
150
|
#
|
@@ -183,6 +183,10 @@ module Aws::EntityResolution
|
|
183
183
|
# configurations.
|
184
184
|
# @return [Types::IdMappingTechniques]
|
185
185
|
#
|
186
|
+
# @!attribute [rw] incremental_run_config
|
187
|
+
# The incremental run configuration for the ID mapping workflow.
|
188
|
+
# @return [Types::IdMappingIncrementalRunConfig]
|
189
|
+
#
|
186
190
|
# @!attribute [rw] role_arn
|
187
191
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
188
192
|
# assumes this role to create resources on your behalf as part of
|
@@ -202,6 +206,7 @@ module Aws::EntityResolution
|
|
202
206
|
:input_source_config,
|
203
207
|
:output_source_config,
|
204
208
|
:id_mapping_techniques,
|
209
|
+
:incremental_run_config,
|
205
210
|
:role_arn,
|
206
211
|
:tags)
|
207
212
|
SENSITIVE = []
|
@@ -236,6 +241,10 @@ module Aws::EntityResolution
|
|
236
241
|
# configurations.
|
237
242
|
# @return [Types::IdMappingTechniques]
|
238
243
|
#
|
244
|
+
# @!attribute [rw] incremental_run_config
|
245
|
+
# The incremental run configuration for the ID mapping workflow.
|
246
|
+
# @return [Types::IdMappingIncrementalRunConfig]
|
247
|
+
#
|
239
248
|
# @!attribute [rw] role_arn
|
240
249
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
241
250
|
# assumes this role to create resources on your behalf as part of
|
@@ -251,6 +260,7 @@ module Aws::EntityResolution
|
|
251
260
|
:input_source_config,
|
252
261
|
:output_source_config,
|
253
262
|
:id_mapping_techniques,
|
263
|
+
:incremental_run_config,
|
254
264
|
:role_arn)
|
255
265
|
SENSITIVE = []
|
256
266
|
include Aws::Structure
|
@@ -408,8 +418,8 @@ module Aws::EntityResolution
|
|
408
418
|
# object contains only the `incrementalRunType` field, which appears
|
409
419
|
# as "Automatic" in the console.
|
410
420
|
#
|
411
|
-
# For workflows where `resolutionType` is `ML_MATCHING`,
|
412
|
-
# processing is not supported.
|
421
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
422
|
+
# incremental processing is not supported.
|
413
423
|
# @return [Types::IncrementalRunConfig]
|
414
424
|
#
|
415
425
|
# @!attribute [rw] role_arn
|
@@ -689,14 +699,21 @@ module Aws::EntityResolution
|
|
689
699
|
include Aws::Structure
|
690
700
|
end
|
691
701
|
|
692
|
-
# The
|
702
|
+
# The error information provided when the delete unique ID operation
|
703
|
+
# doesn't complete.
|
693
704
|
#
|
694
705
|
# @!attribute [rw] unique_id
|
695
|
-
# The unique ID that
|
706
|
+
# The unique ID that couldn't be deleted.
|
696
707
|
# @return [String]
|
697
708
|
#
|
698
709
|
# @!attribute [rw] error_type
|
699
|
-
# The error type for the
|
710
|
+
# The error type for the delete unique ID operation.
|
711
|
+
#
|
712
|
+
# The `SERVICE_ERROR` value indicates that an internal service-side
|
713
|
+
# problem occurred during the deletion operation.
|
714
|
+
#
|
715
|
+
# The `VALIDATION_ERROR` value indicates that the deletion operation
|
716
|
+
# couldn't complete because of invalid input parameters or data.
|
700
717
|
# @return [String]
|
701
718
|
#
|
702
719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeleteUniqueIdError AWS API Documentation
|
@@ -888,6 +905,22 @@ module Aws::EntityResolution
|
|
888
905
|
# A list of `OutputSource` objects.
|
889
906
|
# @return [Array<Types::IdMappingJobOutputSource>]
|
890
907
|
#
|
908
|
+
# @!attribute [rw] job_type
|
909
|
+
# The job type of the ID mapping job.
|
910
|
+
#
|
911
|
+
# A value of `INCREMENTAL` indicates that only new or changed data was
|
912
|
+
# processed since the last job run. This is the default job type if
|
913
|
+
# the workflow was created with an `incrementalRunConfig`.
|
914
|
+
#
|
915
|
+
# A value of `BATCH` indicates that all data was processed from the
|
916
|
+
# input source, regardless of previous job runs. This is the default
|
917
|
+
# job type if the workflow wasn't created with an
|
918
|
+
# `incrementalRunConfig`.
|
919
|
+
#
|
920
|
+
# A value of `DELETE_ONLY` indicates that only deletion requests from
|
921
|
+
# `BatchDeleteUniqueIds` were processed.
|
922
|
+
# @return [String]
|
923
|
+
#
|
891
924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdMappingJobOutput AWS API Documentation
|
892
925
|
#
|
893
926
|
class GetIdMappingJobOutput < Struct.new(
|
@@ -897,7 +930,8 @@ module Aws::EntityResolution
|
|
897
930
|
:end_time,
|
898
931
|
:metrics,
|
899
932
|
:error_details,
|
900
|
-
:output_source_config
|
933
|
+
:output_source_config,
|
934
|
+
:job_type)
|
901
935
|
SENSITIVE = []
|
902
936
|
include Aws::Structure
|
903
937
|
end
|
@@ -950,6 +984,10 @@ module Aws::EntityResolution
|
|
950
984
|
# The timestamp of when the workflow was last updated.
|
951
985
|
# @return [Time]
|
952
986
|
#
|
987
|
+
# @!attribute [rw] incremental_run_config
|
988
|
+
# The incremental run configuration for the ID mapping workflow.
|
989
|
+
# @return [Types::IdMappingIncrementalRunConfig]
|
990
|
+
#
|
953
991
|
# @!attribute [rw] role_arn
|
954
992
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
955
993
|
# assumes this role to access Amazon Web Services resources on your
|
@@ -972,6 +1010,7 @@ module Aws::EntityResolution
|
|
972
1010
|
:id_mapping_techniques,
|
973
1011
|
:created_at,
|
974
1012
|
:updated_at,
|
1013
|
+
:incremental_run_config,
|
975
1014
|
:role_arn,
|
976
1015
|
:tags)
|
977
1016
|
SENSITIVE = []
|
@@ -1441,6 +1480,24 @@ module Aws::EntityResolution
|
|
1441
1480
|
include Aws::Structure
|
1442
1481
|
end
|
1443
1482
|
|
1483
|
+
# Incremental run configuration for an ID mapping workflow.
|
1484
|
+
#
|
1485
|
+
# @!attribute [rw] incremental_run_type
|
1486
|
+
# The incremental run type for an ID mapping workflow.
|
1487
|
+
#
|
1488
|
+
# It takes only one value: `ON_DEMAND`. This setting runs the ID
|
1489
|
+
# mapping workflow when it's manually triggered through the
|
1490
|
+
# `StartIdMappingJob` API.
|
1491
|
+
# @return [String]
|
1492
|
+
#
|
1493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingIncrementalRunConfig AWS API Documentation
|
1494
|
+
#
|
1495
|
+
class IdMappingIncrementalRunConfig < Struct.new(
|
1496
|
+
:incremental_run_type)
|
1497
|
+
SENSITIVE = []
|
1498
|
+
include Aws::Structure
|
1499
|
+
end
|
1500
|
+
|
1444
1501
|
# An object that contains metrics about an ID mapping job, including
|
1445
1502
|
# counts of input records, processed records, and mapped records between
|
1446
1503
|
# source and target identifiers.
|
@@ -1457,6 +1514,12 @@ module Aws::EntityResolution
|
|
1457
1514
|
# The total number of records that did not get processed.
|
1458
1515
|
# @return [Integer]
|
1459
1516
|
#
|
1517
|
+
# @!attribute [rw] delete_records_processed
|
1518
|
+
# The number of records processed that were marked for deletion in the
|
1519
|
+
# input file using the DELETE schema mapping field. These are the
|
1520
|
+
# records to be removed from the ID mapping table.
|
1521
|
+
# @return [Integer]
|
1522
|
+
#
|
1460
1523
|
# @!attribute [rw] total_mapped_records
|
1461
1524
|
# The total number of records that were mapped.
|
1462
1525
|
# @return [Integer]
|
@@ -1470,13 +1533,47 @@ module Aws::EntityResolution
|
|
1470
1533
|
# @return [Integer]
|
1471
1534
|
#
|
1472
1535
|
# @!attribute [rw] unique_records_loaded
|
1473
|
-
# The number of
|
1474
|
-
#
|
1475
|
-
# UNIQUE\_ID in your schema mapping
|
1476
|
-
# in this field are considered duplicates. For example,
|
1477
|
-
# specified "customer\_id" as a UNIQUE\_ID field and had
|
1478
|
-
# records with the same customer\_id value, they would count as
|
1479
|
-
# unique record in this metric.
|
1536
|
+
# The number of de-duplicated processed records across all runs,
|
1537
|
+
# excluding deletion-related records. Duplicates are determined by the
|
1538
|
+
# field marked as UNIQUE\_ID in your schema mapping. Records sharing
|
1539
|
+
# the same value in this field are considered duplicates. For example,
|
1540
|
+
# if you specified "customer\_id" as a UNIQUE\_ID field and had
|
1541
|
+
# three records with the same customer\_id value, they would count as
|
1542
|
+
# one unique record in this metric.
|
1543
|
+
# @return [Integer]
|
1544
|
+
#
|
1545
|
+
# @!attribute [rw] new_mapped_records
|
1546
|
+
# The number of new mapped records.
|
1547
|
+
# @return [Integer]
|
1548
|
+
#
|
1549
|
+
# @!attribute [rw] new_mapped_source_records
|
1550
|
+
# The number of new source records mapped.
|
1551
|
+
# @return [Integer]
|
1552
|
+
#
|
1553
|
+
# @!attribute [rw] new_mapped_target_records
|
1554
|
+
# The number of new mapped target records.
|
1555
|
+
# @return [Integer]
|
1556
|
+
#
|
1557
|
+
# @!attribute [rw] new_unique_records_loaded
|
1558
|
+
# The number of new unique records processed in the current job run,
|
1559
|
+
# after removing duplicates. This metric excludes deletion-related
|
1560
|
+
# records. Duplicates are determined by the field marked as UNIQUE\_ID
|
1561
|
+
# in your schema mapping. Records sharing the same value in this field
|
1562
|
+
# are considered duplicates. For example, if your current run
|
1563
|
+
# processes five new records with the same UNIQUE\_ID value, they
|
1564
|
+
# would count as one new unique record in this metric.
|
1565
|
+
# @return [Integer]
|
1566
|
+
#
|
1567
|
+
# @!attribute [rw] mapped_records_removed
|
1568
|
+
# The number of mapped records removed.
|
1569
|
+
# @return [Integer]
|
1570
|
+
#
|
1571
|
+
# @!attribute [rw] mapped_source_records_removed
|
1572
|
+
# The number of source records removed due to ID mapping.
|
1573
|
+
# @return [Integer]
|
1574
|
+
#
|
1575
|
+
# @!attribute [rw] mapped_target_records_removed
|
1576
|
+
# The number of mapped target records removed.
|
1480
1577
|
# @return [Integer]
|
1481
1578
|
#
|
1482
1579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingJobMetrics AWS API Documentation
|
@@ -1485,10 +1582,18 @@ module Aws::EntityResolution
|
|
1485
1582
|
:input_records,
|
1486
1583
|
:total_records_processed,
|
1487
1584
|
:records_not_processed,
|
1585
|
+
:delete_records_processed,
|
1488
1586
|
:total_mapped_records,
|
1489
1587
|
:total_mapped_source_records,
|
1490
1588
|
:total_mapped_target_records,
|
1491
|
-
:unique_records_loaded
|
1589
|
+
:unique_records_loaded,
|
1590
|
+
:new_mapped_records,
|
1591
|
+
:new_mapped_source_records,
|
1592
|
+
:new_mapped_target_records,
|
1593
|
+
:new_unique_records_loaded,
|
1594
|
+
:mapped_records_removed,
|
1595
|
+
:mapped_source_records_removed,
|
1596
|
+
:mapped_target_records_removed)
|
1492
1597
|
SENSITIVE = []
|
1493
1598
|
include Aws::Structure
|
1494
1599
|
end
|
@@ -1800,15 +1905,15 @@ module Aws::EntityResolution
|
|
1800
1905
|
# contains only the `incrementalRunType` field, which appears as
|
1801
1906
|
# "Automatic" in the console.
|
1802
1907
|
#
|
1803
|
-
# For workflows where `resolutionType` is `ML_MATCHING`,
|
1804
|
-
# processing is not supported.
|
1908
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
1909
|
+
# incremental processing is not supported.
|
1805
1910
|
#
|
1806
1911
|
# @!attribute [rw] incremental_run_type
|
1807
1912
|
# The type of incremental run. The only valid value is `IMMEDIATE`.
|
1808
1913
|
# This appears as "Automatic" in the console.
|
1809
1914
|
#
|
1810
|
-
# For workflows where `resolutionType` is `ML_MATCHING`,
|
1811
|
-
# processing is not supported.
|
1915
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
1916
|
+
# incremental processing is not supported.
|
1812
1917
|
# @return [String]
|
1813
1918
|
#
|
1814
1919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IncrementalRunConfig AWS API Documentation
|
@@ -1893,6 +1998,12 @@ module Aws::EntityResolution
|
|
1893
1998
|
# The total number of records that did not get processed.
|
1894
1999
|
# @return [Integer]
|
1895
2000
|
#
|
2001
|
+
# @!attribute [rw] delete_records_processed
|
2002
|
+
# The number of records processed that were marked for deletion
|
2003
|
+
# (`DELETE` = True) in the input file. This metric tracks records
|
2004
|
+
# flagged for removal during the job execution.
|
2005
|
+
# @return [Integer]
|
2006
|
+
#
|
1896
2007
|
# @!attribute [rw] match_i_ds
|
1897
2008
|
# The total number of `matchID`s generated.
|
1898
2009
|
# @return [Integer]
|
@@ -1903,6 +2014,7 @@ module Aws::EntityResolution
|
|
1903
2014
|
:input_records,
|
1904
2015
|
:total_records_processed,
|
1905
2016
|
:records_not_processed,
|
2017
|
+
:delete_records_processed,
|
1906
2018
|
:match_i_ds)
|
1907
2019
|
SENSITIVE = []
|
1908
2020
|
include Aws::Structure
|
@@ -2761,8 +2873,15 @@ module Aws::EntityResolution
|
|
2761
2873
|
# `ruleBasedProperties`.
|
2762
2874
|
#
|
2763
2875
|
# @!attribute [rw] resolution_type
|
2764
|
-
# The type of matching
|
2765
|
-
#
|
2876
|
+
# The type of matching workflow to create. Specify one of the
|
2877
|
+
# following types:
|
2878
|
+
#
|
2879
|
+
# * `RULE_MATCHING`: Match records using configurable rule-based
|
2880
|
+
# criteria
|
2881
|
+
#
|
2882
|
+
# * `ML_MATCHING`: Match records using machine learning models
|
2883
|
+
#
|
2884
|
+
# * `PROVIDER`: Match records using a third-party matching provider
|
2766
2885
|
# @return [String]
|
2767
2886
|
#
|
2768
2887
|
# @!attribute [rw] rule_based_properties
|
@@ -2789,7 +2908,7 @@ module Aws::EntityResolution
|
|
2789
2908
|
include Aws::Structure
|
2790
2909
|
end
|
2791
2910
|
|
2792
|
-
# The resource
|
2911
|
+
# The resource couldn't be found.
|
2793
2912
|
#
|
2794
2913
|
# @!attribute [rw] message
|
2795
2914
|
# @return [String]
|
@@ -3055,11 +3174,29 @@ module Aws::EntityResolution
|
|
3055
3174
|
# A list of `OutputSource` objects.
|
3056
3175
|
# @return [Array<Types::IdMappingJobOutputSource>]
|
3057
3176
|
#
|
3177
|
+
# @!attribute [rw] job_type
|
3178
|
+
# The job type for the ID mapping job.
|
3179
|
+
#
|
3180
|
+
# If the `jobType` value is set to `INCREMENTAL`, only new or changed
|
3181
|
+
# data is processed since the last job run. This is the default value
|
3182
|
+
# if the `CreateIdMappingWorkflow` API is configured with an
|
3183
|
+
# `incrementalRunConfig`.
|
3184
|
+
#
|
3185
|
+
# If the `jobType` value is set to `BATCH`, all data is processed from
|
3186
|
+
# the input source, regardless of previous job runs. This is the
|
3187
|
+
# default value if the `CreateIdMappingWorkflow` API isn't configured
|
3188
|
+
# with an `incrementalRunConfig`.
|
3189
|
+
#
|
3190
|
+
# If the `jobType` value is set to `DELETE_ONLY`, only deletion
|
3191
|
+
# requests from `BatchDeleteUniqueIds` are processed.
|
3192
|
+
# @return [String]
|
3193
|
+
#
|
3058
3194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/StartIdMappingJobInput AWS API Documentation
|
3059
3195
|
#
|
3060
3196
|
class StartIdMappingJobInput < Struct.new(
|
3061
3197
|
:workflow_name,
|
3062
|
-
:output_source_config
|
3198
|
+
:output_source_config,
|
3199
|
+
:job_type)
|
3063
3200
|
SENSITIVE = []
|
3064
3201
|
include Aws::Structure
|
3065
3202
|
end
|
@@ -3072,11 +3209,28 @@ module Aws::EntityResolution
|
|
3072
3209
|
# A list of `OutputSource` objects.
|
3073
3210
|
# @return [Array<Types::IdMappingJobOutputSource>]
|
3074
3211
|
#
|
3212
|
+
# @!attribute [rw] job_type
|
3213
|
+
# The job type for the started ID mapping job.
|
3214
|
+
#
|
3215
|
+
# A value of `INCREMENTAL` indicates that only new or changed data was
|
3216
|
+
# processed since the last job run. This is the default job type if
|
3217
|
+
# the workflow was created with an `incrementalRunConfig`.
|
3218
|
+
#
|
3219
|
+
# A value of `BATCH` indicates that all data was processed from the
|
3220
|
+
# input source, regardless of previous job runs. This is the default
|
3221
|
+
# job type if the workflow wasn't created with an
|
3222
|
+
# `incrementalRunConfig`.
|
3223
|
+
#
|
3224
|
+
# A value of `DELETE_ONLY` indicates that only deletion requests from
|
3225
|
+
# `BatchDeleteUniqueIds` were processed.
|
3226
|
+
# @return [String]
|
3227
|
+
#
|
3075
3228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/StartIdMappingJobOutput AWS API Documentation
|
3076
3229
|
#
|
3077
3230
|
class StartIdMappingJobOutput < Struct.new(
|
3078
3231
|
:job_id,
|
3079
|
-
:output_source_config
|
3232
|
+
:output_source_config,
|
3233
|
+
:job_type)
|
3080
3234
|
SENSITIVE = []
|
3081
3235
|
include Aws::Structure
|
3082
3236
|
end
|
@@ -3184,6 +3338,11 @@ module Aws::EntityResolution
|
|
3184
3338
|
# configurations.
|
3185
3339
|
# @return [Types::IdMappingTechniques]
|
3186
3340
|
#
|
3341
|
+
# @!attribute [rw] incremental_run_config
|
3342
|
+
# The incremental run configuration for the update ID mapping
|
3343
|
+
# workflow.
|
3344
|
+
# @return [Types::IdMappingIncrementalRunConfig]
|
3345
|
+
#
|
3187
3346
|
# @!attribute [rw] role_arn
|
3188
3347
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
3189
3348
|
# assumes this role to access Amazon Web Services resources on your
|
@@ -3198,6 +3357,7 @@ module Aws::EntityResolution
|
|
3198
3357
|
:input_source_config,
|
3199
3358
|
:output_source_config,
|
3200
3359
|
:id_mapping_techniques,
|
3360
|
+
:incremental_run_config,
|
3201
3361
|
:role_arn)
|
3202
3362
|
SENSITIVE = []
|
3203
3363
|
include Aws::Structure
|
@@ -3232,6 +3392,11 @@ module Aws::EntityResolution
|
|
3232
3392
|
# configurations.
|
3233
3393
|
# @return [Types::IdMappingTechniques]
|
3234
3394
|
#
|
3395
|
+
# @!attribute [rw] incremental_run_config
|
3396
|
+
# The incremental run configuration for the update ID mapping workflow
|
3397
|
+
# output.
|
3398
|
+
# @return [Types::IdMappingIncrementalRunConfig]
|
3399
|
+
#
|
3235
3400
|
# @!attribute [rw] role_arn
|
3236
3401
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
3237
3402
|
# assumes this role to access Amazon Web Services resources on your
|
@@ -3247,6 +3412,7 @@ module Aws::EntityResolution
|
|
3247
3412
|
:input_source_config,
|
3248
3413
|
:output_source_config,
|
3249
3414
|
:id_mapping_techniques,
|
3415
|
+
:incremental_run_config,
|
3250
3416
|
:role_arn)
|
3251
3417
|
SENSITIVE = []
|
3252
3418
|
include Aws::Structure
|
@@ -3379,8 +3545,8 @@ module Aws::EntityResolution
|
|
3379
3545
|
# object contains only the `incrementalRunType` field, which appears
|
3380
3546
|
# as "Automatic" in the console.
|
3381
3547
|
#
|
3382
|
-
# For workflows where `resolutionType` is `ML_MATCHING`,
|
3383
|
-
# processing is not supported.
|
3548
|
+
# For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
|
3549
|
+
# incremental processing is not supported.
|
3384
3550
|
# @return [Types::IncrementalRunConfig]
|
3385
3551
|
#
|
3386
3552
|
# @!attribute [rw] role_arn
|
data/sig/client.rbs
CHANGED
@@ -118,6 +118,7 @@ module Aws
|
|
118
118
|
def input_source_config: () -> ::Array[Types::IdMappingWorkflowInputSource]
|
119
119
|
def output_source_config: () -> ::Array[Types::IdMappingWorkflowOutputSource]
|
120
120
|
def id_mapping_techniques: () -> Types::IdMappingTechniques
|
121
|
+
def incremental_run_config: () -> Types::IdMappingIncrementalRunConfig
|
121
122
|
def role_arn: () -> ::String
|
122
123
|
end
|
123
124
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#create_id_mapping_workflow-instance_method
|
@@ -159,6 +160,9 @@ module Aws
|
|
159
160
|
}?
|
160
161
|
}?
|
161
162
|
},
|
163
|
+
?incremental_run_config: {
|
164
|
+
incremental_run_type: ("ON_DEMAND")?
|
165
|
+
},
|
162
166
|
?role_arn: ::String,
|
163
167
|
?tags: Hash[::String, ::String]
|
164
168
|
) -> _CreateIdMappingWorkflowResponseSuccess
|
@@ -392,6 +396,7 @@ module Aws
|
|
392
396
|
def metrics: () -> Types::IdMappingJobMetrics
|
393
397
|
def error_details: () -> Types::ErrorDetails
|
394
398
|
def output_source_config: () -> ::Array[Types::IdMappingJobOutputSource]
|
399
|
+
def job_type: () -> ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
|
395
400
|
end
|
396
401
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_id_mapping_job-instance_method
|
397
402
|
def get_id_mapping_job: (
|
@@ -410,6 +415,7 @@ module Aws
|
|
410
415
|
def id_mapping_techniques: () -> Types::IdMappingTechniques
|
411
416
|
def created_at: () -> ::Time
|
412
417
|
def updated_at: () -> ::Time
|
418
|
+
def incremental_run_config: () -> Types::IdMappingIncrementalRunConfig
|
413
419
|
def role_arn: () -> ::String
|
414
420
|
def tags: () -> ::Hash[::String, ::String]
|
415
421
|
end
|
@@ -655,6 +661,7 @@ module Aws
|
|
655
661
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartIdMappingJobOutput]
|
656
662
|
def job_id: () -> ::String
|
657
663
|
def output_source_config: () -> ::Array[Types::IdMappingJobOutputSource]
|
664
|
+
def job_type: () -> ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
|
658
665
|
end
|
659
666
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#start_id_mapping_job-instance_method
|
660
667
|
def start_id_mapping_job: (
|
@@ -665,7 +672,8 @@ module Aws
|
|
665
672
|
output_s3_path: ::String,
|
666
673
|
kms_arn: ::String?
|
667
674
|
},
|
668
|
-
]
|
675
|
+
],
|
676
|
+
?job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
|
669
677
|
) -> _StartIdMappingJobResponseSuccess
|
670
678
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartIdMappingJobResponseSuccess
|
671
679
|
|
@@ -707,6 +715,7 @@ module Aws
|
|
707
715
|
def input_source_config: () -> ::Array[Types::IdMappingWorkflowInputSource]
|
708
716
|
def output_source_config: () -> ::Array[Types::IdMappingWorkflowOutputSource]
|
709
717
|
def id_mapping_techniques: () -> Types::IdMappingTechniques
|
718
|
+
def incremental_run_config: () -> Types::IdMappingIncrementalRunConfig
|
710
719
|
def role_arn: () -> ::String
|
711
720
|
end
|
712
721
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#update_id_mapping_workflow-instance_method
|
@@ -748,6 +757,9 @@ module Aws
|
|
748
757
|
}?
|
749
758
|
}?
|
750
759
|
},
|
760
|
+
?incremental_run_config: {
|
761
|
+
incremental_run_type: ("ON_DEMAND")?
|
762
|
+
},
|
751
763
|
?role_arn: ::String
|
752
764
|
) -> _UpdateIdMappingWorkflowResponseSuccess
|
753
765
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdMappingWorkflowResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -56,6 +56,7 @@ module Aws::EntityResolution
|
|
56
56
|
attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
|
57
57
|
attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
|
58
58
|
attr_accessor id_mapping_techniques: Types::IdMappingTechniques
|
59
|
+
attr_accessor incremental_run_config: Types::IdMappingIncrementalRunConfig
|
59
60
|
attr_accessor role_arn: ::String
|
60
61
|
attr_accessor tags: ::Hash[::String, ::String]
|
61
62
|
SENSITIVE: []
|
@@ -68,6 +69,7 @@ module Aws::EntityResolution
|
|
68
69
|
attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
|
69
70
|
attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
|
70
71
|
attr_accessor id_mapping_techniques: Types::IdMappingTechniques
|
72
|
+
attr_accessor incremental_run_config: Types::IdMappingIncrementalRunConfig
|
71
73
|
attr_accessor role_arn: ::String
|
72
74
|
SENSITIVE: []
|
73
75
|
end
|
@@ -247,6 +249,7 @@ module Aws::EntityResolution
|
|
247
249
|
attr_accessor metrics: Types::IdMappingJobMetrics
|
248
250
|
attr_accessor error_details: Types::ErrorDetails
|
249
251
|
attr_accessor output_source_config: ::Array[Types::IdMappingJobOutputSource]
|
252
|
+
attr_accessor job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
|
250
253
|
SENSITIVE: []
|
251
254
|
end
|
252
255
|
|
@@ -264,6 +267,7 @@ module Aws::EntityResolution
|
|
264
267
|
attr_accessor id_mapping_techniques: Types::IdMappingTechniques
|
265
268
|
attr_accessor created_at: ::Time
|
266
269
|
attr_accessor updated_at: ::Time
|
270
|
+
attr_accessor incremental_run_config: Types::IdMappingIncrementalRunConfig
|
267
271
|
attr_accessor role_arn: ::String
|
268
272
|
attr_accessor tags: ::Hash[::String, ::String]
|
269
273
|
SENSITIVE: []
|
@@ -390,14 +394,27 @@ module Aws::EntityResolution
|
|
390
394
|
SENSITIVE: []
|
391
395
|
end
|
392
396
|
|
397
|
+
class IdMappingIncrementalRunConfig
|
398
|
+
attr_accessor incremental_run_type: ("ON_DEMAND")
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
393
402
|
class IdMappingJobMetrics
|
394
403
|
attr_accessor input_records: ::Integer
|
395
404
|
attr_accessor total_records_processed: ::Integer
|
396
405
|
attr_accessor records_not_processed: ::Integer
|
406
|
+
attr_accessor delete_records_processed: ::Integer
|
397
407
|
attr_accessor total_mapped_records: ::Integer
|
398
408
|
attr_accessor total_mapped_source_records: ::Integer
|
399
409
|
attr_accessor total_mapped_target_records: ::Integer
|
400
410
|
attr_accessor unique_records_loaded: ::Integer
|
411
|
+
attr_accessor new_mapped_records: ::Integer
|
412
|
+
attr_accessor new_mapped_source_records: ::Integer
|
413
|
+
attr_accessor new_mapped_target_records: ::Integer
|
414
|
+
attr_accessor new_unique_records_loaded: ::Integer
|
415
|
+
attr_accessor mapped_records_removed: ::Integer
|
416
|
+
attr_accessor mapped_source_records_removed: ::Integer
|
417
|
+
attr_accessor mapped_target_records_removed: ::Integer
|
401
418
|
SENSITIVE: []
|
402
419
|
end
|
403
420
|
|
@@ -499,6 +516,7 @@ module Aws::EntityResolution
|
|
499
516
|
attr_accessor input_records: ::Integer
|
500
517
|
attr_accessor total_records_processed: ::Integer
|
501
518
|
attr_accessor records_not_processed: ::Integer
|
519
|
+
attr_accessor delete_records_processed: ::Integer
|
502
520
|
attr_accessor match_i_ds: ::Integer
|
503
521
|
SENSITIVE: []
|
504
522
|
end
|
@@ -807,12 +825,14 @@ module Aws::EntityResolution
|
|
807
825
|
class StartIdMappingJobInput
|
808
826
|
attr_accessor workflow_name: ::String
|
809
827
|
attr_accessor output_source_config: ::Array[Types::IdMappingJobOutputSource]
|
828
|
+
attr_accessor job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
|
810
829
|
SENSITIVE: []
|
811
830
|
end
|
812
831
|
|
813
832
|
class StartIdMappingJobOutput
|
814
833
|
attr_accessor job_id: ::String
|
815
834
|
attr_accessor output_source_config: ::Array[Types::IdMappingJobOutputSource]
|
835
|
+
attr_accessor job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
|
816
836
|
SENSITIVE: []
|
817
837
|
end
|
818
838
|
|
@@ -855,6 +875,7 @@ module Aws::EntityResolution
|
|
855
875
|
attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
|
856
876
|
attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
|
857
877
|
attr_accessor id_mapping_techniques: Types::IdMappingTechniques
|
878
|
+
attr_accessor incremental_run_config: Types::IdMappingIncrementalRunConfig
|
858
879
|
attr_accessor role_arn: ::String
|
859
880
|
SENSITIVE: []
|
860
881
|
end
|
@@ -866,6 +887,7 @@ module Aws::EntityResolution
|
|
866
887
|
attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
|
867
888
|
attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
|
868
889
|
attr_accessor id_mapping_techniques: Types::IdMappingTechniques
|
890
|
+
attr_accessor incremental_run_config: Types::IdMappingIncrementalRunConfig
|
869
891
|
attr_accessor role_arn: ::String
|
870
892
|
SENSITIVE: []
|
871
893
|
end
|