Class CfnPipelinePropsMixin.SelectAttributesProperty
Creates a new message using only the specified attributes from the original message.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPipelinePropsMixin.SelectAttributesProperty : CfnPipelinePropsMixin.ISelectAttributesProperty
Syntax (vb)
Public Class CfnPipelinePropsMixin.SelectAttributesProperty Implements CfnPipelinePropsMixin.ISelectAttributesProperty
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.CfnPropertyMixins.AWS.IoTAnalytics;
var selectAttributesProperty = new SelectAttributesProperty {
Attributes = new [] { "attributes" },
Name = "name",
Next = "next"
};
Synopsis
Constructors
| SelectAttributesProperty() | Creates a new message using only the specified attributes from the original message. |
Properties
| Attributes | A list of the attributes to select from the message. |
| Name | The name of the 'selectAttributes' activity. |
| Next | The next activity in the pipeline. |
Constructors
SelectAttributesProperty()
Creates a new message using only the specified attributes from the original message.
public SelectAttributesProperty()
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.CfnPropertyMixins.AWS.IoTAnalytics;
var selectAttributesProperty = new SelectAttributesProperty {
Attributes = new [] { "attributes" },
Name = "name",
Next = "next"
};
Properties
Attributes
A list of the attributes to select from the message.
public string[]? Attributes { get; set; }
Property Value
string[]
Remarks
Name
The name of the 'selectAttributes' activity.
public string? Name { get; set; }
Property Value
Remarks
Next
The next activity in the pipeline.
public string? Next { get; set; }