Interface DataProductTitleFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataProductTitleFilter.Builder,DataProductTitleFilter>,SdkBuilder<DataProductTitleFilter.Builder,DataProductTitleFilter>,SdkPojo
- Enclosing class:
- DataProductTitleFilter
public static interface DataProductTitleFilter.Builder extends SdkPojo, CopyableBuilder<DataProductTitleFilter.Builder,DataProductTitleFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataProductTitleFilter.BuildervalueList(String... valueList)A string array of unique product title values to be filtered on.DataProductTitleFilter.BuildervalueList(Collection<String> valueList)A string array of unique product title values to be filtered on.DataProductTitleFilter.BuilderwildCardValue(String wildCardValue)A string that will be thewildCardinput for product tile filter.-
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
-
valueList
DataProductTitleFilter.Builder valueList(Collection<String> valueList)
A string array of unique product title values to be filtered on.
- Parameters:
valueList- A string array of unique product title values to be filtered on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueList
DataProductTitleFilter.Builder valueList(String... valueList)
A string array of unique product title values to be filtered on.
- Parameters:
valueList- A string array of unique product title values to be filtered on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
wildCardValue
DataProductTitleFilter.Builder wildCardValue(String wildCardValue)
A string that will be the
wildCardinput for product tile filter. It matches the provided value as a substring in the actual value.- Parameters:
wildCardValue- A string that will be thewildCardinput for product tile filter. It matches the provided value as a substring in the actual value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-