Interface PatternObjectFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PatternObjectFilter.Builder,PatternObjectFilter>,SdkBuilder<PatternObjectFilter.Builder,PatternObjectFilter>,SdkPojo
- Enclosing class:
- PatternObjectFilter
public static interface PatternObjectFilter.Builder extends SdkPojo, CopyableBuilder<PatternObjectFilter.Builder,PatternObjectFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PatternObjectFilter.BuilderexclusionFilters(String... exclusionFilters)A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern.PatternObjectFilter.BuilderexclusionFilters(Collection<String> exclusionFilters)A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern.PatternObjectFilter.BuilderinclusionFilters(String... inclusionFilters)A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern.PatternObjectFilter.BuilderinclusionFilters(Collection<String> inclusionFilters)A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern.PatternObjectFilter.BuilderobjectType(String objectType)The supported object type or content type 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
-
exclusionFilters
PatternObjectFilter.Builder exclusionFilters(Collection<String> exclusionFilters)
A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.
- Parameters:
exclusionFilters- A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclusionFilters
PatternObjectFilter.Builder exclusionFilters(String... exclusionFilters)
A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.
- Parameters:
exclusionFilters- A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inclusionFilters
PatternObjectFilter.Builder inclusionFilters(Collection<String> inclusionFilters)
A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.
- Parameters:
inclusionFilters- A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inclusionFilters
PatternObjectFilter.Builder inclusionFilters(String... inclusionFilters)
A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.
- Parameters:
inclusionFilters- A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern. If you specify an inclusion and exclusion filter/pattern and both match a document, the exclusion filter takes precedence and the document isn’t crawled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectType
PatternObjectFilter.Builder objectType(String objectType)
The supported object type or content type of the data source.
- Parameters:
objectType- The supported object type or content type of the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-