interface CalculatedFieldProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.CalculatedFieldProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.CalculatedFieldProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.CalculatedFieldProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnAnalysis » CalculatedFieldProperty | 
The calculated field of an analysis.
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 calculatedFieldProperty: quicksight.CfnAnalysis.CalculatedFieldProperty = {
  dataSetIdentifier: 'dataSetIdentifier',
  expression: 'expression',
  name: 'name',
};
Properties
| Name | Type | Description | 
|---|---|---|
| data | string | The data set that is used in this calculated field. | 
| expression | string | The expression of the calculated field. | 
| name | string | The name of the calculated field. | 
dataSetIdentifier
Type:
string
The data set that is used in this calculated field.
expression
Type:
string
The expression of the calculated field.
name
Type:
string
The name of the calculated field.

 .NET
 Java
 Python
 TypeScript