Interface FilterRule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterRule.Builder,FilterRule>,SdkBuilder<FilterRule.Builder,FilterRule>,SdkPojo
- Enclosing class:
- FilterRule
public static interface FilterRule.Builder extends SdkPojo, CopyableBuilder<FilterRule.Builder,FilterRule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterRule.BuilderfilterType(String filterType)The type of filter rule to apply.FilterRule.BuilderfilterType(FilterType filterType)The type of filter rule to apply.FilterRule.Buildervalue(String value)A single filter string that consists of the patterns to include or exclude.-
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
-
filterType
FilterRule.Builder filterType(String filterType)
The type of filter rule to apply. DataSync only supports the SIMPLE_PATTERN rule type.
- Parameters:
filterType- The type of filter rule to apply. DataSync only supports the SIMPLE_PATTERN rule type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterType,FilterType
-
filterType
FilterRule.Builder filterType(FilterType filterType)
The type of filter rule to apply. DataSync only supports the SIMPLE_PATTERN rule type.
- Parameters:
filterType- The type of filter rule to apply. DataSync only supports the SIMPLE_PATTERN rule type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterType,FilterType
-
value
FilterRule.Builder value(String value)
A single filter string that consists of the patterns to include or exclude. The patterns are delimited by "|" (that is, a pipe), for example:
/folder1|/folder2- Parameters:
value- A single filter string that consists of the patterns to include or exclude. The patterns are delimited by "|" (that is, a pipe), for example:/folder1|/folder2- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-