Interface CfnAnalysis.TimeRangeFilterValueProperty

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

@Stability(Stable) public static interface CfnAnalysis.TimeRangeFilterValueProperty extends software.amazon.jsii.JsiiSerializable
The value of a time range filter.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

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.*;
 TimeRangeFilterValueProperty timeRangeFilterValueProperty = TimeRangeFilterValueProperty.builder()
         .parameter("parameter")
         .rollingDate(RollingDateConfigurationProperty.builder()
                 .expression("expression")
                 // the properties below are optional
                 .dataSetIdentifier("dataSetIdentifier")
                 .build())
         .staticValue("staticValue")
         .build();
 

See Also: