Interface BatchListObjectAttributesResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchListObjectAttributesResponse.Builder,BatchListObjectAttributesResponse>,SdkBuilder<BatchListObjectAttributesResponse.Builder,BatchListObjectAttributesResponse>,SdkPojo
- Enclosing class:
- BatchListObjectAttributesResponse
public static interface BatchListObjectAttributesResponse.Builder extends SdkPojo, CopyableBuilder<BatchListObjectAttributesResponse.Builder,BatchListObjectAttributesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchListObjectAttributesResponse.Builderattributes(Collection<AttributeKeyAndValue> attributes)The attributes map that is associated with the object.BatchListObjectAttributesResponse.Builderattributes(Consumer<AttributeKeyAndValue.Builder>... attributes)The attributes map that is associated with the object.BatchListObjectAttributesResponse.Builderattributes(AttributeKeyAndValue... attributes)The attributes map that is associated with the object.BatchListObjectAttributesResponse.BuildernextToken(String nextToken)The pagination token.-
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
BatchListObjectAttributesResponse.Builder attributes(Collection<AttributeKeyAndValue> attributes)
The attributes map that is associated with the object.
AttributeArnis the key; attribute value is the value.- Parameters:
attributes- The attributes map that is associated with the object.AttributeArnis the key; attribute value is the value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
BatchListObjectAttributesResponse.Builder attributes(AttributeKeyAndValue... attributes)
The attributes map that is associated with the object.
AttributeArnis the key; attribute value is the value.- Parameters:
attributes- The attributes map that is associated with the object.AttributeArnis the key; attribute value is the value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
BatchListObjectAttributesResponse.Builder attributes(Consumer<AttributeKeyAndValue.Builder>... attributes)
The attributes map that is associated with the object.
This is a convenience method that creates an instance of theAttributeArnis the key; attribute value is the value.AttributeKeyAndValue.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)
-
nextToken
BatchListObjectAttributesResponse.Builder nextToken(String nextToken)
The pagination token.
- Parameters:
nextToken- The pagination token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-