interface DeviceRegistryEnrichProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTAnalytics.CfnPipeline.DeviceRegistryEnrichProperty |
![]() | software.amazon.awscdk.services.iotanalytics.CfnPipeline.DeviceRegistryEnrichProperty |
![]() | aws_cdk.aws_iotanalytics.CfnPipeline.DeviceRegistryEnrichProperty |
![]() | @aws-cdk/aws-iotanalytics » CfnPipeline » DeviceRegistryEnrichProperty |
An activity that adds data from the AWS IoT device registry to your message.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotanalytics from '@aws-cdk/aws-iotanalytics';
const deviceRegistryEnrichProperty: iotanalytics.CfnPipeline.DeviceRegistryEnrichProperty = {
attribute: 'attribute',
name: 'name',
roleArn: 'roleArn',
thingName: 'thingName',
// the properties below are optional
next: 'next',
};
Properties
Name | Type | Description |
---|---|---|
attribute | string | The name of the attribute that is added to the message. |
name | string | The name of the 'deviceRegistryEnrich' activity. |
role | string | The ARN of the role that allows access to the device's registry information. |
thing | string | The name of the IoT device whose registry information is added to the message. |
next? | string | The next activity in the pipeline. |
attribute
Type:
string
The name of the attribute that is added to the message.
name
Type:
string
The name of the 'deviceRegistryEnrich' activity.
roleArn
Type:
string
The ARN of the role that allows access to the device's registry information.
thingName
Type:
string
The name of the IoT device whose registry information is added to the message.
next?
Type:
string
(optional)
The next activity in the pipeline.