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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-entityresolution/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>)


2466
2467
2468
2469
2470
2471
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 2466

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

#rule_nameString

A name for the matching rule.

Returns:

  • (String)


2466
2467
2468
2469
2470
2471
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 2466

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