interface AddAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnPipelinePropsMixin.AddAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnPipelinePropsMixin_AddAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnPipelinePropsMixin.AddAttributesProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnPipelinePropsMixin.AddAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnPipelinePropsMixin » AddAttributesProperty |
An activity that adds other attributes based on existing attributes in the message.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const addAttributesProperty: iotanalytics_mixins.CfnPipelinePropsMixin.AddAttributesProperty = {
attributes: {
attributesKey: 'attributes',
},
name: 'name',
next: 'next',
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | { [string]: string } | IResolvable | A list of 1-50 "AttributeNameMapping" objects that map an existing attribute to a new attribute. |
| name? | string | The name of the 'addAttributes' activity. |
| next? | string | The next activity in the pipeline. |
attributes?
Type:
{ [string]: string } | IResolvable
(optional)
A list of 1-50 "AttributeNameMapping" objects that map an existing attribute to a new attribute.
The existing attributes remain in the message, so if you want to remove the originals, use "RemoveAttributeActivity".
name?
Type:
string
(optional)
The name of the 'addAttributes' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Go
Java
Python
TypeScript