Skip navigation links

Package software.amazon.awscdk.services.iotevents

AWS::IoTEvents Construct Library

See: Description

Package software.amazon.awscdk.services.iotevents Description

AWS::IoTEvents Construct Library

AWS IoT Events enables you to monitor your equipment or device fleets for failures or changes in operation, and to trigger actions when such events occur.

Installation

Install the module:

 $ npm i @aws-cdk/aws-iotevents
 

Import it into your code:

 import software.amazon.awscdk.core.*;
 

Input

Add an AWS IoT Events input to your stack:

 import software.amazon.awscdk.core.*;
 
 
 Input.Builder.create(this, "MyInput")
         .inputName("my_input")
         .attributeJsonPaths(List.of("payload.temperature"))
         .build();
 
Skip navigation links

Copyright © 2022. All rights reserved.