Interface BatchGetLinkAttributesResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchGetLinkAttributesResponse.Builder,BatchGetLinkAttributesResponse>,SdkBuilder<BatchGetLinkAttributesResponse.Builder,BatchGetLinkAttributesResponse>,SdkPojo
- Enclosing class:
- BatchGetLinkAttributesResponse
public static interface BatchGetLinkAttributesResponse.Builder extends SdkPojo, CopyableBuilder<BatchGetLinkAttributesResponse.Builder,BatchGetLinkAttributesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetLinkAttributesResponse.Builderattributes(Collection<AttributeKeyAndValue> attributes)The attributes that are associated with the typed link.BatchGetLinkAttributesResponse.Builderattributes(Consumer<AttributeKeyAndValue.Builder>... attributes)The attributes that are associated with the typed link.BatchGetLinkAttributesResponse.Builderattributes(AttributeKeyAndValue... attributes)The attributes that are associated with the typed link.-
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
BatchGetLinkAttributesResponse.Builder attributes(Collection<AttributeKeyAndValue> attributes)
The attributes that are associated with the typed link.
- Parameters:
attributes- The attributes that are associated with the typed link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
BatchGetLinkAttributesResponse.Builder attributes(AttributeKeyAndValue... attributes)
The attributes that are associated with the typed link.
- Parameters:
attributes- The attributes that are associated with the typed link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
BatchGetLinkAttributesResponse.Builder attributes(Consumer<AttributeKeyAndValue.Builder>... attributes)
The attributes that are associated with the typed link.
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#attributes(List.) - Parameters:
attributes- 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:
#attributes(java.util.Collection)
-
-