interface DataQueryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BCMDataExports.CfnExport.DataQueryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbcmdataexports#CfnExport_DataQueryProperty |
Java | software.amazon.awscdk.services.bcmdataexports.CfnExport.DataQueryProperty |
Python | aws_cdk.aws_bcmdataexports.CfnExport.DataQueryProperty |
TypeScript | aws-cdk-lib » aws_bcmdataexports » CfnExport » DataQueryProperty |
The SQL query of column selections and row filters from the data table you want.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bcmdataexports as bcmdataexports } from 'aws-cdk-lib';
const dataQueryProperty: bcmdataexports.CfnExport.DataQueryProperty = {
queryStatement: 'queryStatement',
// the properties below are optional
tableConfigurations: {
tableConfigurationsKey: {
tableConfigurationsKey: 'tableConfigurations',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| query | string | The query statement. |
| table | IResolvable | { [string]: { [string]: string } | IResolvable } | The table configuration. |
queryStatement
Type:
string
The query statement.
tableConfigurations?
Type:
IResolvable | { [string]: { [string]: string } | IResolvable }
(optional)
The table configuration.

.NET
Go
Java
Python
TypeScript