Interface CfnDataSet.CustomSqlProperty

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

@Stability(Stable) public static interface CfnDataSet.CustomSqlProperty extends software.amazon.jsii.JsiiSerializable
A physical table type built from the results of the custom SQL query.

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.*;
 CustomSqlProperty customSqlProperty = CustomSqlProperty.builder()
         .columns(List.of(InputColumnProperty.builder()
                 .name("name")
                 .type("type")
                 // the properties below are optional
                 .subType("subType")
                 .build()))
         .dataSourceArn("dataSourceArn")
         .name("name")
         .sqlQuery("sqlQuery")
         .build();
 

See Also: