Interface Condition.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Condition.Builder,
,Condition> SdkBuilder<Condition.Builder,
,Condition> SdkPojo
- Enclosing class:
Condition
@Mutable
@NotThreadSafe
public static interface Condition.Builder
extends SdkPojo, CopyableBuilder<Condition.Builder,Condition>
-
Method Summary
Modifier and TypeMethodDescriptionAfter the specified timestamp.Before the specified timestampdefault Condition.Builder
equalsValue
(Consumer<AttributeValueList.Builder> equalsValue) The value is equal to the provided string or integer.equalsValue
(AttributeValueList equalsValue) The value is equal to the provided string or integer.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 Details
-
after
After the specified timestamp.
- Parameters:
after
- After the specified timestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
before
Before the specified timestamp
- Parameters:
before
- Before the specified timestamp- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
equalsValue
The value is equal to the provided string or integer.
- Parameters:
equalsValue
- The value is equal to the provided string or integer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
equalsValue
The value is equal to the provided string or integer.
This is a convenience method that creates an instance of theAttributeValueList.Builder
avoiding the need to create one manually viaAttributeValueList.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toequalsValue(AttributeValueList)
.- Parameters:
equalsValue
- a consumer that will call methods onAttributeValueList.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-