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

Class: Aws::IoTAnalytics::Types::MathActivity

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

Overview

Note:

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

{
  name: "ActivityName", # required
  attribute: "AttributeName", # required
  math: "MathExpression", # required
  next: "ActivityName",
}

An activity that computes an arithmetic expression using the message's attributes.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#attributeString

The name of the attribute that contains the result of the math operation.

Returns:

  • (String)

    The name of the attribute that contains the result of the math operation.

#mathString

An expression that uses one or more existing attributes and must return an integer value.

Returns:

  • (String)

    An expression that uses one or more existing attributes and must return an integer value.

#nameString

The name of the math activity.

Returns:

  • (String)

    The name of the math activity.

#nextString

The next activity in the pipeline.

Returns:

  • (String)

    The next activity in the pipeline.