@Stability(value=Stable)
public static interface CfnDataset.FilterExpressionProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getExpression()
The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions.
|
Object |
getValuesMap()
The map of substitution variable names to their values used in this filter expression.
|
@Stability(value=Stable) @NotNull 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.
@Stability(value=Stable) @NotNull Object getValuesMap()
@Stability(value=Stable) static CfnDataset.FilterExpressionProperty.Builder builder()
Copyright © 2022. All rights reserved.