Interface CrawlFilterConfiguration.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<CrawlFilterConfiguration.Builder,,CrawlFilterConfiguration> SdkBuilder<CrawlFilterConfiguration.Builder,,CrawlFilterConfiguration> SdkPojo
- Enclosing class:
- CrawlFilterConfiguration
@Mutable
@NotThreadSafe
public static interface CrawlFilterConfiguration.Builder
extends SdkPojo, CopyableBuilder<CrawlFilterConfiguration.Builder,CrawlFilterConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondefault CrawlFilterConfiguration.BuilderpatternObjectFilter(Consumer<PatternObjectFilterConfiguration.Builder> patternObjectFilter) The configuration of filtering certain objects or content types of the data source.patternObjectFilter(PatternObjectFilterConfiguration patternObjectFilter) The configuration of filtering certain objects or content types of the data source.The type of filtering that you want to apply to certain objects or content of the data source.The type of filtering that you want to apply to certain objects or content of the data source.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
type
The type of filtering that you want to apply to certain objects or content of the data source. For example, the
PATTERNtype is regular expression patterns you can apply to filter your content.- Parameters:
type- The type of filtering that you want to apply to certain objects or content of the data source. For example, thePATTERNtype is regular expression patterns you can apply to filter your content.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
type
The type of filtering that you want to apply to certain objects or content of the data source. For example, the
PATTERNtype is regular expression patterns you can apply to filter your content.- Parameters:
type- The type of filtering that you want to apply to certain objects or content of the data source. For example, thePATTERNtype is regular expression patterns you can apply to filter your content.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
patternObjectFilter
CrawlFilterConfiguration.Builder patternObjectFilter(PatternObjectFilterConfiguration patternObjectFilter) The configuration of filtering certain objects or content types of the data source.
- Parameters:
patternObjectFilter- The configuration of filtering certain objects or content types of the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
patternObjectFilter
default CrawlFilterConfiguration.Builder patternObjectFilter(Consumer<PatternObjectFilterConfiguration.Builder> patternObjectFilter) The configuration of filtering certain objects or content types of the data source.
This is a convenience method that creates an instance of thePatternObjectFilterConfiguration.Builderavoiding the need to create one manually viaPatternObjectFilterConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topatternObjectFilter(PatternObjectFilterConfiguration).- Parameters:
patternObjectFilter- a consumer that will call methods onPatternObjectFilterConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-