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

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

Overview

An activity that filters a message based on its attributes.

Constant Summary collapse

SENSITIVE =
[]

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)


1751
1752
1753
1754
1755
1756
1757
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 1751

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

#nameString

The name of the filter activity.

Returns:

  • (String)


1751
1752
1753
1754
1755
1756
1757
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 1751

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

#nextString

The next activity in the pipeline.

Returns:

  • (String)


1751
1752
1753
1754
1755
1756
1757
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 1751

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