Interface CfnDataSetPropsMixin.ParentDataSetProperty

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

@Stability(Stable) public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.services.quicksight.*;
 ParentDataSetProperty parentDataSetProperty = ParentDataSetProperty.builder()
         .dataSetArn("dataSetArn")
         .inputColumns(List.of(InputColumnProperty.builder()
                 .id("id")
                 .name("name")
                 .subType("subType")
                 .type("type")
                 .build()))
         .build();
 

See Also: