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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-entityresolution/types.rb

Overview

An object containing the ‘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>)


2989
2990
2991
2992
2993
2994
# File 'lib/aws-sdk-entityresolution/types.rb', line 2989

class Rule < Struct.new(
  :rule_name,
  :matching_keys)
  SENSITIVE = []
  include Aws::Structure
end

#rule_nameString

A name for the matching rule.

Returns:

  • (String)


2989
2990
2991
2992
2993
2994
# File 'lib/aws-sdk-entityresolution/types.rb', line 2989

class Rule < Struct.new(
  :rule_name,
  :matching_keys)
  SENSITIVE = []
  include Aws::Structure
end