Interface QueueSearchCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueueSearchCriteria.Builder,QueueSearchCriteria>,SdkBuilder<QueueSearchCriteria.Builder,QueueSearchCriteria>,SdkPojo
- Enclosing class:
- QueueSearchCriteria
public static interface QueueSearchCriteria.Builder extends SdkPojo, CopyableBuilder<QueueSearchCriteria.Builder,QueueSearchCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description QueueSearchCriteria.BuilderandConditions(Collection<QueueSearchCriteria> andConditions)A list of conditions which would be applied together with an AND condition.QueueSearchCriteria.BuilderandConditions(Consumer<QueueSearchCriteria.Builder>... andConditions)A list of conditions which would be applied together with an AND condition.QueueSearchCriteria.BuilderandConditions(QueueSearchCriteria... andConditions)A list of conditions which would be applied together with an AND condition.QueueSearchCriteria.BuilderorConditions(Collection<QueueSearchCriteria> orConditions)A list of conditions which would be applied together with an OR condition.QueueSearchCriteria.BuilderorConditions(Consumer<QueueSearchCriteria.Builder>... orConditions)A list of conditions which would be applied together with an OR condition.QueueSearchCriteria.BuilderorConditions(QueueSearchCriteria... orConditions)A list of conditions which would be applied together with an OR condition.QueueSearchCriteria.BuilderqueueTypeCondition(String queueTypeCondition)The type of queue.QueueSearchCriteria.BuilderqueueTypeCondition(SearchableQueueType queueTypeCondition)The type of queue.default QueueSearchCriteria.BuilderstringCondition(Consumer<StringCondition.Builder> stringCondition)A leaf node condition which can be used to specify a string condition.QueueSearchCriteria.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
QueueSearchCriteria.Builder orConditions(Collection<QueueSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR condition.
- Parameters:
orConditions- A list of conditions which would be applied together with an OR condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
QueueSearchCriteria.Builder orConditions(QueueSearchCriteria... orConditions)
A list of conditions which would be applied together with an OR condition.
- Parameters:
orConditions- A list of conditions which would be applied together with an OR condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
QueueSearchCriteria.Builder orConditions(Consumer<QueueSearchCriteria.Builder>... orConditions)
A list of conditions which would be applied together with an OR condition.
This is a convenience method that creates an instance of theQueueSearchCriteria.Builderavoiding the need to create one manually viaQueueSearchCriteria.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 onQueueSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orConditions(java.util.Collection)
-
andConditions
QueueSearchCriteria.Builder andConditions(Collection<QueueSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND condition.
- Parameters:
andConditions- A list of conditions which would be applied together with an AND condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
andConditions
QueueSearchCriteria.Builder andConditions(QueueSearchCriteria... andConditions)
A list of conditions which would be applied together with an AND condition.
- Parameters:
andConditions- A list of conditions which would be applied together with an AND condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
andConditions
QueueSearchCriteria.Builder andConditions(Consumer<QueueSearchCriteria.Builder>... andConditions)
A list of conditions which would be applied together with an AND condition.
This is a convenience method that creates an instance of theQueueSearchCriteria.Builderavoiding the need to create one manually viaQueueSearchCriteria.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 onQueueSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#andConditions(java.util.Collection)
-
stringCondition
QueueSearchCriteria.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 QueueSearchCriteria.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)
-
queueTypeCondition
QueueSearchCriteria.Builder queueTypeCondition(String queueTypeCondition)
The type of queue.
- Parameters:
queueTypeCondition- The type of queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchableQueueType,SearchableQueueType
-
queueTypeCondition
QueueSearchCriteria.Builder queueTypeCondition(SearchableQueueType queueTypeCondition)
The type of queue.
- Parameters:
queueTypeCondition- The type of queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchableQueueType,SearchableQueueType
-
-