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();
 
  • Method Details

    • getExpression

      @Stability(Stable) @NotNull String getExpression()
      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.

    • getValuesMap

      @Stability(Stable) @NotNull Object getValuesMap()
      The map of substitution variable names to their values used in this filter expression.
    • builder

      @Stability(Stable) static CfnDataset.FilterExpressionProperty.Builder builder()
      Returns:
      a CfnDataset.FilterExpressionProperty.Builder of CfnDataset.FilterExpressionProperty