interface PivotTableFieldOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.PivotTableFieldOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_PivotTableFieldOptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.PivotTableFieldOptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.PivotTableFieldOptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » PivotTableFieldOptionProperty |
The selected field options for the pivot table field options.
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 pivotTableFieldOptionProperty: quicksight.CfnDashboardPropsMixin.PivotTableFieldOptionProperty = {
customLabel: 'customLabel',
fieldId: 'fieldId',
visibility: 'visibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | The custom label of the pivot table field. |
| field | string | The field ID of the pivot table field. |
| visibility? | string | The visibility of the pivot table field. |
customLabel?
Type:
string
(optional)
The custom label of the pivot table field.
fieldId?
Type:
string
(optional)
The field ID of the pivot table field.
visibility?
Type:
string
(optional)
The visibility of the pivot table field.

.NET
Go
Java
Python
TypeScript