| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.IoTAnalytics.Types.FilterActivity
Description
Synopsis
Documentation
data FilterActivity Source #
An activity that filters a message based on its attributes.
See: newFilterActivity smart constructor.
Constructors
| FilterActivity' | |
Instances
Create a value of FilterActivity with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:next:FilterActivity', filterActivity_next - The next activity in the pipeline.
$sel:name:FilterActivity', filterActivity_name - The name of the filter activity.
$sel:filter':FilterActivity', filterActivity_filter - 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.
filterActivity_next :: Lens' FilterActivity (Maybe Text) Source #
The next activity in the pipeline.
filterActivity_name :: Lens' FilterActivity Text Source #
The name of the filter activity.
filterActivity_filter :: Lens' FilterActivity Text Source #
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.