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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.AxisLabelReferenceOptionsPropertystatic final classAn 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.Returns union: either
IResolvableorCfnAnalysis.ColumnIdentifierProperty- See Also:
-
getFieldId
The field that the axis label is targeted to.- See Also:
-
builder
-