Interface LocationFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LocationFilter.Builder,LocationFilter>,SdkBuilder<LocationFilter.Builder,LocationFilter>,SdkPojo
- Enclosing class:
- LocationFilter
public static interface LocationFilter.Builder extends SdkPojo, CopyableBuilder<LocationFilter.Builder,LocationFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LocationFilter.Buildername(String name)The name of the filter being used.LocationFilter.Buildername(LocationFilterName name)The name of the filter being used.LocationFilter.Builderoperator(String operator)The operator that is used to compare filter values (for example,EqualsorContains).LocationFilter.Builderoperator(Operator operator)The operator that is used to compare filter values (for example,EqualsorContains).LocationFilter.Buildervalues(String... values)The values that you want to filter for.LocationFilter.Buildervalues(Collection<String> values)The values that you want to filter for.-
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
LocationFilter.Builder name(String name)
The name of the filter being used. Each API call supports a list of filters that are available for it (for example,
LocationTypeforListLocations).- Parameters:
name- The name of the filter being used. Each API call supports a list of filters that are available for it (for example,LocationTypeforListLocations).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LocationFilterName,LocationFilterName
-
name
LocationFilter.Builder name(LocationFilterName name)
The name of the filter being used. Each API call supports a list of filters that are available for it (for example,
LocationTypeforListLocations).- Parameters:
name- The name of the filter being used. Each API call supports a list of filters that are available for it (for example,LocationTypeforListLocations).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LocationFilterName,LocationFilterName
-
values
LocationFilter.Builder values(Collection<String> values)
The values that you want to filter for. For example, you might want to display only Amazon S3 locations.
- Parameters:
values- The values that you want to filter for. For example, you might want to display only Amazon S3 locations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
LocationFilter.Builder values(String... values)
The values that you want to filter for. For example, you might want to display only Amazon S3 locations.
- Parameters:
values- The values that you want to filter for. For example, you might want to display only Amazon S3 locations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
LocationFilter.Builder operator(String operator)
The operator that is used to compare filter values (for example,
EqualsorContains).
-
operator
LocationFilter.Builder operator(Operator operator)
The operator that is used to compare filter values (for example,
EqualsorContains).
-
-