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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotanalytics/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

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.

<note markdown=“1”> The existing attributes remain in the message, so if you want to remove the originals, use ‘RemoveAttributeActivity`.

</note>

Returns:

  • (Hash<String,String>)


34
35
36
37
38
39
40
# File 'lib/aws-sdk-iotanalytics/types.rb', line 34

class AddAttributesActivity < Struct.new(
  :name,
  :attributes,
  :next)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the addAttributes activity.

Returns:

  • (String)


34
35
36
37
38
39
40
# File 'lib/aws-sdk-iotanalytics/types.rb', line 34

class AddAttributesActivity < Struct.new(
  :name,
  :attributes,
  :next)
  SENSITIVE = []
  include Aws::Structure
end

#nextString

The next activity in the pipeline.

Returns:

  • (String)


34
35
36
37
38
39
40
# File 'lib/aws-sdk-iotanalytics/types.rb', line 34

class AddAttributesActivity < Struct.new(
  :name,
  :attributes,
  :next)
  SENSITIVE = []
  include Aws::Structure
end