Class: Aws::GlueDataBrew::Types::ColumnSelector

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

Overview

Selector of a column from a dataset for profile job configuration. One selector includes either a column name or a regular expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of a column from a dataset.

Returns:

  • (String)


93
94
95
96
97
98
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 93

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

#regexString

A regular expression for selecting a column from a dataset.

Returns:

  • (String)


93
94
95
96
97
98
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 93

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