Class CfnPipelinePropsMixin.DeviceShadowEnrichProperty
An activity that adds information from the AWS IoT Device Shadows service to a message.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPipelinePropsMixin.DeviceShadowEnrichProperty : CfnPipelinePropsMixin.IDeviceShadowEnrichProperty
Syntax (vb)
Public Class CfnPipelinePropsMixin.DeviceShadowEnrichProperty Implements CfnPipelinePropsMixin.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.Mixins.Preview.AWS.IoTAnalytics.Mixins;
var deviceShadowEnrichProperty = new DeviceShadowEnrichProperty {
Attribute = "attribute",
Name = "name",
Next = "next",
RoleArn = "roleArn",
ThingName = "thingName"
};
Synopsis
Constructors
| DeviceShadowEnrichProperty() | An activity that adds information from the AWS IoT Device Shadows service to a message. |
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()
An activity that adds information from the AWS IoT Device Shadows service to a message.
public DeviceShadowEnrichProperty()
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.Mixins.Preview.AWS.IoTAnalytics.Mixins;
var deviceShadowEnrichProperty = new DeviceShadowEnrichProperty {
Attribute = "attribute",
Name = "name",
Next = "next",
RoleArn = "roleArn",
ThingName = "thingName"
};
Properties
Attribute
The name of the attribute that is added to the message.
public string? Attribute { get; set; }
Property Value
Remarks
Name
The name of the 'deviceShadowEnrich' activity.
public string? Name { get; set; }
Property Value
Remarks
Next
The next activity in the pipeline.
public string? Next { get; set; }
Property Value
Remarks
RoleArn
The ARN of the role that allows access to the device's shadow.
public string? RoleArn { get; set; }
Property Value
Remarks
ThingName
The name of the IoT device whose shadow information is added to the message.
public string? ThingName { get; set; }