Interface DeploymentFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeploymentFilter.Builder,DeploymentFilter>,SdkBuilder<DeploymentFilter.Builder,DeploymentFilter>,SdkPojo
- Enclosing class:
- DeploymentFilter
public static interface DeploymentFilter.Builder extends SdkPojo, CopyableBuilder<DeploymentFilter.Builder,DeploymentFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentFilter.Buildername(String name)The name of the filter.DeploymentFilter.Buildername(DeploymentFilterKey name)The name of the filter.DeploymentFilter.Buildervalues(String... values)The filter values.DeploymentFilter.Buildervalues(Collection<String> values)The filter values.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
DeploymentFilter.Builder name(String name)
The name of the filter. Filter names are case-sensitive.
- Parameters:
name- The name of the filter. Filter names are case-sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentFilterKey,DeploymentFilterKey
-
name
DeploymentFilter.Builder name(DeploymentFilterKey name)
The name of the filter. Filter names are case-sensitive.
- Parameters:
name- The name of the filter. Filter names are case-sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentFilterKey,DeploymentFilterKey
-
values
DeploymentFilter.Builder values(Collection<String> values)
The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an
OR, and the request returns all results that match any of the specified values.- Parameters:
values- The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with anOR, and the request returns all results that match any of the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DeploymentFilter.Builder values(String... values)
The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an
OR, and the request returns all results that match any of the specified values.- Parameters:
values- The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with anOR, and the request returns all results that match any of the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-