aws-sdk-entityresolution 1.51.0 → 1.53.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0acdff8aa7df3b2c203196e871eb3d4ba92becd9418808576eb928a49276b1d9
4
- data.tar.gz: fb562ff806f0257f60b39a0539f7ba47af97b4e876d2a88b0ad0379cf6731d69
3
+ metadata.gz: af1ea594afa14e4f1e4b5d1cbddd595afd72d6b4f7705ae4f520169f575718dc
4
+ data.tar.gz: 85401586c1cf80fe25a0c9d83d63718536470b50bf9ba81cecfe30d141746ddd
5
5
  SHA512:
6
- metadata.gz: 847557d4bc87a455f285fb451115317e1303d7d2415cade6deecc9122e3bd408cc226ab5e1f8153b8e10d327bc939b210b0b30aa55cd80695ee79fe80f86008b
7
- data.tar.gz: bc8af1c523c4811eeffa05f203229407e49cb27e533b5b3a2bdc305f64b3a1fed7aaeff694bcba666a12136a3448e640f40d59a45d3f81a21fde526a0324e6a4
6
+ metadata.gz: 3a41eff0eccd0b761c55ba5f8737ea29187d39a9270d031cf3bb5764d750af3adecfe92402c2db313bd52ed42c1fb40f0c147dfd31edfae963b9e90562b8f3cb
7
+ data.tar.gz: 3524d1935a474cd828b00a12c66f57ed31cef463886c652d9c6ce044c7d4ea9ef2895483aaf3daf3856b6c5b929860278c639fafbf1335d0a25519a20004a618
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2026-08-18)
5
+ ------------------
6
+
7
+ * Feature - Added ResourceNotFoundException to DeleteSchemaMapping, DeleteMatchingWorkflow, DeleteIdMappingWorkflow, and DeleteIdNamespace. These operations now return a 404 ResourceNotFoundException (previously a 200 Success) when the target resource does not exist.
8
+
9
+ 1.52.0 (2026-07-21)
10
+ ------------------
11
+
12
+ * Feature - Add support for real time matching with AWS Entity Resolution matching workflows with advanced rule sets.
13
+
4
14
  1.51.0 (2026-07-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.53.0
@@ -844,8 +844,8 @@ module Aws::EntityResolution
844
844
  # processing job. The workflow name must be unique. To modify an
845
845
  # existing workflow, use `UpdateMatchingWorkflow`.
846
846
  #
847
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
848
- # incremental processing is not supported.
847
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
848
+ # processing is not supported.
849
849
  #
850
850
  # @option params [required, String] :workflow_name
851
851
  # The name of the workflow. There can't be multiple `MatchingWorkflows`
@@ -871,8 +871,8 @@ module Aws::EntityResolution
871
871
  # contains only the `incrementalRunType` field, which appears as
872
872
  # "Automatic" in the console.
873
873
  #
874
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
875
- # incremental processing is not supported.
874
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
875
+ # processing is not supported.
876
876
  #
877
877
  # @option params [required, String] :role_arn
878
878
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
@@ -945,6 +945,7 @@ module Aws::EntityResolution
945
945
  # enable_transitive_matching: false,
946
946
  # },
947
947
  # },
948
+ # enable_real_time_matching: false,
948
949
  # provider_properties: {
949
950
  # provider_service_arn: "ProviderServiceArn", # required
950
951
  # provider_configuration: {
@@ -992,6 +993,7 @@ module Aws::EntityResolution
992
993
  # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
993
994
  # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
994
995
  # resp.resolution_techniques.rule_condition_properties.matching_config.enable_transitive_matching #=> Boolean
996
+ # resp.resolution_techniques.enable_real_time_matching #=> Boolean
995
997
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
996
998
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
997
999
  # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
@@ -1075,8 +1077,9 @@ module Aws::EntityResolution
1075
1077
  req.send_request(options)
1076
1078
  end
1077
1079
 
1078
- # Deletes the `IdMappingWorkflow` with a given name. This operation will
1079
- # succeed even if a workflow with the given name does not exist.
1080
+ # Deletes the `IdMappingWorkflow` with a given name. This operation
1081
+ # returns a `ResourceNotFoundException` if a workflow with the given
1082
+ # name does not exist.
1080
1083
  #
1081
1084
  # @option params [required, String] :workflow_name
1082
1085
  # The name of the workflow to be deleted.
@@ -1104,7 +1107,9 @@ module Aws::EntityResolution
1104
1107
  req.send_request(options)
1105
1108
  end
1106
1109
 
1107
- # Deletes the `IdNamespace` with a given name.
1110
+ # Deletes the `IdNamespace` with a given name. This operation returns a
1111
+ # `ResourceNotFoundException` if an ID namespace with the given name
1112
+ # does not exist.
1108
1113
  #
1109
1114
  # @option params [required, String] :id_namespace_name
1110
1115
  # The name of the ID namespace.
@@ -1132,8 +1137,9 @@ module Aws::EntityResolution
1132
1137
  req.send_request(options)
1133
1138
  end
1134
1139
 
1135
- # Deletes the `MatchingWorkflow` with a given name. This operation will
1136
- # succeed even if a workflow with the given name does not exist.
1140
+ # Deletes the `MatchingWorkflow` with a given name. This operation
1141
+ # returns a `ResourceNotFoundException` if a workflow with the given
1142
+ # name does not exist.
1137
1143
  #
1138
1144
  # @option params [required, String] :workflow_name
1139
1145
  # The name of the workflow to be retrieved.
@@ -1198,10 +1204,11 @@ module Aws::EntityResolution
1198
1204
  req.send_request(options)
1199
1205
  end
1200
1206
 
1201
- # Deletes the `SchemaMapping` with a given name. This operation will
1202
- # succeed even if a schema with the given name does not exist. This
1203
- # operation will fail if there is a `MatchingWorkflow` object that
1204
- # references the `SchemaMapping` in the workflow's `InputSourceConfig`.
1207
+ # Deletes the `SchemaMapping` with a given name. This operation returns
1208
+ # a `ResourceNotFoundException` if a schema with the given name does not
1209
+ # exist. This operation will fail if there is a `MatchingWorkflow`
1210
+ # object that references the `SchemaMapping` in the workflow's
1211
+ # `InputSourceConfig`.
1205
1212
  #
1206
1213
  # @option params [required, String] :schema_name
1207
1214
  # The name of the schema to delete.
@@ -1269,6 +1276,10 @@ module Aws::EntityResolution
1269
1276
  # updates processed asynchronously. Provides fastest response time but
1270
1277
  # should only be used for records known to be unique.
1271
1278
  #
1279
+ # <note markdown="1"> Advanced matching workflows don't support the `processingType` field.
1280
+ #
1281
+ # </note>
1282
+ #
1272
1283
  # @return [Types::GenerateMatchIdOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1273
1284
  #
1274
1285
  # * {Types::GenerateMatchIdOutput#match_groups #match_groups} => Array&lt;Types::MatchGroup&gt;
@@ -1652,6 +1663,7 @@ module Aws::EntityResolution
1652
1663
  # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
1653
1664
  # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
1654
1665
  # resp.resolution_techniques.rule_condition_properties.matching_config.enable_transitive_matching #=> Boolean
1666
+ # resp.resolution_techniques.enable_real_time_matching #=> Boolean
1655
1667
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
1656
1668
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
1657
1669
  # resp.created_at #=> Time
@@ -2587,8 +2599,8 @@ module Aws::EntityResolution
2587
2599
  # Updates an existing matching workflow. The workflow must already exist
2588
2600
  # for this operation to succeed.
2589
2601
  #
2590
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
2591
- # incremental processing is not supported.
2602
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
2603
+ # processing is not supported.
2592
2604
  #
2593
2605
  # @option params [required, String] :workflow_name
2594
2606
  # The name of the workflow to be retrieved.
@@ -2613,8 +2625,8 @@ module Aws::EntityResolution
2613
2625
  # contains only the `incrementalRunType` field, which appears as
2614
2626
  # "Automatic" in the console.
2615
2627
  #
2616
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
2617
- # incremental processing is not supported.
2628
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
2629
+ # processing is not supported.
2618
2630
  #
2619
2631
  # @option params [required, String] :role_arn
2620
2632
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
@@ -2683,6 +2695,7 @@ module Aws::EntityResolution
2683
2695
  # enable_transitive_matching: false,
2684
2696
  # },
2685
2697
  # },
2698
+ # enable_real_time_matching: false,
2686
2699
  # provider_properties: {
2687
2700
  # provider_service_arn: "ProviderServiceArn", # required
2688
2701
  # provider_configuration: {
@@ -2726,6 +2739,7 @@ module Aws::EntityResolution
2726
2739
  # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
2727
2740
  # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
2728
2741
  # resp.resolution_techniques.rule_condition_properties.matching_config.enable_transitive_matching #=> Boolean
2742
+ # resp.resolution_techniques.enable_real_time_matching #=> Boolean
2729
2743
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
2730
2744
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
2731
2745
  # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
@@ -2824,7 +2838,7 @@ module Aws::EntityResolution
2824
2838
  tracer: tracer
2825
2839
  )
2826
2840
  context[:gem_name] = 'aws-sdk-entityresolution'
2827
- context[:gem_version] = '1.51.0'
2841
+ context[:gem_version] = '1.53.0'
2828
2842
  Seahorse::Client::Request.new(handlers, context)
2829
2843
  end
2830
2844
 
@@ -885,6 +885,7 @@ module Aws::EntityResolution
885
885
  ResolutionTechniques.add_member(:resolution_type, Shapes::ShapeRef.new(shape: ResolutionType, required: true, location_name: "resolutionType"))
886
886
  ResolutionTechniques.add_member(:rule_based_properties, Shapes::ShapeRef.new(shape: RuleBasedProperties, location_name: "ruleBasedProperties"))
887
887
  ResolutionTechniques.add_member(:rule_condition_properties, Shapes::ShapeRef.new(shape: RuleConditionProperties, location_name: "ruleConditionProperties"))
888
+ ResolutionTechniques.add_member(:enable_real_time_matching, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableRealTimeMatching"))
888
889
  ResolutionTechniques.add_member(:provider_properties, Shapes::ShapeRef.new(shape: ProviderProperties, location_name: "providerProperties"))
889
890
  ResolutionTechniques.struct_class = Types::ResolutionTechniques
890
891
 
@@ -1158,6 +1159,7 @@ module Aws::EntityResolution
1158
1159
  o.output = Shapes::ShapeRef.new(shape: DeleteIdMappingWorkflowOutput)
1159
1160
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1160
1161
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1162
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1161
1163
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1162
1164
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1163
1165
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -1171,6 +1173,7 @@ module Aws::EntityResolution
1171
1173
  o.output = Shapes::ShapeRef.new(shape: DeleteIdNamespaceOutput)
1172
1174
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1173
1175
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1176
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1174
1177
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1175
1178
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1176
1179
  end)
@@ -1183,6 +1186,7 @@ module Aws::EntityResolution
1183
1186
  o.output = Shapes::ShapeRef.new(shape: DeleteMatchingWorkflowOutput)
1184
1187
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1185
1188
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1189
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1186
1190
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1187
1191
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1188
1192
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -1210,6 +1214,7 @@ module Aws::EntityResolution
1210
1214
  o.output = Shapes::ShapeRef.new(shape: DeleteSchemaMappingOutput)
1211
1215
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1212
1216
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1217
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1213
1218
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1214
1219
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1215
1220
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -418,8 +418,8 @@ module Aws::EntityResolution
418
418
  # object contains only the `incrementalRunType` field, which appears
419
419
  # as "Automatic" in the console.
420
420
  #
421
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
422
- # incremental processing is not supported.
421
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
422
+ # processing is not supported.
423
423
  # @return [Types::IncrementalRunConfig]
424
424
  #
425
425
  # @!attribute [rw] role_arn
@@ -855,6 +855,11 @@ module Aws::EntityResolution
855
855
  # console): Generates new match IDs without checking existing matches,
856
856
  # with updates processed asynchronously. Provides fastest response
857
857
  # time but should only be used for records known to be unique.
858
+ #
859
+ # <note markdown="1"> Advanced matching workflows don't support the `processingType`
860
+ # field.
861
+ #
862
+ # </note>
858
863
  # @return [String]
859
864
  #
860
865
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GenerateMatchIdInput AWS API Documentation
@@ -1930,15 +1935,15 @@ module Aws::EntityResolution
1930
1935
  # contains only the `incrementalRunType` field, which appears as
1931
1936
  # "Automatic" in the console.
1932
1937
  #
1933
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
1934
- # incremental processing is not supported.
1938
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
1939
+ # processing is not supported.
1935
1940
  #
1936
1941
  # @!attribute [rw] incremental_run_type
1937
1942
  # The type of incremental run. The only valid value is `IMMEDIATE`.
1938
1943
  # This appears as "Automatic" in the console.
1939
1944
  #
1940
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
1941
- # incremental processing is not supported.
1945
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
1946
+ # processing is not supported.
1942
1947
  # @return [String]
1943
1948
  #
1944
1949
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IncrementalRunConfig AWS API Documentation
@@ -2944,6 +2949,12 @@ module Aws::EntityResolution
2944
2949
  # An object containing the `rules` for a matching workflow.
2945
2950
  # @return [Types::RuleConditionProperties]
2946
2951
  #
2952
+ # @!attribute [rw] enable_real_time_matching
2953
+ # Specifies whether real-time matching is enabled for the rule-based
2954
+ # matching workflow. When you enable real-time matching, you can use
2955
+ # the `GenerateMatchId` operation with the workflow.
2956
+ # @return [Boolean]
2957
+ #
2947
2958
  # @!attribute [rw] provider_properties
2948
2959
  # The properties of the provider service.
2949
2960
  # @return [Types::ProviderProperties]
@@ -2954,6 +2965,7 @@ module Aws::EntityResolution
2954
2965
  :resolution_type,
2955
2966
  :rule_based_properties,
2956
2967
  :rule_condition_properties,
2968
+ :enable_real_time_matching,
2957
2969
  :provider_properties)
2958
2970
  SENSITIVE = []
2959
2971
  include Aws::Structure
@@ -3602,8 +3614,8 @@ module Aws::EntityResolution
3602
3614
  # object contains only the `incrementalRunType` field, which appears
3603
3615
  # as "Automatic" in the console.
3604
3616
  #
3605
- # For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER`,
3606
- # incremental processing is not supported.
3617
+ # For workflows where `resolutionType` is `PROVIDER`, incremental
3618
+ # processing is not supported.
3607
3619
  # @return [Types::IncrementalRunConfig]
3608
3620
  #
3609
3621
  # @!attribute [rw] role_arn
@@ -54,7 +54,7 @@ module Aws::EntityResolution
54
54
  autoload :EndpointProvider, 'aws-sdk-entityresolution/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-entityresolution/endpoints'
56
56
 
57
- GEM_VERSION = '1.51.0'
57
+ GEM_VERSION = '1.53.0'
58
58
 
59
59
  end
60
60
 
data/sig/params.rbs CHANGED
@@ -100,6 +100,7 @@ module Aws
100
100
  resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER"),
101
101
  rule_based_properties: Params::rule_based_properties?,
102
102
  rule_condition_properties: Params::rule_condition_properties?,
103
+ enable_real_time_matching: bool?,
103
104
  provider_properties: Params::provider_properties?
104
105
  }
105
106
 
data/sig/types.rbs CHANGED
@@ -782,6 +782,7 @@ module Aws::EntityResolution
782
782
  attr_accessor resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER")
783
783
  attr_accessor rule_based_properties: Types::RuleBasedProperties
784
784
  attr_accessor rule_condition_properties: Types::RuleConditionProperties
785
+ attr_accessor enable_real_time_matching: bool
785
786
  attr_accessor provider_properties: Types::ProviderProperties
786
787
  SENSITIVE: []
787
788
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-entityresolution
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.51.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services