Interface CfnDashboard.AxisLabelReferenceOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.AxisLabelReferenceOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.AxisLabelReferenceOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The reference that specifies where the axis label is applied to.
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.*; AxisLabelReferenceOptionsProperty axisLabelReferenceOptionsProperty = AxisLabelReferenceOptionsProperty.builder() .column(ColumnIdentifierProperty.builder() .columnName("columnName") .dataSetIdentifier("dataSetIdentifier") .build()) .fieldId("fieldId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.AxisLabelReferenceOptionsProperty
static final class
An implementation forCfnDashboard.AxisLabelReferenceOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The column that the axis label is targeted to.The field that the axis label is targeted to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The column that the axis label is targeted to.- See Also:
-
getFieldId
The field that the axis label is targeted to.- See Also:
-
builder
-