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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BatchUpdateLinkAttributes.BuilderattributeUpdates(Collection<LinkAttributeUpdate> attributeUpdates)The attributes update structure.BatchUpdateLinkAttributes.BuilderattributeUpdates(Consumer<LinkAttributeUpdate.Builder>... attributeUpdates)The attributes update structure.BatchUpdateLinkAttributes.BuilderattributeUpdates(LinkAttributeUpdate... attributeUpdates)The attributes update structure.default BatchUpdateLinkAttributes.BuildertypedLinkSpecifier(Consumer<TypedLinkSpecifier.Builder> typedLinkSpecifier)Allows a typed link specifier to be accepted as input.BatchUpdateLinkAttributes.BuildertypedLinkSpecifier(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 Detail
-
typedLinkSpecifier
BatchUpdateLinkAttributes.Builder typedLinkSpecifier(TypedLinkSpecifier 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.Builderavoiding the need to create one manually viaTypedLinkSpecifier.builder().When the
Consumercompletes,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:
typedLinkSpecifier(TypedLinkSpecifier)
-
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
BatchUpdateLinkAttributes.Builder attributeUpdates(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
BatchUpdateLinkAttributes.Builder attributeUpdates(Consumer<LinkAttributeUpdate.Builder>... attributeUpdates)
The attributes update structure.
This is a convenience method that creates an instance of theLinkAttributeUpdate.Builderavoiding the need to create one manually viaLinkAttributeUpdate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#attributeUpdates(List.) - 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:
#attributeUpdates(java.util.Collection)
-
-