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
.id("id")
.subType("subType")
.build()))
.dataSourceArn("dataSourceArn")
.name("name")
.sqlQuery("sqlQuery")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.CustomSqlPropertystatic final classAn implementation forCfnDataSet.CustomSqlProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumns
The column schema from the SQL query result set.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.InputColumnProperty>- See Also:
-
getDataSourceArn
The Amazon Resource Name (ARN) of the data source.- See Also:
-
getName
A display name for the SQL query result.- See Also:
-
getSqlQuery
The SQL query.- See Also:
-
builder
-