Class CfnPipeline.DeviceRegistryEnrichProperty
An activity that adds data from the AWS IoT device registry to your message.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DeviceRegistryEnrichProperty : Object, CfnPipeline.IDeviceRegistryEnrichProperty
Syntax (vb)
Public Class DeviceRegistryEnrichProperty
Inherits Object
Implements CfnPipeline.IDeviceRegistryEnrichProperty
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 deviceRegistryEnrichProperty = new DeviceRegistryEnrichProperty {
Attribute = "attribute",
Name = "name",
RoleArn = "roleArn",
ThingName = "thingName",
// the properties below are optional
Next = "next"
};
Synopsis
Constructors
Device |
Properties
Attribute | The name of the attribute that is added to the message. |
Name | The name of the 'deviceRegistryEnrich' activity. |
Next | The next activity in the pipeline. |
Role |
The ARN of the role that allows access to the device's registry information. |
Thing |
The name of the IoT device whose registry information is added to the message. |
Constructors
DeviceRegistryEnrichProperty()
public DeviceRegistryEnrichProperty()
Properties
Attribute
The name of the attribute that is added to the message.
public string Attribute { get; set; }
Property Value
System.
Remarks
Name
The name of the 'deviceRegistryEnrich' activity.
public string Name { get; set; }
Property Value
System.
Remarks
Next
The next activity in the pipeline.
public string Next { get; set; }
Property Value
System.
Remarks
RoleArn
The ARN of the role that allows access to the device's registry information.
public string RoleArn { get; set; }
Property Value
System.
Remarks
ThingName
The name of the IoT device whose registry information is added to the message.
public string ThingName { get; set; }
Property Value
System.