Class: Aws::EntityResolution::Types::OutputAttribute

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

Overview

A list of OutputAttribute objects, each of which have the fields Name and Hashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hashedBoolean

Enables the ability to hash the column values in the output.

Returns:

  • (Boolean)


2114
2115
2116
2117
2118
2119
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 2114

class OutputAttribute < Struct.new(
  :hashed,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

A name of a column to be written to the output. This must be an InputField name in the schema mapping.

Returns:

  • (String)


2114
2115
2116
2117
2118
2119
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 2114

class OutputAttribute < Struct.new(
  :hashed,
  :name)
  SENSITIVE = []
  include Aws::Structure
end