interface CalculatedFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.CalculatedFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_CalculatedFieldProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.CalculatedFieldProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.CalculatedFieldProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const calculatedFieldProperty: quicksight.CfnAnalysisPropsMixin.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
(optional)
The data set that is used in this calculated field.
expression?
Type:
string
(optional)
The expression of the calculated field.
name?
Type:
string
(optional)
The name of the calculated field.

.NET
Go
Java
Python
TypeScript