Class: Aws::Glue::Types::ColumnRowFilter

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

Overview

A filter that uses both column-level and row-level filtering.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

A string containing the name of the column.

Returns:

  • (String)


2608
2609
2610
2611
2612
2613
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2608

class ColumnRowFilter < Struct.new(
  :column_name,
  :row_filter_expression)
  SENSITIVE = []
  include Aws::Structure
end

#row_filter_expressionString

A string containing the row-level filter expression.

Returns:

  • (String)


2608
2609
2610
2611
2612
2613
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2608

class ColumnRowFilter < Struct.new(
  :column_name,
  :row_filter_expression)
  SENSITIVE = []
  include Aws::Structure
end