interface DataQueryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BCMDataExports.Mixins.CfnExportPropsMixin.DataQueryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbcmdataexports/mixins#CfnExportPropsMixin_DataQueryProperty |
Java | software.amazon.awscdk.mixins.preview.services.bcmdataexports.mixins.CfnExportPropsMixin.DataQueryProperty |
Python | aws_cdk.mixins_preview.aws_bcmdataexports.mixins.CfnExportPropsMixin.DataQueryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bcmdataexports » mixins » CfnExportPropsMixin » 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 { mixins as bcmdataexports_mixins } from '@aws-cdk/mixins-preview/aws-bcmdataexports';
const dataQueryProperty: bcmdataexports_mixins.CfnExportPropsMixin.DataQueryProperty = {
queryStatement: 'queryStatement',
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
(optional)
The query statement.
tableConfigurations?
Type:
IResolvable | { [string]: { [string]: string } | IResolvable }
(optional)
The table configuration.

.NET
Go
Java
Python
TypeScript