Interface CfnAnalysis.AxisLabelReferenceOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.AxisLabelReferenceOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.AxisLabelReferenceOptionsProperty
static final class
An implementation forCfnAnalysis.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. -
getFieldId
The field that the axis label is targeted to. -
builder
-