interface AxisLabelReferenceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.AxisLabelReferenceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_AxisLabelReferenceOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.AxisLabelReferenceOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.AxisLabelReferenceOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » AxisLabelReferenceOptionsProperty |
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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const axisLabelReferenceOptionsProperty: quicksight_mixins.CfnDashboardPropsMixin.AxisLabelReferenceOptionsProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
fieldId: 'fieldId',
};
Properties
| Name | Type | Description |
|---|---|---|
| column? | IResolvable | Column | The column that the axis label is targeted to. |
| field | string | The field that the axis label is targeted to. |
column?
Type:
IResolvable | Column
(optional)
The column that the axis label is targeted to.
fieldId?
Type:
string
(optional)
The field that the axis label is targeted to.

.NET
Go
Java
Python
TypeScript