Interface GroupSearchFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GroupSearchFilter.Builder,GroupSearchFilter>,SdkBuilder<GroupSearchFilter.Builder,GroupSearchFilter>,SdkPojo
- Enclosing class:
- GroupSearchFilter
public static interface GroupSearchFilter.Builder extends SdkPojo, CopyableBuilder<GroupSearchFilter.Builder,GroupSearchFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GroupSearchFilter.Buildername(String name)The name of the value that you want to use as a filter, for example"Name": "GROUP_NAME".GroupSearchFilter.Buildername(GroupFilterAttribute name)The name of the value that you want to use as a filter, for example"Name": "GROUP_NAME".GroupSearchFilter.Builderoperator(String operator)The comparison operator that you want to use as a filter, for example"Operator": "StartsWith".GroupSearchFilter.Builderoperator(GroupFilterOperator operator)The comparison operator that you want to use as a filter, for example"Operator": "StartsWith".GroupSearchFilter.Buildervalue(String value)The value of the named item, in this caseGROUP_NAME, that you want to use as a 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
-
operator
GroupSearchFilter.Builder operator(String operator)
The comparison operator that you want to use as a filter, for example
"Operator": "StartsWith". Currently, the only supported operator isStartsWith.- Parameters:
operator- The comparison operator that you want to use as a filter, for example"Operator": "StartsWith". Currently, the only supported operator isStartsWith.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupFilterOperator,GroupFilterOperator
-
operator
GroupSearchFilter.Builder operator(GroupFilterOperator operator)
The comparison operator that you want to use as a filter, for example
"Operator": "StartsWith". Currently, the only supported operator isStartsWith.- Parameters:
operator- The comparison operator that you want to use as a filter, for example"Operator": "StartsWith". Currently, the only supported operator isStartsWith.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupFilterOperator,GroupFilterOperator
-
name
GroupSearchFilter.Builder name(String name)
The name of the value that you want to use as a filter, for example
"Name": "GROUP_NAME". Currently, the only supported name isGROUP_NAME.- Parameters:
name- The name of the value that you want to use as a filter, for example"Name": "GROUP_NAME". Currently, the only supported name isGROUP_NAME.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupFilterAttribute,GroupFilterAttribute
-
name
GroupSearchFilter.Builder name(GroupFilterAttribute name)
The name of the value that you want to use as a filter, for example
"Name": "GROUP_NAME". Currently, the only supported name isGROUP_NAME.- Parameters:
name- The name of the value that you want to use as a filter, for example"Name": "GROUP_NAME". Currently, the only supported name isGROUP_NAME.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupFilterAttribute,GroupFilterAttribute
-
value
GroupSearchFilter.Builder value(String value)
The value of the named item, in this case
GROUP_NAME, that you want to use as a filter.- Parameters:
value- The value of the named item, in this caseGROUP_NAME, that you want to use as a filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-