Interface CfnTemplate.AxisDisplayRangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.AxisDisplayRangeProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.AxisDisplayRangeProperty
extends software.amazon.jsii.JsiiSerializable
The range setup of a numeric axis display range.
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.*;
Object dataDriven;
AxisDisplayRangeProperty axisDisplayRangeProperty = AxisDisplayRangeProperty.builder()
.dataDriven(dataDriven)
.minMax(AxisDisplayMinMaxRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.AxisDisplayRangePropertystatic final classAn implementation forCfnTemplate.AxisDisplayRangeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataDriven
The data-driven setup of an axis display range.- See Also:
-
getMinMax
The minimum and maximum setup of an axis display range.Returns union: either
IResolvableorCfnTemplate.AxisDisplayMinMaxRangeProperty- See Also:
-
builder
-