Interface CfnDatasetPropsMixin.QueryActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetPropsMixin.QueryActionProperty.Jsii$Proxy
- Enclosing class:
CfnDatasetPropsMixin
@Stability(Stable)
public static interface CfnDatasetPropsMixin.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.cfnpropertymixins.services.iotanalytics.*;
QueryActionProperty queryActionProperty = QueryActionProperty.builder()
.filters(List.of(FilterProperty.builder()
.deltaTime(DeltaTimeProperty.builder()
.offsetSeconds(123)
.timeExpression("timeExpression")
.build())
.build()))
.sqlQuery("sqlQuery")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetPropsMixin.QueryActionPropertystatic final classAn implementation forCfnDatasetPropsMixin.QueryActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilters
Pre-filters applied to message data.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDatasetPropsMixin.FilterProperty>- See Also:
-
getSqlQuery
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.- See Also:
-
builder
-