Interface CfnDashboard.AxisScaleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.AxisScaleProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.AxisScaleProperty
extends software.amazon.jsii.JsiiSerializable
The scale setup options for a numeric axis display.
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.*; AxisScaleProperty axisScaleProperty = AxisScaleProperty.builder() .linear(AxisLinearScaleProperty.builder() .stepCount(123) .stepSize(123) .build()) .logarithmic(AxisLogarithmicScaleProperty.builder() .base(123) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.AxisScaleProperty
static final class
An implementation forCfnDashboard.AxisScaleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLinear
The linear axis scale setup.- See Also:
-
getLogarithmic
The logarithmic axis scale setup.- See Also:
-
builder
-