Interface MapFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MapFilter.Builder,MapFilter>,SdkBuilder<MapFilter.Builder,MapFilter>,SdkPojo
- Enclosing class:
- MapFilter
public static interface MapFilter.Builder extends SdkPojo, CopyableBuilder<MapFilter.Builder,MapFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MapFilter.Buildercomparison(String comparison)The operator to use when comparing values in the filter.MapFilter.Buildercomparison(MapComparison comparison)The operator to use when comparing values in the filter.MapFilter.Builderkey(String key)The tag key used in the filter.MapFilter.Buildervalue(String value)The tag value used in 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
-
comparison
MapFilter.Builder comparison(String comparison)
The operator to use when comparing values in the filter.
- Parameters:
comparison- The operator to use when comparing values in the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MapComparison,MapComparison
-
comparison
MapFilter.Builder comparison(MapComparison comparison)
The operator to use when comparing values in the filter.
- Parameters:
comparison- The operator to use when comparing values in the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MapComparison,MapComparison
-
key
MapFilter.Builder key(String key)
The tag key used in the filter.
- Parameters:
key- The tag key used in the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
MapFilter.Builder value(String value)
The tag value used in the filter.
- Parameters:
value- The tag value used in the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-