interface IotSqlConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.Alpha.IotSqlConfig |
Go | github.com/aws/aws-cdk-go/awscdkiotalpha/v2#IotSqlConfig |
Java | software.amazon.awscdk.services.iot.alpha.IotSqlConfig |
Python | aws_cdk.aws_iot_alpha.IotSqlConfig |
TypeScript (source) | @aws-cdk/aws-iot-alpha » IotSqlConfig |
Obtainable from
Iot.bind()
The type returned from the bind() method in IotSql.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iot_alpha from '@aws-cdk/aws-iot-alpha';
const iotSqlConfig: iot_alpha.IotSqlConfig = {
awsIotSqlVersion: 'awsIotSqlVersion',
sql: 'sql',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The version of the SQL rules engine to use when evaluating the rule. |
| sql | string | The SQL statement used to query the topic. |
awsIotSqlVersion
Type:
string
The version of the SQL rules engine to use when evaluating the rule.
sql
Type:
string
The SQL statement used to query the topic.

.NET
Go
Java
Python
TypeScript (