interface AxisLabelReferenceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.AxisLabelReferenceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_AxisLabelReferenceOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.AxisLabelReferenceOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.AxisLabelReferenceOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const axisLabelReferenceOptionsProperty: quicksight.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