Interface UploadListElement.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UploadListElement.Builder,UploadListElement>,SdkBuilder<UploadListElement.Builder,UploadListElement>,SdkPojo
- Enclosing class:
- UploadListElement
public static interface UploadListElement.Builder extends SdkPojo, CopyableBuilder<UploadListElement.Builder,UploadListElement>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UploadListElement.BuilderarchiveDescription(String archiveDescription)The description of the archive that was specified in the Initiate Multipart Upload request.UploadListElement.BuildercreationDate(String creationDate)The UTC time at which the multipart upload was initiated.UploadListElement.BuildermultipartUploadId(String multipartUploadId)The ID of a multipart upload.UploadListElement.BuilderpartSizeInBytes(Long partSizeInBytes)The part size, in bytes, specified in the Initiate Multipart Upload request.UploadListElement.BuildervaultARN(String vaultARN)The Amazon Resource Name (ARN) of the vault that contains the archive.-
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
-
multipartUploadId
UploadListElement.Builder multipartUploadId(String multipartUploadId)
The ID of a multipart upload.
- Parameters:
multipartUploadId- The ID of a multipart upload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vaultARN
UploadListElement.Builder vaultARN(String vaultARN)
The Amazon Resource Name (ARN) of the vault that contains the archive.
- Parameters:
vaultARN- The Amazon Resource Name (ARN) of the vault that contains the archive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
archiveDescription
UploadListElement.Builder archiveDescription(String archiveDescription)
The description of the archive that was specified in the Initiate Multipart Upload request.
- Parameters:
archiveDescription- The description of the archive that was specified in the Initiate Multipart Upload request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partSizeInBytes
UploadListElement.Builder partSizeInBytes(Long partSizeInBytes)
The part size, in bytes, specified in the Initiate Multipart Upload request. This is the size of all the parts in the upload except the last part, which may be smaller than this size.
- Parameters:
partSizeInBytes- The part size, in bytes, specified in the Initiate Multipart Upload request. This is the size of all the parts in the upload except the last part, which may be smaller than this size.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
UploadListElement.Builder creationDate(String creationDate)
The UTC time at which the multipart upload was initiated.
- Parameters:
creationDate- The UTC time at which the multipart upload was initiated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-