Interface CfnDataSet.ParentDataSetProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.ParentDataSetProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.ParentDataSetProperty extends software.amazon.jsii.JsiiSerializable
References a parent dataset that serves as a data source, including its columns and metadata.

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.*;
 ParentDataSetProperty parentDataSetProperty = ParentDataSetProperty.builder()
         .dataSetArn("dataSetArn")
         .inputColumns(List.of(InputColumnProperty.builder()
                 .name("name")
                 .type("type")
                 // the properties below are optional
                 .id("id")
                 .subType("subType")
                 .build()))
         .build();
 

See Also: