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

Class: Aws::IoTAnalytics::Types::FilterActivity

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

Overview

Note:

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

{
  name: "ActivityName", # required
  filter: "FilterExpression", # required
  next: "ActivityName",
}

An activity that filters a message based on its attributes.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#filterString

An expression that looks like a SQL WHERE clause that must return a Boolean value. Messages that satisfy the condition are passed to the next activity.

Returns:

  • (String)

    An expression that looks like a SQL WHERE clause that must return a Boolean value.

#nameString

The name of the filter activity.

Returns:

  • (String)

    The name of the filter activity.

#nextString

The next activity in the pipeline.

Returns:

  • (String)

    The next activity in the pipeline.