Interface FilterActivity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterActivity.Builder,FilterActivity>,SdkBuilder<FilterActivity.Builder,FilterActivity>,SdkPojo
- Enclosing class:
- FilterActivity
public static interface FilterActivity.Builder extends SdkPojo, CopyableBuilder<FilterActivity.Builder,FilterActivity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterActivity.Builderfilter(String filter)An expression that looks like a SQL WHERE clause that must return a Boolean value.FilterActivity.Buildername(String name)The name of the filter activity.FilterActivity.Buildernext(String next)The next activity in the pipeline.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
FilterActivity.Builder name(String name)
The name of the filter activity.
- Parameters:
name- The name of the filter activity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
FilterActivity.Builder filter(String 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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
FilterActivity.Builder next(String next)
The next activity in the pipeline.
- Parameters:
next- The next activity in the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-