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
When making an API call, you may pass FilterExpression data as a hash:
{
expression: "Expression", # required
values_map: { # required
"ValueReference" => "ConditionValue",
},
}
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.
2656 2657 2658 2659 2660 2661 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2656 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.
2656 2657 2658 2659 2660 2661 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2656 class FilterExpression < Struct.new( :expression, :values_map) SENSITIVE = [] include Aws::Structure end |