aws-sdk-entityresolution 1.45.0 → 1.46.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: 37e32809e1ac48c134ed274bfa83ec20cda98b6e95fd2ce5d6499f9d97723ae2
4
- data.tar.gz: 6518b5790ff810d9473e47e3fc64c0fbc4b8fe3556aed14786c0324108c22ffc
3
+ metadata.gz: '079f4b6a08bfefe80bbfaeca19a3d94da193202451b0cf624c8fad87e7985128'
4
+ data.tar.gz: 2507478a32102d1c6daab110a36b78a5e8022edb367ecaa35619b461f51af71a
5
5
  SHA512:
6
- metadata.gz: 16f02740f7ea1c5c39f5e5315fbadaa607d58b7b4962df52ccbb2c8ee7a9ec844a07fbc4d28043408abace2f27def49a41feafa10ef9bb91d9161f1cad9394a3
7
- data.tar.gz: 67719ea016049369da1571330c3c55dbe27c85cfb3c633034726e93357fd25dc4ffab5143713b427130eda5e6e826c44de84c91e3ead2b822de7b47485784f9b
6
+ metadata.gz: 2c02e977e1fc825af951661f50577ad7bb2040bb212d8f2d14a148e2643f0b0f97a67d3575f481d9ef7e6eac0e6f4a48ccf59a5b07567c4753bd9258c4d9c0be
7
+ data.tar.gz: 7ca49a4bfa7f3df0fe10da6f800064c7ab0ba04b46bc07ba347c22a0b9a1c32c31b439cd45a90aeee86f43774b5ace25d9e930059dd3230cf6666b616f7f62f6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2026-05-01)
5
+ ------------------
6
+
7
+ * Feature - Add support for transitive matching in AWS Entity Resolution rule-based matching workflows. When enabled, records that match through different rules are grouped together into the same match group, allowing related records to be connected across rule levels.
8
+
4
9
  1.45.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.46.0
@@ -943,6 +943,9 @@ module Aws::EntityResolution
943
943
  # condition: "RuleConditionConditionString", # required
944
944
  # },
945
945
  # ],
946
+ # matching_config: {
947
+ # enable_transitive_matching: false,
948
+ # },
946
949
  # },
947
950
  # provider_properties: {
948
951
  # provider_service_arn: "ProviderServiceArn", # required
@@ -990,6 +993,7 @@ module Aws::EntityResolution
990
993
  # resp.resolution_techniques.rule_condition_properties.rules #=> Array
991
994
  # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
992
995
  # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
996
+ # resp.resolution_techniques.rule_condition_properties.matching_config.enable_transitive_matching #=> Boolean
993
997
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
994
998
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
995
999
  # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
@@ -1649,6 +1653,7 @@ module Aws::EntityResolution
1649
1653
  # resp.resolution_techniques.rule_condition_properties.rules #=> Array
1650
1654
  # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
1651
1655
  # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
1656
+ # resp.resolution_techniques.rule_condition_properties.matching_config.enable_transitive_matching #=> Boolean
1652
1657
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
1653
1658
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
1654
1659
  # resp.created_at #=> Time
@@ -2676,6 +2681,9 @@ module Aws::EntityResolution
2676
2681
  # condition: "RuleConditionConditionString", # required
2677
2682
  # },
2678
2683
  # ],
2684
+ # matching_config: {
2685
+ # enable_transitive_matching: false,
2686
+ # },
2679
2687
  # },
2680
2688
  # provider_properties: {
2681
2689
  # provider_service_arn: "ProviderServiceArn", # required
@@ -2719,6 +2727,7 @@ module Aws::EntityResolution
2719
2727
  # resp.resolution_techniques.rule_condition_properties.rules #=> Array
2720
2728
  # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
2721
2729
  # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
2730
+ # resp.resolution_techniques.rule_condition_properties.matching_config.enable_transitive_matching #=> Boolean
2722
2731
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
2723
2732
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
2724
2733
  # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
@@ -2817,7 +2826,7 @@ module Aws::EntityResolution
2817
2826
  tracer: tracer
2818
2827
  )
2819
2828
  context[:gem_name] = 'aws-sdk-entityresolution'
2820
- context[:gem_version] = '1.45.0'
2829
+ context[:gem_version] = '1.46.0'
2821
2830
  Seahorse::Client::Request.new(handlers, context)
2822
2831
  end
2823
2832
 
@@ -160,6 +160,7 @@ module Aws::EntityResolution
160
160
  MatchPurpose = Shapes::StringShape.new(name: 'MatchPurpose')
161
161
  MatchedRecord = Shapes::StructureShape.new(name: 'MatchedRecord')
162
162
  MatchedRecordsList = Shapes::ListShape.new(name: 'MatchedRecordsList')
163
+ MatchingConfig = Shapes::StructureShape.new(name: 'MatchingConfig')
163
164
  MatchingWorkflowArn = Shapes::StringShape.new(name: 'MatchingWorkflowArn')
164
165
  MatchingWorkflowList = Shapes::ListShape.new(name: 'MatchingWorkflowList')
165
166
  MatchingWorkflowSummary = Shapes::StructureShape.new(name: 'MatchingWorkflowSummary')
@@ -770,6 +771,9 @@ module Aws::EntityResolution
770
771
 
771
772
  MatchedRecordsList.member = Shapes::ShapeRef.new(shape: MatchedRecord)
772
773
 
774
+ MatchingConfig.add_member(:enable_transitive_matching, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableTransitiveMatching"))
775
+ MatchingConfig.struct_class = Types::MatchingConfig
776
+
773
777
  MatchingWorkflowList.member = Shapes::ShapeRef.new(shape: MatchingWorkflowSummary)
774
778
 
775
779
  MatchingWorkflowSummary.add_member(:workflow_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "workflowName"))
@@ -903,6 +907,7 @@ module Aws::EntityResolution
903
907
  RuleCondition.struct_class = Types::RuleCondition
904
908
 
905
909
  RuleConditionProperties.add_member(:rules, Shapes::ShapeRef.new(shape: RuleConditionPropertiesRulesList, required: true, location_name: "rules"))
910
+ RuleConditionProperties.add_member(:matching_config, Shapes::ShapeRef.new(shape: MatchingConfig, location_name: "matchingConfig"))
906
911
  RuleConditionProperties.struct_class = Types::RuleConditionProperties
907
912
 
908
913
  RuleConditionPropertiesRulesList.member = Shapes::ShapeRef.new(shape: RuleCondition)
@@ -2427,6 +2427,23 @@ module Aws::EntityResolution
2427
2427
  include Aws::Structure
2428
2428
  end
2429
2429
 
2430
+ # An object that contains configuration settings for the matching
2431
+ # process in a rule-based matching workflow.
2432
+ #
2433
+ # @!attribute [rw] enable_transitive_matching
2434
+ # Enables transitive matching for the rule-based matching workflow.
2435
+ # When enabled, records that match through different rules are grouped
2436
+ # together into the same match group.
2437
+ # @return [Boolean]
2438
+ #
2439
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/MatchingConfig AWS API Documentation
2440
+ #
2441
+ class MatchingConfig < Struct.new(
2442
+ :enable_transitive_matching)
2443
+ SENSITIVE = []
2444
+ include Aws::Structure
2445
+ end
2446
+
2430
2447
  # A list of `MatchingWorkflowSummary` objects, each of which contain the
2431
2448
  # fields `workflowName`, `workflowArn`, `resolutionType`, `createdAt`,
2432
2449
  # `updatedAt`.
@@ -3063,10 +3080,16 @@ module Aws::EntityResolution
3063
3080
  # `condition`.
3064
3081
  # @return [Array<Types::RuleCondition>]
3065
3082
  #
3083
+ # @!attribute [rw] matching_config
3084
+ # An object that contains configuration settings for the matching
3085
+ # process.
3086
+ # @return [Types::MatchingConfig]
3087
+ #
3066
3088
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/RuleConditionProperties AWS API Documentation
3067
3089
  #
3068
3090
  class RuleConditionProperties < Struct.new(
3069
- :rules)
3091
+ :rules,
3092
+ :matching_config)
3070
3093
  SENSITIVE = []
3071
3094
  include Aws::Structure
3072
3095
  end
@@ -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.45.0'
57
+ GEM_VERSION = '1.46.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -275,7 +275,10 @@ module Aws
275
275
  rule_name: ::String,
276
276
  condition: ::String
277
277
  },
278
- ]
278
+ ],
279
+ matching_config: {
280
+ enable_transitive_matching: bool?
281
+ }?
279
282
  }?,
280
283
  provider_properties: {
281
284
  provider_service_arn: ::String,
@@ -871,7 +874,10 @@ module Aws
871
874
  rule_name: ::String,
872
875
  condition: ::String
873
876
  },
874
- ]
877
+ ],
878
+ matching_config: {
879
+ enable_transitive_matching: bool?
880
+ }?
875
881
  }?,
876
882
  provider_properties: {
877
883
  provider_service_arn: ::String,
data/sig/types.rbs CHANGED
@@ -652,6 +652,11 @@ module Aws::EntityResolution
652
652
  SENSITIVE: []
653
653
  end
654
654
 
655
+ class MatchingConfig
656
+ attr_accessor enable_transitive_matching: bool
657
+ SENSITIVE: []
658
+ end
659
+
655
660
  class MatchingWorkflowSummary
656
661
  attr_accessor workflow_name: ::String
657
662
  attr_accessor workflow_arn: ::String
@@ -807,6 +812,7 @@ module Aws::EntityResolution
807
812
 
808
813
  class RuleConditionProperties
809
814
  attr_accessor rules: ::Array[Types::RuleCondition]
815
+ attr_accessor matching_config: Types::MatchingConfig
810
816
  SENSITIVE: []
811
817
  end
812
818
 
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.45.0
4
+ version: 1.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services