Interface ObjectPart.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ObjectPart.Builder,ObjectPart>,SdkBuilder<ObjectPart.Builder,ObjectPart>,SdkPojo
- Enclosing class:
- ObjectPart
public static interface ObjectPart.Builder extends SdkPojo, CopyableBuilder<ObjectPart.Builder,ObjectPart>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectPart.BuilderchecksumCRC32(String checksumCRC32)The Base64 encoded, 32-bitCRC-32checksum of the part.ObjectPart.BuilderchecksumCRC32C(String checksumCRC32C)The Base64 encoded, 32-bitCRC-32Cchecksum of the part.ObjectPart.BuilderchecksumCRC64NVME(String checksumCRC64NVME)The Base64 encoded, 64-bitCRC-64NVMEchecksum of the part.ObjectPart.BuilderchecksumSHA1(String checksumSHA1)The Base64 encoded, 160-bitSHA-1checksum of the part.ObjectPart.BuilderchecksumSHA256(String checksumSHA256)The Base64 encoded, 256-bitSHA-256checksum of the part.ObjectPart.BuilderpartNumber(Integer partNumber)The part number identifying the part.ObjectPart.Buildersize(Long size)The size of the uploaded part in bytes.-
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
-
partNumber
ObjectPart.Builder partNumber(Integer partNumber)
The part number identifying the part. This value is a positive integer between 1 and 10,000.
- Parameters:
partNumber- The part number identifying the part. This value is a positive integer between 1 and 10,000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
size
ObjectPart.Builder size(Long size)
The size of the uploaded part in bytes.
- Parameters:
size- The size of the uploaded part in bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checksumCRC32
ObjectPart.Builder checksumCRC32(String checksumCRC32)
The Base64 encoded, 32-bit
CRC-32checksum of the part. This checksum is present if the multipart upload request was created with theCRC-32checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Parameters:
checksumCRC32- The Base64 encoded, 32-bitCRC-32checksum of the part. This checksum is present if the multipart upload request was created with theCRC-32checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checksumCRC32C
ObjectPart.Builder checksumCRC32C(String checksumCRC32C)
The Base64 encoded, 32-bit
CRC-32Cchecksum of the part. This checksum is present if the multipart upload request was created with theCRC-32Cchecksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Parameters:
checksumCRC32C- The Base64 encoded, 32-bitCRC-32Cchecksum of the part. This checksum is present if the multipart upload request was created with theCRC-32Cchecksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checksumCRC64NVME
ObjectPart.Builder checksumCRC64NVME(String checksumCRC64NVME)
The Base64 encoded, 64-bit
CRC-64NVMEchecksum of the part. This checksum is present if the multipart upload request was created with theCRC-64NVMEchecksum algorithm, or if the object was uploaded without a checksum (and Amazon S3 added the default checksum,CRC-64NVME, to the uploaded object). For more information, see Checking object integrity in the Amazon S3 User Guide.- Parameters:
checksumCRC64NVME- The Base64 encoded, 64-bitCRC-64NVMEchecksum of the part. This checksum is present if the multipart upload request was created with theCRC-64NVMEchecksum algorithm, or if the object was uploaded without a checksum (and Amazon S3 added the default checksum,CRC-64NVME, to the uploaded object). For more information, see Checking object integrity in the Amazon S3 User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checksumSHA1
ObjectPart.Builder checksumSHA1(String checksumSHA1)
The Base64 encoded, 160-bit
SHA-1checksum of the part. This checksum is present if the multipart upload request was created with theSHA-1checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Parameters:
checksumSHA1- The Base64 encoded, 160-bitSHA-1checksum of the part. This checksum is present if the multipart upload request was created with theSHA-1checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checksumSHA256
ObjectPart.Builder checksumSHA256(String checksumSHA256)
The Base64 encoded, 256-bit
SHA-256checksum of the part. This checksum is present if the multipart upload request was created with theSHA-256checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Parameters:
checksumSHA256- The Base64 encoded, 256-bitSHA-256checksum of the part. This checksum is present if the multipart upload request was created with theSHA-256checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-