Show / Hide Table of Contents

Interface CfnPipeline.IAddAttributesProperty

An activity that adds other attributes based on existing attributes in the message.

Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public interface IAddAttributesProperty
Syntax (vb)
Public Interface IAddAttributesProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-addattributes.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;

AddAttributesProperty addAttributesProperty = new AddAttributesProperty {
    Attributes = new Dictionary<string, string> {
        { "attributesKey", "attributes" }
    },
    Name = "name",

    // the properties below are optional
    Next = "next"
};

Synopsis

Properties

Attributes

A list of 1-50 "AttributeNameMapping" objects that map an existing attribute to a new attribute.

Name

The name of the 'addAttributes' activity.

Next

The next activity in the pipeline.

Properties

Attributes

A list of 1-50 "AttributeNameMapping" objects that map an existing attribute to a new attribute.

object Attributes { get; }
Property Value

System.Object

Remarks

The existing attributes remain in the message, so if you want to remove the originals, use "RemoveAttributeActivity".

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-addattributes.html#cfn-iotanalytics-pipeline-addattributes-attributes

Name

The name of the 'addAttributes' activity.

string Name { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-addattributes.html#cfn-iotanalytics-pipeline-addattributes-name

Next

The next activity in the pipeline.

virtual string Next { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-addattributes.html#cfn-iotanalytics-pipeline-addattributes-next

Back to top Generated by DocFX