Interface CfnExport.DataQueryProperty

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

@Stability(Stable) public static interface CfnExport.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.services.bcmdataexports.*;
 DataQueryProperty dataQueryProperty = DataQueryProperty.builder()
         .queryStatement("queryStatement")
         // the properties below are optional
         .tableConfigurations(Map.of(
                 "tableConfigurationsKey", Map.of(
                         "tableConfigurationsKey", "tableConfigurations")))
         .build();
 

See Also: