Class: Aws::GlueDataBrew::Types::FilterExpression

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

Overview

Represents a structure for defining parameter conditions. Supported conditions are described here: Supported conditions for dynamic datasets in the Glue DataBrew Developer Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#expressionString

The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions. For example, "(starts_with :prefix1 or starts_with :prefix2) and (ends_with :suffix1 or ends_with :suffix2)". Substitution variables should start with ':' symbol.

Returns:

  • (String)


2006
2007
2008
2009
2010
2011
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2006

class FilterExpression < Struct.new(
  :expression,
  :values_map)
  SENSITIVE = []
  include Aws::Structure
end

#values_mapHash<String,String>

The map of substitution variable names to their values used in this filter expression.

Returns:

  • (Hash<String,String>)


2006
2007
2008
2009
2010
2011
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2006

class FilterExpression < Struct.new(
  :expression,
  :values_map)
  SENSITIVE = []
  include Aws::Structure
end