Interface CfnDataset.QueryActionProperty

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

@Stability(Stable) public static interface CfnDataset.QueryActionProperty extends software.amazon.jsii.JsiiSerializable
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.

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.iotanalytics.*;
 QueryActionProperty queryActionProperty = QueryActionProperty.builder()
         .sqlQuery("sqlQuery")
         // the properties below are optional
         .filters(List.of(FilterProperty.builder()
                 .deltaTime(DeltaTimeProperty.builder()
                         .offsetSeconds(123)
                         .timeExpression("timeExpression")
                         .build())
                 .build()))
         .build();