Class: Aws::EntityResolution::Types::Rule
- Inherits:
-
Struct
- Object
- Struct
- Aws::EntityResolution::Types::Rule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-entityresolution/types.rb
Overview
An object containing ‘RuleName`, and `MatchingKeys`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#matching_keys ⇒ Array<String>
A list of ‘MatchingKeys`.
-
#rule_name ⇒ String
A name for the matching rule.
Instance Attribute Details
#matching_keys ⇒ Array<String>
A list of ‘MatchingKeys`. The `MatchingKeys` must have been defined in the `SchemaMapping`. Two records are considered to match according to this rule if all of the `MatchingKeys` match.
2628 2629 2630 2631 2632 2633 |
# File 'lib/aws-sdk-entityresolution/types.rb', line 2628 class Rule < Struct.new( :matching_keys, :rule_name) SENSITIVE = [] include Aws::Structure end |