Interface CfnDataSetPropsMixin.SourceTableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.SourceTableProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.mixins.preview.services.quicksight.mixins.*;
SourceTableProperty sourceTableProperty = SourceTableProperty.builder()
.dataSet(ParentDataSetProperty.builder()
.dataSetArn("dataSetArn")
.inputColumns(List.of(InputColumnProperty.builder()
.id("id")
.name("name")
.subType("subType")
.type("type")
.build()))
.build())
.physicalTableId("physicalTableId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.SourceTablePropertystatic final classAn implementation forCfnDataSetPropsMixin.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
IResolvableorCfnDataSetPropsMixin.ParentDataSetProperty- See Also:
-
getPhysicalTableId
The identifier of the physical table that serves as the data source.- See Also:
-
builder
-