Interface S3FileLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3FileLocation.Builder,S3FileLocation>,SdkBuilder<S3FileLocation.Builder,S3FileLocation>,SdkPojo
- Enclosing class:
- S3FileLocation
public static interface S3FileLocation.Builder extends SdkPojo, CopyableBuilder<S3FileLocation.Builder,S3FileLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3FileLocation.Builderbucket(String bucket)Specifies the S3 bucket that contains the file being used.S3FileLocation.Builderetag(String etag)The entity tag is a hash of the object.S3FileLocation.Builderkey(String key)The name assigned to the file when it was created in Amazon S3.S3FileLocation.BuilderversionId(String versionId)Specifies the file version.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
bucket
S3FileLocation.Builder bucket(String bucket)
Specifies the S3 bucket that contains the file being used.
- Parameters:
bucket- Specifies the S3 bucket that contains the file being used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
S3FileLocation.Builder key(String key)
The name assigned to the file when it was created in Amazon S3. You use the object key to retrieve the object.
- Parameters:
key- The name assigned to the file when it was created in Amazon S3. You use the object key to retrieve the object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionId
S3FileLocation.Builder versionId(String versionId)
Specifies the file version.
- Parameters:
versionId- Specifies the file version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
etag
S3FileLocation.Builder etag(String etag)
The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its metadata.
- Parameters:
etag- The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-