interface CalculatedMeasureFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.CalculatedMeasureFieldProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.CalculatedMeasureFieldProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.CalculatedMeasureFieldProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » CalculatedMeasureFieldProperty |
The table calculation measure field for pivot tables.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const calculatedMeasureFieldProperty: quicksight.CfnTemplate.CalculatedMeasureFieldProperty = {
expression: 'expression',
fieldId: 'fieldId',
};
Properties
| Name | Type | Description |
|---|---|---|
| expression | string | The expression in the table calculation. |
| field | string | The custom field ID. |
expression
Type:
string
The expression in the table calculation.
fieldId
Type:
string
The custom field ID.

.NET
Java
Python
TypeScript