Interface CfnDataSet.SourceTableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.SourceTableProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.SourceTableProperty
extends software.amazon.jsii.JsiiSerializable
A source table that provides initial data from either a physical table or parent 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.services.quicksight.*;
SourceTableProperty sourceTableProperty = SourceTableProperty.builder()
.dataSet(ParentDataSetProperty.builder()
.dataSetArn("dataSetArn")
.inputColumns(List.of(InputColumnProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.id("id")
.subType("subType")
.build()))
.build())
.physicalTableId("physicalTableId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.SourceTablePropertystatic final classAn implementation forCfnDataSet.SourceTableProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSet
A parent dataset that serves as the data source instead of a physical table.Returns union: either
IResolvableorCfnDataSet.ParentDataSetProperty- See Also:
-
getPhysicalTableId
The identifier of the physical table that serves as the data source.- See Also:
-
builder
-