Show / Hide Table of Contents

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-queryaction.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-queryaction.html#cfn-iotanalytics-dataset-queryaction-filters

SqlQuery

An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.

string SqlQuery { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-queryaction.html#cfn-iotanalytics-dataset-queryaction-sqlquery

Back to top Generated by DocFX