public static interface CfnDataset.FilterExpressionProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.databrew.*; FilterExpressionProperty filterExpressionProperty = FilterExpressionProperty.builder() .expression("expression") .valuesMap(List.of(FilterValueProperty.builder() .value("value") .valueReference("valueReference") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.FilterExpressionProperty.Builder
A builder for
CfnDataset.FilterExpressionProperty |
static class |
CfnDataset.FilterExpressionProperty.Jsii$Proxy
An implementation for
CfnDataset.FilterExpressionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.FilterExpressionProperty.Builder |
builder() |
java.lang.String |
getExpression()
The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions.
|
java.lang.Object |
getValuesMap()
The map of substitution variable names to their values used in this filter expression.
|
java.lang.String getExpression()
For example, "(starts_with :prefix1 or starts_with :prefix2) and (ends_with :suffix1 or ends_with :suffix2)". Substitution variables should start with ':' symbol.
java.lang.Object getValuesMap()
static CfnDataset.FilterExpressionProperty.Builder builder()