Interface ServiceFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServiceFilter.Builder,ServiceFilter>,SdkBuilder<ServiceFilter.Builder,ServiceFilter>,SdkPojo
- Enclosing class:
- ServiceFilter
public static interface ServiceFilter.Builder extends SdkPojo, CopyableBuilder<ServiceFilter.Builder,ServiceFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceFilter.Buildercondition(String condition)The operator that you want to use to determine whether a service is returned byListServices.ServiceFilter.Buildercondition(FilterCondition condition)The operator that you want to use to determine whether a service is returned byListServices.ServiceFilter.Buildername(String name)SpecifyNAMESPACE_ID.ServiceFilter.Buildername(ServiceFilterName name)SpecifyNAMESPACE_ID.ServiceFilter.Buildervalues(String... values)The values that are applicable to the value that you specify forConditionto filter the list of services.ServiceFilter.Buildervalues(Collection<String> values)The values that are applicable to the value that you specify forConditionto filter the list of services.-
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
ServiceFilter.Builder name(String name)
Specify
NAMESPACE_ID.- Parameters:
name- SpecifyNAMESPACE_ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceFilterName,ServiceFilterName
-
name
ServiceFilter.Builder name(ServiceFilterName name)
Specify
NAMESPACE_ID.- Parameters:
name- SpecifyNAMESPACE_ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceFilterName,ServiceFilterName
-
values
ServiceFilter.Builder values(Collection<String> values)
The values that are applicable to the value that you specify for
Conditionto filter the list of services.- Parameters:
values- The values that are applicable to the value that you specify forConditionto filter the list of services.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ServiceFilter.Builder values(String... values)
The values that are applicable to the value that you specify for
Conditionto filter the list of services.- Parameters:
values- The values that are applicable to the value that you specify forConditionto filter the list of services.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
condition
ServiceFilter.Builder condition(String condition)
The operator that you want to use to determine whether a service is returned by
ListServices. Valid values forConditioninclude the following:-
EQ: When you specifyEQ, specify one namespace ID forValues.EQis the default condition and can be omitted.
- Parameters:
condition- The operator that you want to use to determine whether a service is returned byListServices. Valid values forConditioninclude the following:-
EQ: When you specifyEQ, specify one namespace ID forValues.EQis the default condition and can be omitted.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterCondition,FilterCondition
-
-
condition
ServiceFilter.Builder condition(FilterCondition condition)
The operator that you want to use to determine whether a service is returned by
ListServices. Valid values forConditioninclude the following:-
EQ: When you specifyEQ, specify one namespace ID forValues.EQis the default condition and can be omitted.
- Parameters:
condition- The operator that you want to use to determine whether a service is returned byListServices. Valid values forConditioninclude the following:-
EQ: When you specifyEQ, specify one namespace ID forValues.EQis the default condition and can be omitted.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterCondition,FilterCondition
-
-
-