IotSqlConfig
- class aws_cdk.aws_iot_alpha.IotSqlConfig(*, aws_iot_sql_version, sql)
Bases:
object
(experimental) The type returned from the
bind()
method inIotSql
.- Parameters:
aws_iot_sql_version (
str
) – (experimental) The version of the SQL rules engine to use when evaluating the rule.sql (
str
) – (experimental) The SQL statement used to query the topic.
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_iot_alpha as iot_alpha iot_sql_config = iot_alpha.IotSqlConfig( aws_iot_sql_version="awsIotSqlVersion", sql="sql" )
Attributes
- aws_iot_sql_version
(experimental) The version of the SQL rules engine to use when evaluating the rule.
- Stability:
experimental
- sql
(experimental) The SQL statement used to query the topic.
- Stability:
experimental