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