Interface PatchFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PatchFilter.Builder,PatchFilter>,SdkBuilder<PatchFilter.Builder,PatchFilter>,SdkPojo
- Enclosing class:
- PatchFilter
public static interface PatchFilter.Builder extends SdkPojo, CopyableBuilder<PatchFilter.Builder,PatchFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PatchFilter.Builderkey(String key)The key for the filter.PatchFilter.Builderkey(PatchFilterKey key)The key for the filter.PatchFilter.Buildervalues(String... values)The value for the filter key.PatchFilter.Buildervalues(Collection<String> values)The value for the filter key.-
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
-
key
PatchFilter.Builder key(String key)
The key for the filter.
Run the DescribePatchProperties command to view lists of valid keys for each operating system type.
- Parameters:
key- The key for the filter.Run the DescribePatchProperties command to view lists of valid keys for each operating system type.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PatchFilterKey,PatchFilterKey
-
key
PatchFilter.Builder key(PatchFilterKey key)
The key for the filter.
Run the DescribePatchProperties command to view lists of valid keys for each operating system type.
- Parameters:
key- The key for the filter.Run the DescribePatchProperties command to view lists of valid keys for each operating system type.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PatchFilterKey,PatchFilterKey
-
values
PatchFilter.Builder values(Collection<String> values)
The value for the filter key.
Run the DescribePatchProperties command to view lists of valid values for each key based on operating system type.
- Parameters:
values- The value for the filter key.Run the DescribePatchProperties command to view lists of valid values for each key based on operating system type.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
PatchFilter.Builder values(String... values)
The value for the filter key.
Run the DescribePatchProperties command to view lists of valid values for each key based on operating system type.
- Parameters:
values- The value for the filter key.Run the DescribePatchProperties command to view lists of valid values for each key based on operating system type.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-