You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoTAnalytics::Types::AddAttributesActivity

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AddAttributesActivity as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "ActivityName", # required
  attributes: { # required
    "AttributeName" => "AttributeName",
  },
  next: "ActivityName",
}

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

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#attributesHash<String,String>

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.

Returns:

  • (Hash<String,String>)

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

#nameString

The name of the addAttributes activity.

Returns:

  • (String)

    The name of the addAttributes activity.

#nextString

The next activity in the pipeline.

Returns:

  • (String)

    The next activity in the pipeline.