Interface IngestionJobFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IngestionJobFilter.Builder,IngestionJobFilter>,SdkBuilder<IngestionJobFilter.Builder,IngestionJobFilter>,SdkPojo
- Enclosing class:
- IngestionJobFilter
public static interface IngestionJobFilter.Builder extends SdkPojo, CopyableBuilder<IngestionJobFilter.Builder,IngestionJobFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IngestionJobFilter.Builderattribute(String attribute)The attribute by which to filter the results.IngestionJobFilter.Builderattribute(IngestionJobFilterAttribute attribute)The attribute by which to filter the results.IngestionJobFilter.Builderoperator(String operator)The operation to carry out between the attribute and the values.IngestionJobFilter.Builderoperator(IngestionJobFilterOperator operator)The operation to carry out between the attribute and the values.IngestionJobFilter.Buildervalues(String... values)A list of values for the attribute.IngestionJobFilter.Buildervalues(Collection<String> values)A list of values for the attribute.-
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
-
attribute
IngestionJobFilter.Builder attribute(String attribute)
The attribute by which to filter the results.
- Parameters:
attribute- The attribute by which to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngestionJobFilterAttribute,IngestionJobFilterAttribute
-
attribute
IngestionJobFilter.Builder attribute(IngestionJobFilterAttribute attribute)
The attribute by which to filter the results.
- Parameters:
attribute- The attribute by which to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngestionJobFilterAttribute,IngestionJobFilterAttribute
-
operator
IngestionJobFilter.Builder operator(String operator)
The operation to carry out between the attribute and the values.
- Parameters:
operator- The operation to carry out between the attribute and the values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngestionJobFilterOperator,IngestionJobFilterOperator
-
operator
IngestionJobFilter.Builder operator(IngestionJobFilterOperator operator)
The operation to carry out between the attribute and the values.
- Parameters:
operator- The operation to carry out between the attribute and the values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngestionJobFilterOperator,IngestionJobFilterOperator
-
values
IngestionJobFilter.Builder values(Collection<String> values)
A list of values for the attribute.
- Parameters:
values- A list of values for the attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
IngestionJobFilter.Builder values(String... values)
A list of values for the attribute.
- Parameters:
values- A list of values for the attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-