Interface CfnAnalysis.AxisDisplayRangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.AxisDisplayRangeProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.AxisDisplayRangeProperty
static final class
An implementation forCfnAnalysis.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.- See Also:
-
builder
-