aws-cdk-lib.aws_iotanalytics.CfnPipeline.SelectAttributesProperty

interface SelectAttributesProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnPipeline.SelectAttributesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnPipeline_SelectAttributesProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnPipeline.SelectAttributesProperty
Pythonaws_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

NameTypeDescription
attributesstring[]A list of the attributes to select from the message.
namestringThe name of the 'selectAttributes' activity.
next?stringThe 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.