Class CfnPipeline.DeviceShadowEnrichProperty
An activity that adds information from the AWS IoT Device Shadows service to a message.
Inheritance
System.Object
CfnPipeline.DeviceShadowEnrichProperty
Implements
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public class DeviceShadowEnrichProperty : Object, CfnPipeline.IDeviceShadowEnrichProperty
Syntax (vb)
Public Class DeviceShadowEnrichProperty
Inherits Object
Implements CfnPipeline.IDeviceShadowEnrichProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;
var deviceShadowEnrichProperty = new DeviceShadowEnrichProperty {
Attribute = "attribute",
Name = "name",
RoleArn = "roleArn",
ThingName = "thingName",
// the properties below are optional
Next = "next"
};
Synopsis
Constructors
DeviceShadowEnrichProperty() |
Properties
Attribute | The name of the attribute that is added to the message. |
Name | The name of the 'deviceShadowEnrich' activity. |
Next | The next activity in the pipeline. |
RoleArn | The ARN of the role that allows access to the device's shadow. |
ThingName | The name of the IoT device whose shadow information is added to the message. |
Constructors
DeviceShadowEnrichProperty()
public DeviceShadowEnrichProperty()
Properties
Attribute
The name of the attribute that is added to the message.
public string Attribute { get; set; }
Property Value
System.String
Remarks
Name
The name of the 'deviceShadowEnrich' activity.
public string Name { get; set; }
Property Value
System.String
Remarks
Next
The next activity in the pipeline.
public string Next { get; set; }
Property Value
System.String
Remarks
RoleArn
The ARN of the role that allows access to the device's shadow.
public string RoleArn { get; set; }
Property Value
System.String
Remarks
ThingName
The name of the IoT device whose shadow information is added to the message.
public string ThingName { get; set; }
Property Value
System.String