@Stability(value=Stable)
public static interface CfnDataset.QueryActionProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.QueryActionProperty.Builder
A builder for
CfnDataset.QueryActionProperty |
static class |
CfnDataset.QueryActionProperty.Jsii$Proxy
An implementation for
CfnDataset.QueryActionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.QueryActionProperty.Builder |
builder() |
default Object |
getFilters()
Pre-filters applied to message data.
|
String |
getSqlQuery()
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.
|
@Stability(value=Stable) @NotNull String getSqlQuery()
@Stability(value=Stable) @Nullable default Object getFilters()
@Stability(value=Stable) static CfnDataset.QueryActionProperty.Builder builder()
Copyright © 2022. All rights reserved.