interface PivotTableFieldOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.PivotTableFieldOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_PivotTableFieldOptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.PivotTableFieldOptionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.PivotTableFieldOptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const pivotTableFieldOptionProperty: quicksight_mixins.CfnAnalysisPropsMixin.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