interface DeviceRegistryEnrichProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnPipelinePropsMixin.DeviceRegistryEnrichProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnPipelinePropsMixin_DeviceRegistryEnrichProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnPipelinePropsMixin.DeviceRegistryEnrichProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnPipelinePropsMixin.DeviceRegistryEnrichProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » CfnPipelinePropsMixin » 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 { aws_iotanalytics as iotanalytics } from '@aws-cdk/cfn-property-mixins';
const deviceRegistryEnrichProperty: iotanalytics.CfnPipelinePropsMixin.DeviceRegistryEnrichProperty = {
attribute: 'attribute',
name: 'name',
next: 'next',
roleArn: 'roleArn',
thingName: 'thingName',
};
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. |
| next? | string | The next activity in the pipeline. |
| 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. |
attribute?
Type:
string
(optional)
The name of the attribute that is added to the message.
name?
Type:
string
(optional)
The name of the 'deviceRegistryEnrich' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.
roleArn?
Type:
string
(optional)
The ARN of the role that allows access to the device's registry information.
thingName?
Type:
string
(optional)
The name of the IoT device whose registry information is added to the message.

.NET
Go
Java
Python
TypeScript