Interface CfnDataSet.DataSetDateComparisonFilterConditionProperty

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

@Stability(Stable) public static interface CfnDataSet.DataSetDateComparisonFilterConditionProperty extends software.amazon.jsii.JsiiSerializable
A filter condition that compares date values using operators like BEFORE , AFTER , or their inclusive variants.

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.quicksight.*;
 DataSetDateComparisonFilterConditionProperty dataSetDateComparisonFilterConditionProperty = DataSetDateComparisonFilterConditionProperty.builder()
         .operator("operator")
         // the properties below are optional
         .value(DataSetDateFilterValueProperty.builder()
                 .staticValue("staticValue")
                 .build())
         .build();
 

See Also: