Interface SystemInstanceFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SystemInstanceFilter.Builder,SystemInstanceFilter>,SdkBuilder<SystemInstanceFilter.Builder,SystemInstanceFilter>,SdkPojo
- Enclosing class:
- SystemInstanceFilter
public static interface SystemInstanceFilter.Builder extends SdkPojo, CopyableBuilder<SystemInstanceFilter.Builder,SystemInstanceFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SystemInstanceFilter.Buildername(String name)The name of the search filter field.SystemInstanceFilter.Buildername(SystemInstanceFilterName name)The name of the search filter field.SystemInstanceFilter.Buildervalue(String... value)An array of string values for the search filter field.SystemInstanceFilter.Buildervalue(Collection<String> value)An array of string values for the search filter field.-
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
SystemInstanceFilter.Builder name(String name)
The name of the search filter field.
- Parameters:
name- The name of the search filter field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SystemInstanceFilterName,SystemInstanceFilterName
-
name
SystemInstanceFilter.Builder name(SystemInstanceFilterName name)
The name of the search filter field.
- Parameters:
name- The name of the search filter field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SystemInstanceFilterName,SystemInstanceFilterName
-
value
SystemInstanceFilter.Builder value(Collection<String> value)
An array of string values for the search filter field. Multiple values function as AND criteria in the search.
- Parameters:
value- An array of string values for the search filter field. Multiple values function as AND criteria in the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
SystemInstanceFilter.Builder value(String... value)
An array of string values for the search filter field. Multiple values function as AND criteria in the search.
- Parameters:
value- An array of string values for the search filter field. Multiple values function as AND criteria in the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-