interface DataPathLabelTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.DataPathLabelTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_DataPathLabelTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.DataPathLabelTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.DataPathLabelTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » DataPathLabelTypeProperty |
The option that specifies individual data values for labels.
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 dataPathLabelTypeProperty: quicksight.CfnDashboardPropsMixin.DataPathLabelTypeProperty = {
fieldId: 'fieldId',
fieldValue: 'fieldValue',
visibility: 'visibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The field ID of the field that the data label needs to be applied to. |
| field | string | The actual value of the field that is labeled. |
| visibility? | string | The visibility of the data label. |
fieldId?
Type:
string
(optional)
The field ID of the field that the data label needs to be applied to.
fieldValue?
Type:
string
(optional)
The actual value of the field that is labeled.
visibility?
Type:
string
(optional)
The visibility of the data label.

.NET
Go
Java
Python
TypeScript