public class UploadListElement
extends java.lang.Object
implements java.io.Serializable
A list of in-progress multipart uploads for a vault.
| コンストラクタと説明 |
|---|
UploadListElement()
Default constructor for a new UploadListElement object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getArchiveDescription()
The description of the archive that was specified in the Initiate
Multipart Upload request.
|
java.lang.String |
getCreationDate()
The UTC time at which the multipart upload was initiated.
|
java.lang.String |
getMultipartUploadId()
The ID of a multipart upload.
|
java.lang.Long |
getPartSizeInBytes()
The part size, in bytes, specified in the Initiate Multipart Upload
request.
|
java.lang.String |
getVaultARN()
The Amazon Resource Name (ARN) of the vault that contains the archive.
|
int |
hashCode() |
void |
setArchiveDescription(java.lang.String archiveDescription)
The description of the archive that was specified in the Initiate
Multipart Upload request.
|
void |
setCreationDate(java.lang.String creationDate)
The UTC time at which the multipart upload was initiated.
|
void |
setMultipartUploadId(java.lang.String multipartUploadId)
The ID of a multipart upload.
|
void |
setPartSizeInBytes(java.lang.Long partSizeInBytes)
The part size, in bytes, specified in the Initiate Multipart Upload
request.
|
void |
setVaultARN(java.lang.String vaultARN)
The Amazon Resource Name (ARN) of the vault that contains the archive.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
UploadListElement |
withArchiveDescription(java.lang.String archiveDescription)
The description of the archive that was specified in the Initiate
Multipart Upload request.
|
UploadListElement |
withCreationDate(java.lang.String creationDate)
The UTC time at which the multipart upload was initiated.
|
UploadListElement |
withMultipartUploadId(java.lang.String multipartUploadId)
The ID of a multipart upload.
|
UploadListElement |
withPartSizeInBytes(java.lang.Long partSizeInBytes)
The part size, in bytes, specified in the Initiate Multipart Upload
request.
|
UploadListElement |
withVaultARN(java.lang.String vaultARN)
The Amazon Resource Name (ARN) of the vault that contains the archive.
|
public UploadListElement()
public java.lang.String getMultipartUploadId()
public void setMultipartUploadId(java.lang.String multipartUploadId)
multipartUploadId - The ID of a multipart upload.public UploadListElement withMultipartUploadId(java.lang.String multipartUploadId)
Returns a reference to this object so that method calls can be chained together.
multipartUploadId - The ID of a multipart upload.public java.lang.String getVaultARN()
public void setVaultARN(java.lang.String vaultARN)
vaultARN - The Amazon Resource Name (ARN) of the vault that contains the archive.public UploadListElement withVaultARN(java.lang.String vaultARN)
Returns a reference to this object so that method calls can be chained together.
vaultARN - The Amazon Resource Name (ARN) of the vault that contains the archive.public java.lang.String getArchiveDescription()
public void setArchiveDescription(java.lang.String archiveDescription)
archiveDescription - The description of the archive that was specified in the Initiate
Multipart Upload request.public UploadListElement withArchiveDescription(java.lang.String archiveDescription)
Returns a reference to this object so that method calls can be chained together.
archiveDescription - The description of the archive that was specified in the Initiate
Multipart Upload request.public java.lang.Long getPartSizeInBytes()
public void setPartSizeInBytes(java.lang.Long partSizeInBytes)
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.public UploadListElement withPartSizeInBytes(java.lang.Long partSizeInBytes)
Returns a reference to this object so that method calls can be chained together.
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.public java.lang.String getCreationDate()
public void setCreationDate(java.lang.String creationDate)
creationDate - The UTC time at which the multipart upload was initiated.public UploadListElement withCreationDate(java.lang.String creationDate)
Returns a reference to this object so that method calls can be chained together.
creationDate - The UTC time at which the multipart upload was initiated.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object