interface DeviceShadowEnrichProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnPipelinePropsMixin.DeviceShadowEnrichProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnPipelinePropsMixin_DeviceShadowEnrichProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnPipelinePropsMixin.DeviceShadowEnrichProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnPipelinePropsMixin.DeviceShadowEnrichProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnPipelinePropsMixin » DeviceShadowEnrichProperty |
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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const deviceShadowEnrichProperty: iotanalytics_mixins.CfnPipelinePropsMixin.DeviceShadowEnrichProperty = {
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 'deviceShadowEnrich' activity. |
| next? | string | The next activity in the pipeline. |
| role | string | The ARN of the role that allows access to the device's shadow. |
| thing | string | The name of the IoT device whose shadow 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 'deviceShadowEnrich' 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 shadow.
thingName?
Type:
string
(optional)
The name of the IoT device whose shadow information is added to the message.

.NET
Go
Java
Python
TypeScript