Interface TypedAttributeValueRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TypedAttributeValueRange.Builder,TypedAttributeValueRange>,SdkBuilder<TypedAttributeValueRange.Builder,TypedAttributeValueRange>,SdkPojo
- Enclosing class:
- TypedAttributeValueRange
public static interface TypedAttributeValueRange.Builder extends SdkPojo, CopyableBuilder<TypedAttributeValueRange.Builder,TypedAttributeValueRange>
-
-
Method Summary
-
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
-
startMode
TypedAttributeValueRange.Builder startMode(String startMode)
The inclusive or exclusive range start.
-
startMode
TypedAttributeValueRange.Builder startMode(RangeMode startMode)
The inclusive or exclusive range start.
-
startValue
TypedAttributeValueRange.Builder startValue(TypedAttributeValue startValue)
The value to start the range at.
- Parameters:
startValue- The value to start the range at.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startValue
default TypedAttributeValueRange.Builder startValue(Consumer<TypedAttributeValue.Builder> startValue)
The value to start the range at.
This is a convenience method that creates an instance of theTypedAttributeValue.Builderavoiding the need to create one manually viaTypedAttributeValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostartValue(TypedAttributeValue).- Parameters:
startValue- a consumer that will call methods onTypedAttributeValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
startValue(TypedAttributeValue)
-
endMode
TypedAttributeValueRange.Builder endMode(String endMode)
The inclusive or exclusive range end.
-
endMode
TypedAttributeValueRange.Builder endMode(RangeMode endMode)
The inclusive or exclusive range end.
-
endValue
TypedAttributeValueRange.Builder endValue(TypedAttributeValue endValue)
The attribute value to terminate the range at.
- Parameters:
endValue- The attribute value to terminate the range at.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endValue
default TypedAttributeValueRange.Builder endValue(Consumer<TypedAttributeValue.Builder> endValue)
The attribute value to terminate the range at.
This is a convenience method that creates an instance of theTypedAttributeValue.Builderavoiding the need to create one manually viaTypedAttributeValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toendValue(TypedAttributeValue).- Parameters:
endValue- a consumer that will call methods onTypedAttributeValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
endValue(TypedAttributeValue)
-
-