@Stability(value=Stable)
public static interface CfnDataSet.LogicalTableProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
LogicalTableProperty logicalTableProperty = LogicalTableProperty.builder()
.alias("alias")
.source(LogicalTableSourceProperty.builder()
.joinInstruction(JoinInstructionProperty.builder()
.leftOperand("leftOperand")
.onClause("onClause")
.rightOperand("rightOperand")
.type("type")
// the properties below are optional
.leftJoinKeyProperties(JoinKeyPropertiesProperty.builder()
.uniqueKey(false)
.build())
.rightJoinKeyProperties(JoinKeyPropertiesProperty.builder()
.uniqueKey(false)
.build())
.build())
.physicalTableId("physicalTableId")
.build())
// the properties below are optional
.dataTransforms(List.of(TransformOperationProperty.builder()
.castColumnTypeOperation(CastColumnTypeOperationProperty.builder()
.columnName("columnName")
.newColumnType("newColumnType")
// the properties below are optional
.format("format")
.build())
.createColumnsOperation(CreateColumnsOperationProperty.builder()
.columns(List.of(CalculatedColumnProperty.builder()
.columnId("columnId")
.columnName("columnName")
.expression("expression")
.build()))
.build())
.filterOperation(FilterOperationProperty.builder()
.conditionExpression("conditionExpression")
.build())
.projectOperation(ProjectOperationProperty.builder()
.projectedColumns(List.of("projectedColumns"))
.build())
.renameColumnOperation(RenameColumnOperationProperty.builder()
.columnName("columnName")
.newColumnName("newColumnName")
.build())
.tagColumnOperation(TagColumnOperationProperty.builder()
.columnName("columnName")
.tags(List.of(ColumnTagProperty.builder()
.columnDescription(ColumnDescriptionProperty.builder()
.text("text")
.build())
.columnGeographicRole("columnGeographicRole")
.build()))
.build())
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSet.LogicalTableProperty.Builder
A builder for
CfnDataSet.LogicalTableProperty |
static class |
CfnDataSet.LogicalTableProperty.Jsii$Proxy
An implementation for
CfnDataSet.LogicalTableProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSet.LogicalTableProperty.Builder |
builder() |
String |
getAlias()
`CfnDataSet.LogicalTableProperty.Alias`.
|
default Object |
getDataTransforms()
`CfnDataSet.LogicalTableProperty.DataTransforms`.
|
Object |
getSource()
`CfnDataSet.LogicalTableProperty.Source`.
|
@Stability(value=Stable) @NotNull String getAlias()
@Stability(value=Stable) @Nullable default Object getDataTransforms()
@Stability(value=Stable) @NotNull Object getSource()
@Stability(value=Stable) static CfnDataSet.LogicalTableProperty.Builder builder()
Copyright © 2021. All rights reserved.