Interface CfnDataset.IQueryActionProperty
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public interface IQueryActionProperty
Syntax (vb)
Public Interface 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
Properties
Filters | Pre-filters applied to message data. |
SqlQuery | An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents. |
Properties
Filters
Pre-filters applied to message data.
virtual object Filters { get; }
Property Value
System.Object
Remarks
SqlQuery
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.
string SqlQuery { get; }
Property Value
System.String