Interface SecurityProfileSearchCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SecurityProfileSearchCriteria.Builder,SecurityProfileSearchCriteria>,SdkBuilder<SecurityProfileSearchCriteria.Builder,SecurityProfileSearchCriteria>,SdkPojo
- Enclosing class:
- SecurityProfileSearchCriteria
public static interface SecurityProfileSearchCriteria.Builder extends SdkPojo, CopyableBuilder<SecurityProfileSearchCriteria.Builder,SecurityProfileSearchCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SecurityProfileSearchCriteria.BuilderandConditions(Collection<SecurityProfileSearchCriteria> andConditions)A list of conditions which would be applied together with an AND condition.SecurityProfileSearchCriteria.BuilderandConditions(Consumer<SecurityProfileSearchCriteria.Builder>... andConditions)A list of conditions which would be applied together with an AND condition.SecurityProfileSearchCriteria.BuilderandConditions(SecurityProfileSearchCriteria... andConditions)A list of conditions which would be applied together with an AND condition.SecurityProfileSearchCriteria.BuilderorConditions(Collection<SecurityProfileSearchCriteria> orConditions)A list of conditions which would be applied together with an OR condition.SecurityProfileSearchCriteria.BuilderorConditions(Consumer<SecurityProfileSearchCriteria.Builder>... orConditions)A list of conditions which would be applied together with an OR condition.SecurityProfileSearchCriteria.BuilderorConditions(SecurityProfileSearchCriteria... orConditions)A list of conditions which would be applied together with an OR condition.default SecurityProfileSearchCriteria.BuilderstringCondition(Consumer<StringCondition.Builder> stringCondition)Sets the value of the StringCondition property for this object.SecurityProfileSearchCriteria.BuilderstringCondition(StringCondition stringCondition)Sets the value of the StringCondition property for this object.-
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
SecurityProfileSearchCriteria.Builder orConditions(Collection<SecurityProfileSearchCriteria> 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
SecurityProfileSearchCriteria.Builder orConditions(SecurityProfileSearchCriteria... 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
SecurityProfileSearchCriteria.Builder orConditions(Consumer<SecurityProfileSearchCriteria.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 theSecurityProfileSearchCriteria.Builderavoiding the need to create one manually viaSecurityProfileSearchCriteria.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 onSecurityProfileSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orConditions(java.util.Collection)
-
andConditions
SecurityProfileSearchCriteria.Builder andConditions(Collection<SecurityProfileSearchCriteria> 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
SecurityProfileSearchCriteria.Builder andConditions(SecurityProfileSearchCriteria... 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
SecurityProfileSearchCriteria.Builder andConditions(Consumer<SecurityProfileSearchCriteria.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 theSecurityProfileSearchCriteria.Builderavoiding the need to create one manually viaSecurityProfileSearchCriteria.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 onSecurityProfileSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#andConditions(java.util.Collection)
-
stringCondition
SecurityProfileSearchCriteria.Builder stringCondition(StringCondition stringCondition)
Sets the value of the StringCondition property for this object.- Parameters:
stringCondition- The new value for the StringCondition property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringCondition
default SecurityProfileSearchCriteria.Builder stringCondition(Consumer<StringCondition.Builder> stringCondition)
Sets the value of the StringCondition property for this object. This is a convenience method that creates an instance of theStringCondition.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)
-
-