interface DataQueryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BCMDataExports.CfnExportPropsMixin.DataQueryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbcmdataexports#CfnExportPropsMixin_DataQueryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bcmdataexports.CfnExportPropsMixin.DataQueryProperty |
Python | aws_cdk.cfn_property_mixins.aws_bcmdataexports.CfnExportPropsMixin.DataQueryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bcmdataexports » 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 { aws_bcmdataexports as bcmdataexports } from '@aws-cdk/cfn-property-mixins';
const dataQueryProperty: bcmdataexports.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