Class: Aws::EntityResolution::Types::Rule

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#matching_keysArray<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.

Returns:

  • (Array<String>)


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

#rule_nameString

A name for the matching rule.

Returns:

  • (String)


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