Interface UserSearchCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserSearchCriteria.Builder,UserSearchCriteria>,SdkBuilder<UserSearchCriteria.Builder,UserSearchCriteria>,SdkPojo
- Enclosing class:
- UserSearchCriteria
public static interface UserSearchCriteria.Builder extends SdkPojo, CopyableBuilder<UserSearchCriteria.Builder,UserSearchCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UserSearchCriteria.BuilderandConditions(Collection<UserSearchCriteria> andConditions)A list of conditions which would be applied together with anANDcondition.UserSearchCriteria.BuilderandConditions(Consumer<UserSearchCriteria.Builder>... andConditions)A list of conditions which would be applied together with anANDcondition.UserSearchCriteria.BuilderandConditions(UserSearchCriteria... andConditions)A list of conditions which would be applied together with anANDcondition.default UserSearchCriteria.BuilderhierarchyGroupCondition(Consumer<HierarchyGroupCondition.Builder> hierarchyGroupCondition)A leaf node condition which can be used to specify a hierarchy group condition.UserSearchCriteria.BuilderhierarchyGroupCondition(HierarchyGroupCondition hierarchyGroupCondition)A leaf node condition which can be used to specify a hierarchy group condition.UserSearchCriteria.BuilderorConditions(Collection<UserSearchCriteria> orConditions)A list of conditions which would be applied together with anORcondition.UserSearchCriteria.BuilderorConditions(Consumer<UserSearchCriteria.Builder>... orConditions)A list of conditions which would be applied together with anORcondition.UserSearchCriteria.BuilderorConditions(UserSearchCriteria... orConditions)A list of conditions which would be applied together with anORcondition.default UserSearchCriteria.BuilderstringCondition(Consumer<StringCondition.Builder> stringCondition)A leaf node condition which can be used to specify a string condition.UserSearchCriteria.BuilderstringCondition(StringCondition stringCondition)A leaf node condition which can be used to specify a string condition.-
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
-
orConditions
UserSearchCriteria.Builder orConditions(Collection<UserSearchCriteria> orConditions)
A list of conditions which would be applied together with an
ORcondition.- Parameters:
orConditions- A list of conditions which would be applied together with anORcondition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
UserSearchCriteria.Builder orConditions(UserSearchCriteria... orConditions)
A list of conditions which would be applied together with an
ORcondition.- Parameters:
orConditions- A list of conditions which would be applied together with anORcondition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
UserSearchCriteria.Builder orConditions(Consumer<UserSearchCriteria.Builder>... orConditions)
A list of conditions which would be applied together with an
This is a convenience method that creates an instance of theORcondition.UserSearchCriteria.Builderavoiding the need to create one manually viaUserSearchCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#orConditions(List.) - Parameters:
orConditions- a consumer that will call methods onUserSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orConditions(java.util.Collection)
-
andConditions
UserSearchCriteria.Builder andConditions(Collection<UserSearchCriteria> andConditions)
A list of conditions which would be applied together with an
ANDcondition.- Parameters:
andConditions- A list of conditions which would be applied together with anANDcondition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
andConditions
UserSearchCriteria.Builder andConditions(UserSearchCriteria... andConditions)
A list of conditions which would be applied together with an
ANDcondition.- Parameters:
andConditions- A list of conditions which would be applied together with anANDcondition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
andConditions
UserSearchCriteria.Builder andConditions(Consumer<UserSearchCriteria.Builder>... andConditions)
A list of conditions which would be applied together with an
This is a convenience method that creates an instance of theANDcondition.UserSearchCriteria.Builderavoiding the need to create one manually viaUserSearchCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#andConditions(List.) - Parameters:
andConditions- a consumer that will call methods onUserSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#andConditions(java.util.Collection)
-
stringCondition
UserSearchCriteria.Builder stringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
The currently supported values for
FieldNamearename,description, andresourceID.- Parameters:
stringCondition- A leaf node condition which can be used to specify a string condition.The currently supported values for
FieldNamearename,description, andresourceID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringCondition
default UserSearchCriteria.Builder stringCondition(Consumer<StringCondition.Builder> stringCondition)
A leaf node condition which can be used to specify a string condition.
This is a convenience method that creates an instance of theThe currently supported values for
FieldNamearename,description, andresourceID.StringCondition.Builderavoiding the need to create one manually viaStringCondition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostringCondition(StringCondition).- Parameters:
stringCondition- a consumer that will call methods onStringCondition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
stringCondition(StringCondition)
-
hierarchyGroupCondition
UserSearchCriteria.Builder hierarchyGroupCondition(HierarchyGroupCondition hierarchyGroupCondition)
A leaf node condition which can be used to specify a hierarchy group condition.
- Parameters:
hierarchyGroupCondition- A leaf node condition which can be used to specify a hierarchy group condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hierarchyGroupCondition
default UserSearchCriteria.Builder hierarchyGroupCondition(Consumer<HierarchyGroupCondition.Builder> hierarchyGroupCondition)
A leaf node condition which can be used to specify a hierarchy group condition.
This is a convenience method that creates an instance of theHierarchyGroupCondition.Builderavoiding the need to create one manually viaHierarchyGroupCondition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohierarchyGroupCondition(HierarchyGroupCondition).- Parameters:
hierarchyGroupCondition- a consumer that will call methods onHierarchyGroupCondition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
hierarchyGroupCondition(HierarchyGroupCondition)
-
-