Interface IntentFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IntentFilter.Builder,IntentFilter>,SdkBuilder<IntentFilter.Builder,IntentFilter>,SdkPojo
- Enclosing class:
- IntentFilter
public static interface IntentFilter.Builder extends SdkPojo, CopyableBuilder<IntentFilter.Builder,IntentFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntentFilter.Buildername(String name)The name of the field to use for the filter.IntentFilter.Buildername(IntentFilterName name)The name of the field to use for the filter.IntentFilter.Builderoperator(String operator)The operator to use for the filter.IntentFilter.Builderoperator(IntentFilterOperator operator)The operator to use for the filter.IntentFilter.Buildervalues(String... values)The value to use for the filter.IntentFilter.Buildervalues(Collection<String> values)The value to use for the 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
-
name
IntentFilter.Builder name(String name)
The name of the field to use for the filter.
- Parameters:
name- The name of the field to use for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntentFilterName,IntentFilterName
-
name
IntentFilter.Builder name(IntentFilterName name)
The name of the field to use for the filter.
- Parameters:
name- The name of the field to use for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntentFilterName,IntentFilterName
-
values
IntentFilter.Builder values(Collection<String> values)
The value to use for the filter.
- Parameters:
values- The value to use for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
IntentFilter.Builder values(String... values)
The value to use for the filter.
- Parameters:
values- The value to use for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
IntentFilter.Builder operator(String operator)
The operator to use for the filter. Specify
EQwhen theListIntentsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListIntentsoperation should return aliases that contain the specified value.- Parameters:
operator- The operator to use for the filter. SpecifyEQwhen theListIntentsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListIntentsoperation should return aliases that contain the specified value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntentFilterOperator,IntentFilterOperator
-
operator
IntentFilter.Builder operator(IntentFilterOperator operator)
The operator to use for the filter. Specify
EQwhen theListIntentsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListIntentsoperation should return aliases that contain the specified value.- Parameters:
operator- The operator to use for the filter. SpecifyEQwhen theListIntentsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListIntentsoperation should return aliases that contain the specified value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntentFilterOperator,IntentFilterOperator
-
-