Show / Hide Table of Contents

Class CfnDataset.QueryActionProperty

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

Inheritance
object
CfnDataset.QueryActionProperty
Implements
CfnDataset.IQueryActionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataset.QueryActionProperty : CfnDataset.IQueryActionProperty
Syntax (vb)
Public Class CfnDataset.QueryActionProperty Implements CfnDataset.IQueryActionProperty
Remarks

See: 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

Constructors

QueryActionProperty()

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

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()

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

public QueryActionProperty()
Remarks

See: 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"
                     }
                 } }
             };

Properties

Filters

Pre-filters applied to message data.

public object? Filters { get; set; }
Property Value

object

Remarks

See: 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.

public string SqlQuery { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataset.IQueryActionProperty
Back to top Generated by DocFX