Interface S3Object.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Object.Builder,S3Object>,SdkBuilder<S3Object.Builder,S3Object>,SdkPojo
- Enclosing class:
- S3Object
public static interface S3Object.Builder extends SdkPojo, CopyableBuilder<S3Object.Builder,S3Object>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3Object.Builderbucket(String bucket)The bucket containing the object.S3Object.Builderetag(String etag)The etag of the object.S3Object.Builderkey(String key)The key of the object.-
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
-
bucket
S3Object.Builder bucket(String bucket)
The bucket containing the object.
- Parameters:
bucket- The bucket containing the object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
S3Object.Builder key(String key)
The key of the object.
- Parameters:
key- The key of the object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
etag
S3Object.Builder etag(String etag)
The etag of the object.
- Parameters:
etag- The etag of the object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-