Class: Aws::GlueDataBrew::Types::FilterExpression
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::FilterExpression
- 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
-
#expression ⇒ String
The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions.
-
#values_map ⇒ Hash<String,String>
The map of substitution variable names to their values used in this filter expression.
Instance Attribute Details
#expression ⇒ String
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.
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_map ⇒ Hash<String,String>
The map of substitution variable names to their values used in this filter expression.
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 |