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: