Interface BatchUpdateLinkAttributes.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<BatchUpdateLinkAttributes.Builder,
,BatchUpdateLinkAttributes> SdkBuilder<BatchUpdateLinkAttributes.Builder,
,BatchUpdateLinkAttributes> SdkPojo
- Enclosing class:
BatchUpdateLinkAttributes
public static interface BatchUpdateLinkAttributes.Builder
extends SdkPojo, CopyableBuilder<BatchUpdateLinkAttributes.Builder,BatchUpdateLinkAttributes>
-
Method Summary
Modifier and TypeMethodDescriptionattributeUpdates
(Collection<LinkAttributeUpdate> attributeUpdates) The attributes update structure.attributeUpdates
(Consumer<LinkAttributeUpdate.Builder>... attributeUpdates) The attributes update structure.attributeUpdates
(LinkAttributeUpdate... attributeUpdates) The attributes update structure.typedLinkSpecifier
(Consumer<TypedLinkSpecifier.Builder> typedLinkSpecifier) Allows a typed link specifier to be accepted as input.typedLinkSpecifier
(TypedLinkSpecifier typedLinkSpecifier) Allows a typed link specifier to be accepted as input.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 Details
-
typedLinkSpecifier
Allows a typed link specifier to be accepted as input.
- Parameters:
typedLinkSpecifier
- Allows a typed link specifier to be accepted as input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typedLinkSpecifier
default BatchUpdateLinkAttributes.Builder typedLinkSpecifier(Consumer<TypedLinkSpecifier.Builder> typedLinkSpecifier) Allows a typed link specifier to be accepted as input.
This is a convenience method that creates an instance of theTypedLinkSpecifier.Builder
avoiding the need to create one manually viaTypedLinkSpecifier.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totypedLinkSpecifier(TypedLinkSpecifier)
.- Parameters:
typedLinkSpecifier
- a consumer that will call methods onTypedLinkSpecifier.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
attributeUpdates
BatchUpdateLinkAttributes.Builder attributeUpdates(Collection<LinkAttributeUpdate> attributeUpdates) The attributes update structure.
- Parameters:
attributeUpdates
- The attributes update structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeUpdates
The attributes update structure.
- Parameters:
attributeUpdates
- The attributes update structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeUpdates
BatchUpdateLinkAttributes.Builder attributeUpdates(Consumer<LinkAttributeUpdate.Builder>... attributeUpdates) The attributes update structure.
This is a convenience method that creates an instance of theLinkAttributeUpdate.Builder
avoiding the need to create one manually viaLinkAttributeUpdate.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toattributeUpdates(List<LinkAttributeUpdate>)
.- Parameters:
attributeUpdates
- a consumer that will call methods onLinkAttributeUpdate.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-