Class CfnDataset.QueryActionProperty
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.
Inheritance
System.Object
CfnDataset.QueryActionProperty
Implements
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class QueryActionProperty : Object, CfnDataset.IQueryActionProperty
Syntax (vb)
Public Class QueryActionProperty
Inherits Object
Implements CfnDataset.IQueryActionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;
var queryActionProperty = new QueryActionProperty {
SqlQuery = "sqlQuery",
// the properties below are optional
Filters = new [] { new FilterProperty {
DeltaTime = new DeltaTimeProperty {
OffsetSeconds = 123,
TimeExpression = "timeExpression"
}
} }
};
Synopsis
Constructors
QueryActionProperty() |
Properties
Filters | Pre-filters applied to message data. |
SqlQuery | An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents. |
Constructors
QueryActionProperty()
public QueryActionProperty()
Properties
Filters
Pre-filters applied to message data.
public object Filters { get; set; }
Property Value
System.Object
Remarks
SqlQuery
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.
public string SqlQuery { get; set; }
Property Value
System.String