Interface CfnExportPropsMixin.DataQueryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnExportPropsMixin.DataQueryProperty.Jsii$Proxy
Enclosing class:
CfnExportPropsMixin

@Stability(Stable) public static interface CfnExportPropsMixin.DataQueryProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.bcmdataexports.*;
 DataQueryProperty dataQueryProperty = DataQueryProperty.builder()
         .queryStatement("queryStatement")
         .tableConfigurations(Map.of(
                 "tableConfigurationsKey", Map.of(
                         "tableConfigurationsKey", "tableConfigurations")))
         .build();
 

See Also: