Interface CrawlFilterConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CrawlFilterConfiguration.Builder,CrawlFilterConfiguration>,SdkBuilder<CrawlFilterConfiguration.Builder,CrawlFilterConfiguration>,SdkPojo
- Enclosing class:
- CrawlFilterConfiguration
public static interface CrawlFilterConfiguration.Builder extends SdkPojo, CopyableBuilder<CrawlFilterConfiguration.Builder,CrawlFilterConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CrawlFilterConfiguration.BuilderpatternObjectFilter(Consumer<PatternObjectFilterConfiguration.Builder> patternObjectFilter)The configuration of filtering certain objects or content types of the data source.CrawlFilterConfiguration.BuilderpatternObjectFilter(PatternObjectFilterConfiguration patternObjectFilter)The configuration of filtering certain objects or content types of the data source.CrawlFilterConfiguration.Buildertype(String type)The type of filtering that you want to apply to certain objects or content of the data source.CrawlFilterConfiguration.Buildertype(CrawlFilterConfigurationType type)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
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
-
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:
patternObjectFilter(PatternObjectFilterConfiguration)
-
type
CrawlFilterConfiguration.Builder type(String 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:
CrawlFilterConfigurationType,CrawlFilterConfigurationType
-
type
CrawlFilterConfiguration.Builder type(CrawlFilterConfigurationType 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:
CrawlFilterConfigurationType,CrawlFilterConfigurationType
-
-