Interface CfnPipeline.DeviceShadowEnrichProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.DeviceShadowEnrichProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.DeviceShadowEnrichProperty extends software.amazon.jsii.JsiiSerializable
An activity that adds information from the AWS IoT Device Shadows service to a message.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iotanalytics.*;
 DeviceShadowEnrichProperty deviceShadowEnrichProperty = DeviceShadowEnrichProperty.builder()
         .attribute("attribute")
         .name("name")
         .roleArn("roleArn")
         .thingName("thingName")
         // the properties below are optional
         .next("next")
         .build();
 

See Also: