Interface IndexAttachment.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IndexAttachment.Builder,IndexAttachment>,SdkBuilder<IndexAttachment.Builder,IndexAttachment>,SdkPojo
- Enclosing class:
- IndexAttachment
public static interface IndexAttachment.Builder extends SdkPojo, CopyableBuilder<IndexAttachment.Builder,IndexAttachment>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IndexAttachment.BuilderindexedAttributes(Collection<AttributeKeyAndValue> indexedAttributes)The indexed attribute values.IndexAttachment.BuilderindexedAttributes(Consumer<AttributeKeyAndValue.Builder>... indexedAttributes)The indexed attribute values.IndexAttachment.BuilderindexedAttributes(AttributeKeyAndValue... indexedAttributes)The indexed attribute values.IndexAttachment.BuilderobjectIdentifier(String objectIdentifier)In response to ListIndex, theObjectIdentifierof the object attached to the index.-
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
-
indexedAttributes
IndexAttachment.Builder indexedAttributes(Collection<AttributeKeyAndValue> indexedAttributes)
The indexed attribute values.
- Parameters:
indexedAttributes- The indexed attribute values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexedAttributes
IndexAttachment.Builder indexedAttributes(AttributeKeyAndValue... indexedAttributes)
The indexed attribute values.
- Parameters:
indexedAttributes- The indexed attribute values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexedAttributes
IndexAttachment.Builder indexedAttributes(Consumer<AttributeKeyAndValue.Builder>... indexedAttributes)
The indexed attribute values.
This is a convenience method that creates an instance of theAttributeKeyAndValue.Builderavoiding the need to create one manually viaAttributeKeyAndValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#indexedAttributes(List.) - Parameters:
indexedAttributes- a consumer that will call methods onAttributeKeyAndValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#indexedAttributes(java.util.Collection)
-
objectIdentifier
IndexAttachment.Builder objectIdentifier(String objectIdentifier)
In response to ListIndex, the
ObjectIdentifierof the object attached to the index. In response to ListAttachedIndices, theObjectIdentifierof the index attached to the object. This field will always contain theObjectIdentifierof the object on the opposite side of the attachment specified in the query.- Parameters:
objectIdentifier- In response to ListIndex, theObjectIdentifierof the object attached to the index. In response to ListAttachedIndices, theObjectIdentifierof the index attached to the object. This field will always contain theObjectIdentifierof the object on the opposite side of the attachment specified in the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-