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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.TimeRangeFilterValuePropertystatic final classAn implementation forCfnAnalysis.TimeRangeFilterValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameter
The parameter type input value.- See Also:
-
getRollingDate
The rolling date input value.Returns union: either
IResolvableorCfnAnalysis.RollingDateConfigurationProperty- See Also:
-
getStaticValue
The static input value.- See Also:
-
builder
-