aws-sdk-entityresolution 1.14.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-entityresolution/client.rb +136 -19
- data/lib/aws-sdk-entityresolution/client_api.rb +52 -5
- data/lib/aws-sdk-entityresolution/types.rb +241 -53
- data/lib/aws-sdk-entityresolution.rb +1 -1
- data/sig/client.rbs +54 -6
- data/sig/types.rbs +31 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d215321bd244f040a4a30e0edeebc6331448e8b2fbe5e9fe8d79f1479a37a80
|
4
|
+
data.tar.gz: 8b1d40fbbfb22934b15412eb0d967f2a1319866c5e36c7f8862b8d07872ad23f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11186f41c2aa8114fba5d0c5344d3883405c9439f88bc88038fe240f8afe3c905c2af2a56f256b8bac220030c17c420077d780432bfc1e1fd8218adba2087621
|
7
|
+
data.tar.gz: 057cfc8bcab354ece9152e4e6afae657f1c575f92f1d74a4694aaf35a355550abaf9b1ff5a9e45493222ce60250ce8fb49407fb4d27db6c2f3aad5c0daba1c69
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -445,6 +445,11 @@ module Aws::EntityResolution
|
|
445
445
|
# Determines whether the permissions specified in the policy are to be
|
446
446
|
# allowed (`Allow`) or denied (`Deny`).
|
447
447
|
#
|
448
|
+
# If you set the value of the `effect` parameter to `Deny` for the
|
449
|
+
# `AddPolicyStatement` operation, you must also set the value of the
|
450
|
+
# `effect` parameter in the `policy` to `Deny` for the `PutPolicy`
|
451
|
+
# operation.
|
452
|
+
#
|
448
453
|
# @option params [required, Array<String>] :principal
|
449
454
|
# The Amazon Web Services service or Amazon Web Services account that
|
450
455
|
# can access the resource defined as ARN.
|
@@ -540,8 +545,8 @@ module Aws::EntityResolution
|
|
540
545
|
# A description of the workflow.
|
541
546
|
#
|
542
547
|
# @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
|
543
|
-
# An object which defines the
|
544
|
-
#
|
548
|
+
# An object which defines the ID mapping technique and any additional
|
549
|
+
# configurations.
|
545
550
|
#
|
546
551
|
# @option params [required, Array<Types::IdMappingWorkflowInputSource>] :input_source_config
|
547
552
|
# A list of `InputSource` objects, which have the fields
|
@@ -551,7 +556,7 @@ module Aws::EntityResolution
|
|
551
556
|
# A list of `IdMappingWorkflowOutputSource` objects, each of which
|
552
557
|
# contains fields `OutputS3Path` and `Output`.
|
553
558
|
#
|
554
|
-
# @option params [
|
559
|
+
# @option params [String] :role_arn
|
555
560
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
556
561
|
# assumes this role to create resources on your behalf as part of
|
557
562
|
# workflow execution.
|
@@ -578,7 +583,7 @@ module Aws::EntityResolution
|
|
578
583
|
# resp = client.create_id_mapping_workflow({
|
579
584
|
# description: "Description",
|
580
585
|
# id_mapping_techniques: { # required
|
581
|
-
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER
|
586
|
+
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
|
582
587
|
# provider_properties: {
|
583
588
|
# intermediate_source_configuration: {
|
584
589
|
# intermediate_s3_path: "S3Path", # required
|
@@ -587,6 +592,17 @@ module Aws::EntityResolution
|
|
587
592
|
# },
|
588
593
|
# provider_service_arn: "ProviderServiceArn", # required
|
589
594
|
# },
|
595
|
+
# rule_based_properties: {
|
596
|
+
# attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
|
597
|
+
# record_matching_model: "ONE_SOURCE_TO_ONE_TARGET", # required, accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
|
598
|
+
# rule_definition_type: "SOURCE", # required, accepts SOURCE, TARGET
|
599
|
+
# rules: [
|
600
|
+
# {
|
601
|
+
# matching_keys: ["AttributeName"], # required
|
602
|
+
# rule_name: "RuleRuleNameString", # required
|
603
|
+
# },
|
604
|
+
# ],
|
605
|
+
# },
|
590
606
|
# },
|
591
607
|
# input_source_config: [ # required
|
592
608
|
# {
|
@@ -601,7 +617,7 @@ module Aws::EntityResolution
|
|
601
617
|
# output_s3_path: "S3Path", # required
|
602
618
|
# },
|
603
619
|
# ],
|
604
|
-
# role_arn: "
|
620
|
+
# role_arn: "IdMappingRoleArn",
|
605
621
|
# tags: {
|
606
622
|
# "TagKey" => "TagValue",
|
607
623
|
# },
|
@@ -611,9 +627,16 @@ module Aws::EntityResolution
|
|
611
627
|
# @example Response structure
|
612
628
|
#
|
613
629
|
# resp.description #=> String
|
614
|
-
# resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER"
|
630
|
+
# resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
|
615
631
|
# resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
|
616
632
|
# resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
|
633
|
+
# resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
634
|
+
# resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
635
|
+
# resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
|
636
|
+
# resp.id_mapping_techniques.rule_based_properties.rules #=> Array
|
637
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
|
638
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
|
639
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
|
617
640
|
# resp.input_source_config #=> Array
|
618
641
|
# resp.input_source_config[0].input_source_arn #=> String
|
619
642
|
# resp.input_source_config[0].schema_name #=> String
|
@@ -689,12 +712,23 @@ module Aws::EntityResolution
|
|
689
712
|
# description: "Description",
|
690
713
|
# id_mapping_workflow_properties: [
|
691
714
|
# {
|
692
|
-
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER
|
715
|
+
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
|
693
716
|
# provider_properties: {
|
694
717
|
# provider_configuration: {
|
695
718
|
# },
|
696
719
|
# provider_service_arn: "ProviderServiceArn", # required
|
697
720
|
# },
|
721
|
+
# rule_based_properties: {
|
722
|
+
# attribute_matching_model: "ONE_TO_ONE", # accepts ONE_TO_ONE, MANY_TO_MANY
|
723
|
+
# record_matching_models: ["ONE_SOURCE_TO_ONE_TARGET"], # accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
|
724
|
+
# rule_definition_types: ["SOURCE"], # accepts SOURCE, TARGET
|
725
|
+
# rules: [
|
726
|
+
# {
|
727
|
+
# matching_keys: ["AttributeName"], # required
|
728
|
+
# rule_name: "RuleRuleNameString", # required
|
729
|
+
# },
|
730
|
+
# ],
|
731
|
+
# },
|
698
732
|
# },
|
699
733
|
# ],
|
700
734
|
# id_namespace_name: "EntityName", # required
|
@@ -716,8 +750,17 @@ module Aws::EntityResolution
|
|
716
750
|
# resp.created_at #=> Time
|
717
751
|
# resp.description #=> String
|
718
752
|
# resp.id_mapping_workflow_properties #=> Array
|
719
|
-
# resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER"
|
753
|
+
# resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
|
720
754
|
# resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
|
755
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
756
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
|
757
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
758
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
|
759
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
|
760
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules #=> Array
|
761
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys #=> Array
|
762
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys[0] #=> String
|
763
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
|
721
764
|
# resp.id_namespace_arn #=> String
|
722
765
|
# resp.id_namespace_name #=> String
|
723
766
|
# resp.input_source_config #=> Array
|
@@ -824,6 +867,7 @@ module Aws::EntityResolution
|
|
824
867
|
# resolution_type: "RULE_MATCHING", # required, accepts RULE_MATCHING, ML_MATCHING, PROVIDER
|
825
868
|
# rule_based_properties: {
|
826
869
|
# attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
|
870
|
+
# match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
|
827
871
|
# rules: [ # required
|
828
872
|
# {
|
829
873
|
# matching_keys: ["AttributeName"], # required
|
@@ -858,6 +902,7 @@ module Aws::EntityResolution
|
|
858
902
|
# resp.resolution_techniques.provider_properties.provider_service_arn #=> String
|
859
903
|
# resp.resolution_techniques.resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
|
860
904
|
# resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
905
|
+
# resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
|
861
906
|
# resp.resolution_techniques.rule_based_properties.rules #=> Array
|
862
907
|
# resp.resolution_techniques.rule_based_properties.rules[0].matching_keys #=> Array
|
863
908
|
# resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
|
@@ -910,6 +955,7 @@ module Aws::EntityResolution
|
|
910
955
|
# {
|
911
956
|
# field_name: "AttributeName", # required
|
912
957
|
# group_name: "AttributeName",
|
958
|
+
# hashed: false,
|
913
959
|
# match_key: "AttributeName",
|
914
960
|
# sub_type: "AttributeName",
|
915
961
|
# type: "NAME", # required, accepts NAME, NAME_FIRST, NAME_MIDDLE, NAME_LAST, ADDRESS, ADDRESS_STREET1, ADDRESS_STREET2, ADDRESS_STREET3, ADDRESS_CITY, ADDRESS_STATE, ADDRESS_COUNTRY, ADDRESS_POSTALCODE, PHONE, PHONE_NUMBER, PHONE_COUNTRYCODE, EMAIL_ADDRESS, UNIQUE_ID, DATE, STRING, PROVIDER_ID
|
@@ -927,6 +973,7 @@ module Aws::EntityResolution
|
|
927
973
|
# resp.mapped_input_fields #=> Array
|
928
974
|
# resp.mapped_input_fields[0].field_name #=> String
|
929
975
|
# resp.mapped_input_fields[0].group_name #=> String
|
976
|
+
# resp.mapped_input_fields[0].hashed #=> Boolean
|
930
977
|
# resp.mapped_input_fields[0].match_key #=> String
|
931
978
|
# resp.mapped_input_fields[0].sub_type #=> String
|
932
979
|
# resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
|
@@ -1129,6 +1176,9 @@ module Aws::EntityResolution
|
|
1129
1176
|
# resp.job_id #=> String
|
1130
1177
|
# resp.metrics.input_records #=> Integer
|
1131
1178
|
# resp.metrics.records_not_processed #=> Integer
|
1179
|
+
# resp.metrics.total_mapped_records #=> Integer
|
1180
|
+
# resp.metrics.total_mapped_source_records #=> Integer
|
1181
|
+
# resp.metrics.total_mapped_target_records #=> Integer
|
1132
1182
|
# resp.metrics.total_records_processed #=> Integer
|
1133
1183
|
# resp.output_source_config #=> Array
|
1134
1184
|
# resp.output_source_config[0].kms_arn #=> String
|
@@ -1174,9 +1224,16 @@ module Aws::EntityResolution
|
|
1174
1224
|
#
|
1175
1225
|
# resp.created_at #=> Time
|
1176
1226
|
# resp.description #=> String
|
1177
|
-
# resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER"
|
1227
|
+
# resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
|
1178
1228
|
# resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
|
1179
1229
|
# resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
|
1230
|
+
# resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
1231
|
+
# resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
1232
|
+
# resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
|
1233
|
+
# resp.id_mapping_techniques.rule_based_properties.rules #=> Array
|
1234
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
|
1235
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
|
1236
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
|
1180
1237
|
# resp.input_source_config #=> Array
|
1181
1238
|
# resp.input_source_config[0].input_source_arn #=> String
|
1182
1239
|
# resp.input_source_config[0].schema_name #=> String
|
@@ -1229,8 +1286,17 @@ module Aws::EntityResolution
|
|
1229
1286
|
# resp.created_at #=> Time
|
1230
1287
|
# resp.description #=> String
|
1231
1288
|
# resp.id_mapping_workflow_properties #=> Array
|
1232
|
-
# resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER"
|
1289
|
+
# resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
|
1233
1290
|
# resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
|
1291
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
1292
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
|
1293
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
1294
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
|
1295
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
|
1296
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules #=> Array
|
1297
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys #=> Array
|
1298
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys[0] #=> String
|
1299
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
|
1234
1300
|
# resp.id_namespace_arn #=> String
|
1235
1301
|
# resp.id_namespace_name #=> String
|
1236
1302
|
# resp.input_source_config #=> Array
|
@@ -1391,6 +1457,7 @@ module Aws::EntityResolution
|
|
1391
1457
|
# resp.resolution_techniques.provider_properties.provider_service_arn #=> String
|
1392
1458
|
# resp.resolution_techniques.resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
|
1393
1459
|
# resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
1460
|
+
# resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
|
1394
1461
|
# resp.resolution_techniques.rule_based_properties.rules #=> Array
|
1395
1462
|
# resp.resolution_techniques.rule_based_properties.rules[0].matching_keys #=> Array
|
1396
1463
|
# resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
|
@@ -1541,6 +1608,7 @@ module Aws::EntityResolution
|
|
1541
1608
|
# resp.mapped_input_fields #=> Array
|
1542
1609
|
# resp.mapped_input_fields[0].field_name #=> String
|
1543
1610
|
# resp.mapped_input_fields[0].group_name #=> String
|
1611
|
+
# resp.mapped_input_fields[0].hashed #=> Boolean
|
1544
1612
|
# resp.mapped_input_fields[0].match_key #=> String
|
1545
1613
|
# resp.mapped_input_fields[0].sub_type #=> String
|
1546
1614
|
# resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
|
@@ -1671,6 +1739,8 @@ module Aws::EntityResolution
|
|
1671
1739
|
# resp.id_namespace_summaries #=> Array
|
1672
1740
|
# resp.id_namespace_summaries[0].created_at #=> Time
|
1673
1741
|
# resp.id_namespace_summaries[0].description #=> String
|
1742
|
+
# resp.id_namespace_summaries[0].id_mapping_workflow_properties #=> Array
|
1743
|
+
# resp.id_namespace_summaries[0].id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
|
1674
1744
|
# resp.id_namespace_summaries[0].id_namespace_arn #=> String
|
1675
1745
|
# resp.id_namespace_summaries[0].id_namespace_name #=> String
|
1676
1746
|
# resp.id_namespace_summaries[0].type #=> String, one of "SOURCE", "TARGET"
|
@@ -1900,6 +1970,11 @@ module Aws::EntityResolution
|
|
1900
1970
|
# @option params [required, String] :policy
|
1901
1971
|
# The resource-based policy.
|
1902
1972
|
#
|
1973
|
+
# If you set the value of the `effect` parameter in the `policy` to
|
1974
|
+
# `Deny` for the `PutPolicy` operation, you must also set the value of
|
1975
|
+
# the `effect` parameter to `Deny` for the `AddPolicyStatement`
|
1976
|
+
# operation.
|
1977
|
+
#
|
1903
1978
|
# @option params [String] :token
|
1904
1979
|
# A unique identifier for the current revision of the policy.
|
1905
1980
|
#
|
@@ -2081,8 +2156,8 @@ module Aws::EntityResolution
|
|
2081
2156
|
# A description of the workflow.
|
2082
2157
|
#
|
2083
2158
|
# @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
|
2084
|
-
# An object which defines the
|
2085
|
-
#
|
2159
|
+
# An object which defines the ID mapping technique and any additional
|
2160
|
+
# configurations.
|
2086
2161
|
#
|
2087
2162
|
# @option params [required, Array<Types::IdMappingWorkflowInputSource>] :input_source_config
|
2088
2163
|
# A list of `InputSource` objects, which have the fields
|
@@ -2092,7 +2167,7 @@ module Aws::EntityResolution
|
|
2092
2167
|
# A list of `OutputSource` objects, each of which contains fields
|
2093
2168
|
# `OutputS3Path` and `KMSArn`.
|
2094
2169
|
#
|
2095
|
-
# @option params [
|
2170
|
+
# @option params [String] :role_arn
|
2096
2171
|
# The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
|
2097
2172
|
# assumes this role to access Amazon Web Services resources on your
|
2098
2173
|
# behalf.
|
@@ -2115,7 +2190,7 @@ module Aws::EntityResolution
|
|
2115
2190
|
# resp = client.update_id_mapping_workflow({
|
2116
2191
|
# description: "Description",
|
2117
2192
|
# id_mapping_techniques: { # required
|
2118
|
-
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER
|
2193
|
+
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
|
2119
2194
|
# provider_properties: {
|
2120
2195
|
# intermediate_source_configuration: {
|
2121
2196
|
# intermediate_s3_path: "S3Path", # required
|
@@ -2124,6 +2199,17 @@ module Aws::EntityResolution
|
|
2124
2199
|
# },
|
2125
2200
|
# provider_service_arn: "ProviderServiceArn", # required
|
2126
2201
|
# },
|
2202
|
+
# rule_based_properties: {
|
2203
|
+
# attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
|
2204
|
+
# record_matching_model: "ONE_SOURCE_TO_ONE_TARGET", # required, accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
|
2205
|
+
# rule_definition_type: "SOURCE", # required, accepts SOURCE, TARGET
|
2206
|
+
# rules: [
|
2207
|
+
# {
|
2208
|
+
# matching_keys: ["AttributeName"], # required
|
2209
|
+
# rule_name: "RuleRuleNameString", # required
|
2210
|
+
# },
|
2211
|
+
# ],
|
2212
|
+
# },
|
2127
2213
|
# },
|
2128
2214
|
# input_source_config: [ # required
|
2129
2215
|
# {
|
@@ -2138,16 +2224,23 @@ module Aws::EntityResolution
|
|
2138
2224
|
# output_s3_path: "S3Path", # required
|
2139
2225
|
# },
|
2140
2226
|
# ],
|
2141
|
-
# role_arn: "
|
2227
|
+
# role_arn: "IdMappingRoleArn",
|
2142
2228
|
# workflow_name: "EntityName", # required
|
2143
2229
|
# })
|
2144
2230
|
#
|
2145
2231
|
# @example Response structure
|
2146
2232
|
#
|
2147
2233
|
# resp.description #=> String
|
2148
|
-
# resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER"
|
2234
|
+
# resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
|
2149
2235
|
# resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
|
2150
2236
|
# resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
|
2237
|
+
# resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
2238
|
+
# resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
2239
|
+
# resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
|
2240
|
+
# resp.id_mapping_techniques.rule_based_properties.rules #=> Array
|
2241
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
|
2242
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
|
2243
|
+
# resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
|
2151
2244
|
# resp.input_source_config #=> Array
|
2152
2245
|
# resp.input_source_config[0].input_source_arn #=> String
|
2153
2246
|
# resp.input_source_config[0].schema_name #=> String
|
@@ -2207,12 +2300,23 @@ module Aws::EntityResolution
|
|
2207
2300
|
# description: "Description",
|
2208
2301
|
# id_mapping_workflow_properties: [
|
2209
2302
|
# {
|
2210
|
-
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER
|
2303
|
+
# id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
|
2211
2304
|
# provider_properties: {
|
2212
2305
|
# provider_configuration: {
|
2213
2306
|
# },
|
2214
2307
|
# provider_service_arn: "ProviderServiceArn", # required
|
2215
2308
|
# },
|
2309
|
+
# rule_based_properties: {
|
2310
|
+
# attribute_matching_model: "ONE_TO_ONE", # accepts ONE_TO_ONE, MANY_TO_MANY
|
2311
|
+
# record_matching_models: ["ONE_SOURCE_TO_ONE_TARGET"], # accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
|
2312
|
+
# rule_definition_types: ["SOURCE"], # accepts SOURCE, TARGET
|
2313
|
+
# rules: [
|
2314
|
+
# {
|
2315
|
+
# matching_keys: ["AttributeName"], # required
|
2316
|
+
# rule_name: "RuleRuleNameString", # required
|
2317
|
+
# },
|
2318
|
+
# ],
|
2319
|
+
# },
|
2216
2320
|
# },
|
2217
2321
|
# ],
|
2218
2322
|
# id_namespace_name: "EntityName", # required
|
@@ -2230,8 +2334,17 @@ module Aws::EntityResolution
|
|
2230
2334
|
# resp.created_at #=> Time
|
2231
2335
|
# resp.description #=> String
|
2232
2336
|
# resp.id_mapping_workflow_properties #=> Array
|
2233
|
-
# resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER"
|
2337
|
+
# resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
|
2234
2338
|
# resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
|
2339
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
2340
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
|
2341
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
|
2342
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
|
2343
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
|
2344
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules #=> Array
|
2345
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys #=> Array
|
2346
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys[0] #=> String
|
2347
|
+
# resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
|
2235
2348
|
# resp.id_namespace_arn #=> String
|
2236
2349
|
# resp.id_namespace_name #=> String
|
2237
2350
|
# resp.input_source_config #=> Array
|
@@ -2331,6 +2444,7 @@ module Aws::EntityResolution
|
|
2331
2444
|
# resolution_type: "RULE_MATCHING", # required, accepts RULE_MATCHING, ML_MATCHING, PROVIDER
|
2332
2445
|
# rule_based_properties: {
|
2333
2446
|
# attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
|
2447
|
+
# match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
|
2334
2448
|
# rules: [ # required
|
2335
2449
|
# {
|
2336
2450
|
# matching_keys: ["AttributeName"], # required
|
@@ -2362,6 +2476,7 @@ module Aws::EntityResolution
|
|
2362
2476
|
# resp.resolution_techniques.provider_properties.provider_service_arn #=> String
|
2363
2477
|
# resp.resolution_techniques.resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
|
2364
2478
|
# resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
|
2479
|
+
# resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
|
2365
2480
|
# resp.resolution_techniques.rule_based_properties.rules #=> Array
|
2366
2481
|
# resp.resolution_techniques.rule_based_properties.rules[0].matching_keys #=> Array
|
2367
2482
|
# resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
|
@@ -2413,6 +2528,7 @@ module Aws::EntityResolution
|
|
2413
2528
|
# {
|
2414
2529
|
# field_name: "AttributeName", # required
|
2415
2530
|
# group_name: "AttributeName",
|
2531
|
+
# hashed: false,
|
2416
2532
|
# match_key: "AttributeName",
|
2417
2533
|
# sub_type: "AttributeName",
|
2418
2534
|
# type: "NAME", # required, accepts NAME, NAME_FIRST, NAME_MIDDLE, NAME_LAST, ADDRESS, ADDRESS_STREET1, ADDRESS_STREET2, ADDRESS_STREET3, ADDRESS_CITY, ADDRESS_STATE, ADDRESS_COUNTRY, ADDRESS_POSTALCODE, PHONE, PHONE_NUMBER, PHONE_COUNTRYCODE, EMAIL_ADDRESS, UNIQUE_ID, DATE, STRING, PROVIDER_ID
|
@@ -2427,6 +2543,7 @@ module Aws::EntityResolution
|
|
2427
2543
|
# resp.mapped_input_fields #=> Array
|
2428
2544
|
# resp.mapped_input_fields[0].field_name #=> String
|
2429
2545
|
# resp.mapped_input_fields[0].group_name #=> String
|
2546
|
+
# resp.mapped_input_fields[0].hashed #=> Boolean
|
2430
2547
|
# resp.mapped_input_fields[0].match_key #=> String
|
2431
2548
|
# resp.mapped_input_fields[0].sub_type #=> String
|
2432
2549
|
# resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
|
@@ -2455,7 +2572,7 @@ module Aws::EntityResolution
|
|
2455
2572
|
params: params,
|
2456
2573
|
config: config)
|
2457
2574
|
context[:gem_name] = 'aws-sdk-entityresolution'
|
2458
|
-
context[:gem_version] = '1.
|
2575
|
+
context[:gem_version] = '1.15.0'
|
2459
2576
|
Seahorse::Client::Request.new(handlers, context)
|
2460
2577
|
end
|
2461
2578
|
|
@@ -79,6 +79,9 @@ module Aws::EntityResolution
|
|
79
79
|
IdMappingJobMetrics = Shapes::StructureShape.new(name: 'IdMappingJobMetrics')
|
80
80
|
IdMappingJobOutputSource = Shapes::StructureShape.new(name: 'IdMappingJobOutputSource')
|
81
81
|
IdMappingJobOutputSourceConfig = Shapes::ListShape.new(name: 'IdMappingJobOutputSourceConfig')
|
82
|
+
IdMappingRoleArn = Shapes::StringShape.new(name: 'IdMappingRoleArn')
|
83
|
+
IdMappingRuleBasedProperties = Shapes::StructureShape.new(name: 'IdMappingRuleBasedProperties')
|
84
|
+
IdMappingRuleBasedPropertiesRulesList = Shapes::ListShape.new(name: 'IdMappingRuleBasedPropertiesRulesList')
|
82
85
|
IdMappingTechniques = Shapes::StructureShape.new(name: 'IdMappingTechniques')
|
83
86
|
IdMappingType = Shapes::StringShape.new(name: 'IdMappingType')
|
84
87
|
IdMappingWorkflowArn = Shapes::StringShape.new(name: 'IdMappingWorkflowArn')
|
@@ -88,8 +91,12 @@ module Aws::EntityResolution
|
|
88
91
|
IdMappingWorkflowList = Shapes::ListShape.new(name: 'IdMappingWorkflowList')
|
89
92
|
IdMappingWorkflowOutputSource = Shapes::StructureShape.new(name: 'IdMappingWorkflowOutputSource')
|
90
93
|
IdMappingWorkflowOutputSourceConfig = Shapes::ListShape.new(name: 'IdMappingWorkflowOutputSourceConfig')
|
94
|
+
IdMappingWorkflowRuleDefinitionType = Shapes::StringShape.new(name: 'IdMappingWorkflowRuleDefinitionType')
|
95
|
+
IdMappingWorkflowRuleDefinitionTypeList = Shapes::ListShape.new(name: 'IdMappingWorkflowRuleDefinitionTypeList')
|
91
96
|
IdMappingWorkflowSummary = Shapes::StructureShape.new(name: 'IdMappingWorkflowSummary')
|
92
97
|
IdNamespaceArn = Shapes::StringShape.new(name: 'IdNamespaceArn')
|
98
|
+
IdNamespaceIdMappingWorkflowMetadata = Shapes::StructureShape.new(name: 'IdNamespaceIdMappingWorkflowMetadata')
|
99
|
+
IdNamespaceIdMappingWorkflowMetadataList = Shapes::ListShape.new(name: 'IdNamespaceIdMappingWorkflowMetadataList')
|
93
100
|
IdNamespaceIdMappingWorkflowProperties = Shapes::StructureShape.new(name: 'IdNamespaceIdMappingWorkflowProperties')
|
94
101
|
IdNamespaceIdMappingWorkflowPropertiesList = Shapes::ListShape.new(name: 'IdNamespaceIdMappingWorkflowPropertiesList')
|
95
102
|
IdNamespaceInputSource = Shapes::StructureShape.new(name: 'IdNamespaceInputSource')
|
@@ -137,10 +144,13 @@ module Aws::EntityResolution
|
|
137
144
|
ListSchemaMappingsOutput = Shapes::StructureShape.new(name: 'ListSchemaMappingsOutput')
|
138
145
|
ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
|
139
146
|
ListTagsForResourceOutput = Shapes::StructureShape.new(name: 'ListTagsForResourceOutput')
|
147
|
+
MatchPurpose = Shapes::StringShape.new(name: 'MatchPurpose')
|
140
148
|
MatchingWorkflowArn = Shapes::StringShape.new(name: 'MatchingWorkflowArn')
|
141
149
|
MatchingWorkflowList = Shapes::ListShape.new(name: 'MatchingWorkflowList')
|
142
150
|
MatchingWorkflowSummary = Shapes::StructureShape.new(name: 'MatchingWorkflowSummary')
|
143
151
|
NamespaceProviderProperties = Shapes::StructureShape.new(name: 'NamespaceProviderProperties')
|
152
|
+
NamespaceRuleBasedProperties = Shapes::StructureShape.new(name: 'NamespaceRuleBasedProperties')
|
153
|
+
NamespaceRuleBasedPropertiesRulesList = Shapes::ListShape.new(name: 'NamespaceRuleBasedPropertiesRulesList')
|
144
154
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
145
155
|
OutputAttribute = Shapes::StructureShape.new(name: 'OutputAttribute')
|
146
156
|
OutputSource = Shapes::StructureShape.new(name: 'OutputSource')
|
@@ -165,6 +175,8 @@ module Aws::EntityResolution
|
|
165
175
|
RecordAttributeMap = Shapes::MapShape.new(name: 'RecordAttributeMap')
|
166
176
|
RecordAttributeMapKeyString = Shapes::StringShape.new(name: 'RecordAttributeMapKeyString')
|
167
177
|
RecordAttributeMapValueString = Shapes::StringShape.new(name: 'RecordAttributeMapValueString')
|
178
|
+
RecordMatchingModel = Shapes::StringShape.new(name: 'RecordMatchingModel')
|
179
|
+
RecordMatchingModelList = Shapes::ListShape.new(name: 'RecordMatchingModelList')
|
168
180
|
RequiredBucketActionsList = Shapes::ListShape.new(name: 'RequiredBucketActionsList')
|
169
181
|
ResolutionTechniques = Shapes::StructureShape.new(name: 'ResolutionTechniques')
|
170
182
|
ResolutionType = Shapes::StringShape.new(name: 'ResolutionType')
|
@@ -256,7 +268,7 @@ module Aws::EntityResolution
|
|
256
268
|
CreateIdMappingWorkflowInput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
257
269
|
CreateIdMappingWorkflowInput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
258
270
|
CreateIdMappingWorkflowInput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
259
|
-
CreateIdMappingWorkflowInput.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
271
|
+
CreateIdMappingWorkflowInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
260
272
|
CreateIdMappingWorkflowInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
261
273
|
CreateIdMappingWorkflowInput.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "workflowName"))
|
262
274
|
CreateIdMappingWorkflowInput.struct_class = Types::CreateIdMappingWorkflowInput
|
@@ -265,7 +277,7 @@ module Aws::EntityResolution
|
|
265
277
|
CreateIdMappingWorkflowOutput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
266
278
|
CreateIdMappingWorkflowOutput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
267
279
|
CreateIdMappingWorkflowOutput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
268
|
-
CreateIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
280
|
+
CreateIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
269
281
|
CreateIdMappingWorkflowOutput.add_member(:workflow_arn, Shapes::ShapeRef.new(shape: IdMappingWorkflowArn, required: true, location_name: "workflowArn"))
|
270
282
|
CreateIdMappingWorkflowOutput.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "workflowName"))
|
271
283
|
CreateIdMappingWorkflowOutput.struct_class = Types::CreateIdMappingWorkflowOutput
|
@@ -398,7 +410,7 @@ module Aws::EntityResolution
|
|
398
410
|
GetIdMappingWorkflowOutput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
399
411
|
GetIdMappingWorkflowOutput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
400
412
|
GetIdMappingWorkflowOutput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
401
|
-
GetIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
413
|
+
GetIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
402
414
|
GetIdMappingWorkflowOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
403
415
|
GetIdMappingWorkflowOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
404
416
|
GetIdMappingWorkflowOutput.add_member(:workflow_arn, Shapes::ShapeRef.new(shape: IdMappingWorkflowArn, required: true, location_name: "workflowArn"))
|
@@ -500,6 +512,9 @@ module Aws::EntityResolution
|
|
500
512
|
|
501
513
|
IdMappingJobMetrics.add_member(:input_records, Shapes::ShapeRef.new(shape: Integer, location_name: "inputRecords"))
|
502
514
|
IdMappingJobMetrics.add_member(:records_not_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "recordsNotProcessed"))
|
515
|
+
IdMappingJobMetrics.add_member(:total_mapped_records, Shapes::ShapeRef.new(shape: Integer, location_name: "totalMappedRecords"))
|
516
|
+
IdMappingJobMetrics.add_member(:total_mapped_source_records, Shapes::ShapeRef.new(shape: Integer, location_name: "totalMappedSourceRecords"))
|
517
|
+
IdMappingJobMetrics.add_member(:total_mapped_target_records, Shapes::ShapeRef.new(shape: Integer, location_name: "totalMappedTargetRecords"))
|
503
518
|
IdMappingJobMetrics.add_member(:total_records_processed, Shapes::ShapeRef.new(shape: Integer, location_name: "totalRecordsProcessed"))
|
504
519
|
IdMappingJobMetrics.struct_class = Types::IdMappingJobMetrics
|
505
520
|
|
@@ -510,8 +525,17 @@ module Aws::EntityResolution
|
|
510
525
|
|
511
526
|
IdMappingJobOutputSourceConfig.member = Shapes::ShapeRef.new(shape: IdMappingJobOutputSource)
|
512
527
|
|
528
|
+
IdMappingRuleBasedProperties.add_member(:attribute_matching_model, Shapes::ShapeRef.new(shape: AttributeMatchingModel, required: true, location_name: "attributeMatchingModel"))
|
529
|
+
IdMappingRuleBasedProperties.add_member(:record_matching_model, Shapes::ShapeRef.new(shape: RecordMatchingModel, required: true, location_name: "recordMatchingModel"))
|
530
|
+
IdMappingRuleBasedProperties.add_member(:rule_definition_type, Shapes::ShapeRef.new(shape: IdMappingWorkflowRuleDefinitionType, required: true, location_name: "ruleDefinitionType"))
|
531
|
+
IdMappingRuleBasedProperties.add_member(:rules, Shapes::ShapeRef.new(shape: IdMappingRuleBasedPropertiesRulesList, location_name: "rules"))
|
532
|
+
IdMappingRuleBasedProperties.struct_class = Types::IdMappingRuleBasedProperties
|
533
|
+
|
534
|
+
IdMappingRuleBasedPropertiesRulesList.member = Shapes::ShapeRef.new(shape: Rule)
|
535
|
+
|
513
536
|
IdMappingTechniques.add_member(:id_mapping_type, Shapes::ShapeRef.new(shape: IdMappingType, required: true, location_name: "idMappingType"))
|
514
537
|
IdMappingTechniques.add_member(:provider_properties, Shapes::ShapeRef.new(shape: ProviderProperties, location_name: "providerProperties"))
|
538
|
+
IdMappingTechniques.add_member(:rule_based_properties, Shapes::ShapeRef.new(shape: IdMappingRuleBasedProperties, location_name: "ruleBasedProperties"))
|
515
539
|
IdMappingTechniques.struct_class = Types::IdMappingTechniques
|
516
540
|
|
517
541
|
IdMappingWorkflowInputSource.add_member(:input_source_arn, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceInputSourceARNString, required: true, location_name: "inputSourceARN"))
|
@@ -529,14 +553,22 @@ module Aws::EntityResolution
|
|
529
553
|
|
530
554
|
IdMappingWorkflowOutputSourceConfig.member = Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSource)
|
531
555
|
|
556
|
+
IdMappingWorkflowRuleDefinitionTypeList.member = Shapes::ShapeRef.new(shape: IdMappingWorkflowRuleDefinitionType)
|
557
|
+
|
532
558
|
IdMappingWorkflowSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
533
559
|
IdMappingWorkflowSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
534
560
|
IdMappingWorkflowSummary.add_member(:workflow_arn, Shapes::ShapeRef.new(shape: IdMappingWorkflowArn, required: true, location_name: "workflowArn"))
|
535
561
|
IdMappingWorkflowSummary.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "workflowName"))
|
536
562
|
IdMappingWorkflowSummary.struct_class = Types::IdMappingWorkflowSummary
|
537
563
|
|
564
|
+
IdNamespaceIdMappingWorkflowMetadata.add_member(:id_mapping_type, Shapes::ShapeRef.new(shape: IdMappingType, required: true, location_name: "idMappingType"))
|
565
|
+
IdNamespaceIdMappingWorkflowMetadata.struct_class = Types::IdNamespaceIdMappingWorkflowMetadata
|
566
|
+
|
567
|
+
IdNamespaceIdMappingWorkflowMetadataList.member = Shapes::ShapeRef.new(shape: IdNamespaceIdMappingWorkflowMetadata)
|
568
|
+
|
538
569
|
IdNamespaceIdMappingWorkflowProperties.add_member(:id_mapping_type, Shapes::ShapeRef.new(shape: IdMappingType, required: true, location_name: "idMappingType"))
|
539
570
|
IdNamespaceIdMappingWorkflowProperties.add_member(:provider_properties, Shapes::ShapeRef.new(shape: NamespaceProviderProperties, location_name: "providerProperties"))
|
571
|
+
IdNamespaceIdMappingWorkflowProperties.add_member(:rule_based_properties, Shapes::ShapeRef.new(shape: NamespaceRuleBasedProperties, location_name: "ruleBasedProperties"))
|
540
572
|
IdNamespaceIdMappingWorkflowProperties.struct_class = Types::IdNamespaceIdMappingWorkflowProperties
|
541
573
|
|
542
574
|
IdNamespaceIdMappingWorkflowPropertiesList.member = Shapes::ShapeRef.new(shape: IdNamespaceIdMappingWorkflowProperties)
|
@@ -551,6 +583,7 @@ module Aws::EntityResolution
|
|
551
583
|
|
552
584
|
IdNamespaceSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
553
585
|
IdNamespaceSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
586
|
+
IdNamespaceSummary.add_member(:id_mapping_workflow_properties, Shapes::ShapeRef.new(shape: IdNamespaceIdMappingWorkflowMetadataList, location_name: "idMappingWorkflowProperties"))
|
554
587
|
IdNamespaceSummary.add_member(:id_namespace_arn, Shapes::ShapeRef.new(shape: IdNamespaceArn, required: true, location_name: "idNamespaceArn"))
|
555
588
|
IdNamespaceSummary.add_member(:id_namespace_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "idNamespaceName"))
|
556
589
|
IdNamespaceSummary.add_member(:type, Shapes::ShapeRef.new(shape: IdNamespaceType, required: true, location_name: "type"))
|
@@ -672,6 +705,14 @@ module Aws::EntityResolution
|
|
672
705
|
NamespaceProviderProperties.add_member(:provider_service_arn, Shapes::ShapeRef.new(shape: ProviderServiceArn, required: true, location_name: "providerServiceArn"))
|
673
706
|
NamespaceProviderProperties.struct_class = Types::NamespaceProviderProperties
|
674
707
|
|
708
|
+
NamespaceRuleBasedProperties.add_member(:attribute_matching_model, Shapes::ShapeRef.new(shape: AttributeMatchingModel, location_name: "attributeMatchingModel"))
|
709
|
+
NamespaceRuleBasedProperties.add_member(:record_matching_models, Shapes::ShapeRef.new(shape: RecordMatchingModelList, location_name: "recordMatchingModels"))
|
710
|
+
NamespaceRuleBasedProperties.add_member(:rule_definition_types, Shapes::ShapeRef.new(shape: IdMappingWorkflowRuleDefinitionTypeList, location_name: "ruleDefinitionTypes"))
|
711
|
+
NamespaceRuleBasedProperties.add_member(:rules, Shapes::ShapeRef.new(shape: NamespaceRuleBasedPropertiesRulesList, location_name: "rules"))
|
712
|
+
NamespaceRuleBasedProperties.struct_class = Types::NamespaceRuleBasedProperties
|
713
|
+
|
714
|
+
NamespaceRuleBasedPropertiesRulesList.member = Shapes::ShapeRef.new(shape: Rule)
|
715
|
+
|
675
716
|
OutputAttribute.add_member(:hashed, Shapes::ShapeRef.new(shape: Boolean, location_name: "hashed"))
|
676
717
|
OutputAttribute.add_member(:name, Shapes::ShapeRef.new(shape: AttributeName, required: true, location_name: "name"))
|
677
718
|
OutputAttribute.struct_class = Types::OutputAttribute
|
@@ -746,6 +787,8 @@ module Aws::EntityResolution
|
|
746
787
|
RecordAttributeMap.key = Shapes::ShapeRef.new(shape: RecordAttributeMapKeyString)
|
747
788
|
RecordAttributeMap.value = Shapes::ShapeRef.new(shape: RecordAttributeMapValueString)
|
748
789
|
|
790
|
+
RecordMatchingModelList.member = Shapes::ShapeRef.new(shape: RecordMatchingModel)
|
791
|
+
|
749
792
|
RequiredBucketActionsList.member = Shapes::ShapeRef.new(shape: String)
|
750
793
|
|
751
794
|
ResolutionTechniques.add_member(:provider_properties, Shapes::ShapeRef.new(shape: ProviderProperties, location_name: "providerProperties"))
|
@@ -761,6 +804,7 @@ module Aws::EntityResolution
|
|
761
804
|
Rule.struct_class = Types::Rule
|
762
805
|
|
763
806
|
RuleBasedProperties.add_member(:attribute_matching_model, Shapes::ShapeRef.new(shape: AttributeMatchingModel, required: true, location_name: "attributeMatchingModel"))
|
807
|
+
RuleBasedProperties.add_member(:match_purpose, Shapes::ShapeRef.new(shape: MatchPurpose, location_name: "matchPurpose"))
|
764
808
|
RuleBasedProperties.add_member(:rules, Shapes::ShapeRef.new(shape: RuleBasedPropertiesRulesList, required: true, location_name: "rules"))
|
765
809
|
RuleBasedProperties.struct_class = Types::RuleBasedProperties
|
766
810
|
|
@@ -770,6 +814,7 @@ module Aws::EntityResolution
|
|
770
814
|
|
771
815
|
SchemaInputAttribute.add_member(:field_name, Shapes::ShapeRef.new(shape: AttributeName, required: true, location_name: "fieldName"))
|
772
816
|
SchemaInputAttribute.add_member(:group_name, Shapes::ShapeRef.new(shape: AttributeName, location_name: "groupName"))
|
817
|
+
SchemaInputAttribute.add_member(:hashed, Shapes::ShapeRef.new(shape: Boolean, location_name: "hashed"))
|
773
818
|
SchemaInputAttribute.add_member(:match_key, Shapes::ShapeRef.new(shape: AttributeName, location_name: "matchKey"))
|
774
819
|
SchemaInputAttribute.add_member(:sub_type, Shapes::ShapeRef.new(shape: AttributeName, location_name: "subType"))
|
775
820
|
SchemaInputAttribute.add_member(:type, Shapes::ShapeRef.new(shape: SchemaAttributeType, required: true, location_name: "type"))
|
@@ -834,7 +879,7 @@ module Aws::EntityResolution
|
|
834
879
|
UpdateIdMappingWorkflowInput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
835
880
|
UpdateIdMappingWorkflowInput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
836
881
|
UpdateIdMappingWorkflowInput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
837
|
-
UpdateIdMappingWorkflowInput.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
882
|
+
UpdateIdMappingWorkflowInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
838
883
|
UpdateIdMappingWorkflowInput.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location: "uri", location_name: "workflowName"))
|
839
884
|
UpdateIdMappingWorkflowInput.struct_class = Types::UpdateIdMappingWorkflowInput
|
840
885
|
|
@@ -842,7 +887,7 @@ module Aws::EntityResolution
|
|
842
887
|
UpdateIdMappingWorkflowOutput.add_member(:id_mapping_techniques, Shapes::ShapeRef.new(shape: IdMappingTechniques, required: true, location_name: "idMappingTechniques"))
|
843
888
|
UpdateIdMappingWorkflowOutput.add_member(:input_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowInputSourceConfig, required: true, location_name: "inputSourceConfig"))
|
844
889
|
UpdateIdMappingWorkflowOutput.add_member(:output_source_config, Shapes::ShapeRef.new(shape: IdMappingWorkflowOutputSourceConfig, location_name: "outputSourceConfig"))
|
845
|
-
UpdateIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
890
|
+
UpdateIdMappingWorkflowOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IdMappingRoleArn, location_name: "roleArn"))
|
846
891
|
UpdateIdMappingWorkflowOutput.add_member(:workflow_arn, Shapes::ShapeRef.new(shape: IdMappingWorkflowArn, required: true, location_name: "workflowArn"))
|
847
892
|
UpdateIdMappingWorkflowOutput.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "workflowName"))
|
848
893
|
UpdateIdMappingWorkflowOutput.struct_class = Types::UpdateIdMappingWorkflowOutput
|
@@ -905,9 +950,11 @@ module Aws::EntityResolution
|
|
905
950
|
|
906
951
|
api.metadata = {
|
907
952
|
"apiVersion" => "2018-05-10",
|
953
|
+
"auth" => ["aws.auth#sigv4"],
|
908
954
|
"endpointPrefix" => "entityresolution",
|
909
955
|
"jsonVersion" => "1.1",
|
910
956
|
"protocol" => "rest-json",
|
957
|
+
"protocols" => ["rest-json"],
|
911
958
|
"serviceAbbreviation" => "AWSEntityResolution",
|
912
959
|
"serviceFullName" => "AWS EntityResolution",
|
913
960
|
"serviceId" => "EntityResolution",
|