Interface CfnPipelinePropsMixin.DeviceShadowEnrichProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipelinePropsMixin.DeviceShadowEnrichProperty.Jsii$Proxy
- Enclosing class:
CfnPipelinePropsMixin
@Stability(Stable)
public static interface CfnPipelinePropsMixin.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.cfnpropertymixins.services.iotanalytics.*;
DeviceShadowEnrichProperty deviceShadowEnrichProperty = DeviceShadowEnrichProperty.builder()
.attribute("attribute")
.name("name")
.next("next")
.roleArn("roleArn")
.thingName("thingName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipelinePropsMixin.DeviceShadowEnrichPropertystatic final classAn implementation forCfnPipelinePropsMixin.DeviceShadowEnrichProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the attribute that is added to the message.default StringgetName()The name of the 'deviceShadowEnrich' activity.default StringgetNext()The next activity in the pipeline.default StringThe ARN of the role that allows access to the device's shadow.default StringThe name of the IoT device whose shadow information is added to the message.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttribute
The name of the attribute that is added to the message.- See Also:
-
getName
The name of the 'deviceShadowEnrich' activity.- See Also:
-
getNext
The next activity in the pipeline.- See Also:
-
getRoleArn
The ARN of the role that allows access to the device's shadow.- See Also:
-
getThingName
The name of the IoT device whose shadow information is added to the message.- See Also:
-
builder
-