Interface CfnDataSet.AppendedColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.AppendedColumnProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.AppendedColumnProperty
extends software.amazon.jsii.JsiiSerializable
Represents a column that will be included in the result of an append operation, combining data from multiple sources.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
AppendedColumnProperty appendedColumnProperty = AppendedColumnProperty.builder()
.columnName("columnName")
.newColumnId("newColumnId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.AppendedColumnPropertystatic final classAn implementation forCfnDataSet.AppendedColumnProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the column to include in the appended result.A unique identifier for the column in the appended result.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
The name of the column to include in the appended result.- See Also:
-
getNewColumnId
A unique identifier for the column in the appended result.- See Also:
-
builder
-