@Stability(value=Stable)
public static interface CfnDataSet.CustomSqlProperty
extends software.amazon.jsii.JsiiSerializable
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")
.build()))
.dataSourceArn("dataSourceArn")
.name("name")
.sqlQuery("sqlQuery")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSet.CustomSqlProperty.Builder
A builder for
CfnDataSet.CustomSqlProperty |
static class |
CfnDataSet.CustomSqlProperty.Jsii$Proxy
An implementation for
CfnDataSet.CustomSqlProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSet.CustomSqlProperty.Builder |
builder() |
Object |
getColumns()
The column schema from the SQL query result set.
|
String |
getDataSourceArn()
The Amazon Resource Name (ARN) of the data source.
|
String |
getName()
A display name for the SQL query result.
|
String |
getSqlQuery()
The SQL query.
|
@Stability(value=Stable) @NotNull Object getColumns()
@Stability(value=Stable) @NotNull String getDataSourceArn()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getSqlQuery()
@Stability(value=Stable) static CfnDataSet.CustomSqlProperty.Builder builder()
Copyright © 2022. All rights reserved.