aws-cdk-lib.aws_iotanalytics.CfnPipeline.RemoveAttributesProperty

interface RemoveAttributesProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnPipeline.RemoveAttributesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnPipeline_RemoveAttributesProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnPipeline.RemoveAttributesProperty
Pythonaws_cdk.aws_iotanalytics.CfnPipeline.RemoveAttributesProperty
TypeScript aws-cdk-lib » aws_iotanalytics » CfnPipeline » RemoveAttributesProperty

An activity that removes attributes from a 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 removeAttributesProperty: iotanalytics.CfnPipeline.RemoveAttributesProperty = {
  attributes: ['attributes'],
  name: 'name',

  // the properties below are optional
  next: 'next',
};

Properties

NameTypeDescription
attributesstring[]A list of 1-50 attributes to remove from the message.
namestringThe name of the 'removeAttributes' activity.
next?stringThe next activity in the pipeline.

attributes

Type: string[]

A list of 1-50 attributes to remove from the message.


name

Type: string

The name of the 'removeAttributes' activity.


next?

Type: string (optional)

The next activity in the pipeline.