Interface AttributeDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AttributeDetails.Builder,AttributeDetails>,SdkBuilder<AttributeDetails.Builder,AttributeDetails>,SdkPojo
- Enclosing class:
- AttributeDetails
public static interface AttributeDetails.Builder extends SdkPojo, CopyableBuilder<AttributeDetails.Builder,AttributeDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeDetails.Builderattributes(Collection<AttributeItem> attributes)A list of attribute items specified in the mathematical expression.AttributeDetails.Builderattributes(Consumer<AttributeItem.Builder>... attributes)A list of attribute items specified in the mathematical expression.AttributeDetails.Builderattributes(AttributeItem... attributes)A list of attribute items specified in the mathematical expression.AttributeDetails.Builderexpression(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, sdkFields
-
-
-
-
Method Detail
-
attributes
AttributeDetails.Builder attributes(Collection<AttributeItem> 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
AttributeDetails.Builder attributes(AttributeItem... 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
AttributeDetails.Builder attributes(Consumer<AttributeItem.Builder>... attributes)
A list of attribute items specified in the mathematical expression.
This is a convenience method that creates an instance of theAttributeItem.Builderavoiding the need to create one manually viaAttributeItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#attributes(List.) - 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:
#attributes(java.util.Collection)
-
expression
AttributeDetails.Builder expression(String 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.
-
-