aws-cdk-lib.aws_quicksight.CfnDataSet.CustomSqlProperty

interface CustomSqlProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDataSet.CustomSqlProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_CustomSqlProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDataSet.CustomSqlProperty
Pythonaws_cdk.aws_quicksight.CfnDataSet.CustomSqlProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDataSet » CustomSqlProperty

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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const customSqlProperty: quicksight.CfnDataSet.CustomSqlProperty = {
  columns: [{
    name: 'name',
    type: 'type',
  }],
  dataSourceArn: 'dataSourceArn',
  name: 'name',
  sqlQuery: 'sqlQuery',
};

Properties

NameTypeDescription
columnsIResolvable | IResolvable | InputColumnProperty[]The column schema from the SQL query result set.
dataSourceArnstringThe Amazon Resource Name (ARN) of the data source.
namestringA display name for the SQL query result.
sqlQuerystringThe SQL query.

columns

Type: IResolvable | IResolvable | InputColumnProperty[]

The column schema from the SQL query result set.


dataSourceArn

Type: string

The Amazon Resource Name (ARN) of the data source.


name

Type: string

A display name for the SQL query result.


sqlQuery

Type: string

The SQL query.