Interface CfnDataset.FilterExpressionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataset.FilterExpressionProperty.Jsii$Proxy
Enclosing class:
CfnDataset

@Stability(Stable) public static interface CfnDataset.FilterExpressionProperty extends software.amazon.jsii.JsiiSerializable
Represents a structure for defining parameter conditions.

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();
 

See Also: