interface SelectAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnPipeline.SelectAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnPipeline_SelectAttributesProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnPipeline.SelectAttributesProperty |
Python | aws_cdk.aws_iotanalytics.CfnPipeline.SelectAttributesProperty |
TypeScript | aws-cdk-lib » aws_iotanalytics » CfnPipeline » SelectAttributesProperty |
Creates a new message using only the specified attributes from the original 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-lib';
const selectAttributesProperty: iotanalytics.CfnPipeline.SelectAttributesProperty = {
attributes: ['attributes'],
name: 'name',
// the properties below are optional
next: 'next',
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes | string[] | A list of the attributes to select from the message. |
| name | string | The name of the 'selectAttributes' activity. |
| next? | string | The next activity in the pipeline. |
attributes
Type:
string[]
A list of the attributes to select from the message.
name
Type:
string
The name of the 'selectAttributes' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Go
Java
Python
TypeScript