Interface CfnDataSetPropsMixin.CalculatedColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.CalculatedColumnProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.CalculatedColumnProperty
extends software.amazon.jsii.JsiiSerializable
A calculated column for a dataset.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
CalculatedColumnProperty calculatedColumnProperty = CalculatedColumnProperty.builder()
.columnId("columnId")
.columnName("columnName")
.expression("expression")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.CalculatedColumnPropertystatic final classAn implementation forCfnDataSetPropsMixin.CalculatedColumnProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnId
A unique ID to identify a calculated column.During a dataset update, if the column ID of a calculated column matches that of an existing calculated column, Quick Sight preserves the existing calculated column.
- See Also:
-
getColumnName
Column name.- See Also:
-
getExpression
An expression that defines the calculated column.- See Also:
-
builder
-