Interface AttributeDetails.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AttributeDetails.Builder,
,AttributeDetails> SdkBuilder<AttributeDetails.Builder,
,AttributeDetails> SdkPojo
- Enclosing class:
AttributeDetails
@Mutable
@NotThreadSafe
public static interface AttributeDetails.Builder
extends SdkPojo, CopyableBuilder<AttributeDetails.Builder,AttributeDetails>
-
Method Summary
Modifier and TypeMethodDescriptionattributes
(Collection<AttributeItem> attributes) A list of attribute items specified in the mathematical expression.attributes
(Consumer<AttributeItem.Builder>... attributes) A list of attribute items specified in the mathematical expression.attributes
(AttributeItem... attributes) A list of attribute items specified in the mathematical expression.expression
(String expression) Mathematical expression that is performed on attribute items provided in the attribute list.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
-
attributes
A list of attribute items specified in the mathematical expression.
- Parameters:
attributes
- A list of attribute items specified in the mathematical expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
A list of attribute items specified in the mathematical expression.
- Parameters:
attributes
- A list of attribute items specified in the mathematical expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
A list of attribute items specified in the mathematical expression.
This is a convenience method that creates an instance of theAttributeItem.Builder
avoiding the need to create one manually viaAttributeItem.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toattributes(List<AttributeItem>)
.- Parameters:
attributes
- a consumer that will call methods onAttributeItem.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
expression
Mathematical expression that is performed on attribute items provided in the attribute list. Each element in the expression should follow the structure of \"{ObjectTypeName.AttributeName}\".
- Parameters:
expression
- Mathematical expression that is performed on attribute items provided in the attribute list. Each element in the expression should follow the structure of \"{ObjectTypeName.AttributeName}\".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-