interface RemoveAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnPipelinePropsMixin.RemoveAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnPipelinePropsMixin_RemoveAttributesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnPipelinePropsMixin.RemoveAttributesProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnPipelinePropsMixin.RemoveAttributesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » CfnPipelinePropsMixin » 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/cfn-property-mixins';
const removeAttributesProperty: iotanalytics.CfnPipelinePropsMixin.RemoveAttributesProperty = {
attributes: ['attributes'],
name: 'name',
next: 'next',
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | string[] | A list of 1-50 attributes to remove from the message. |
| name? | string | The name of the 'removeAttributes' activity. |
| next? | string | The next activity in the pipeline. |
attributes?
Type:
string[]
(optional)
A list of 1-50 attributes to remove from the message.
name?
Type:
string
(optional)
The name of the 'removeAttributes' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Go
Java
Python
TypeScript