Package com.amazonaws.services.s3.model
Class MultiObjectDeleteException.DeleteError
- java.lang.Object
-
- com.amazonaws.services.s3.model.MultiObjectDeleteException.DeleteError
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- MultiObjectDeleteException
public static class MultiObjectDeleteException.DeleteError extends Object implements Serializable
An error that occurred when deleting an object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteError()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()Returns the status code for the failed delete.StringgetKey()Returns the key of the object that couldn't be deleted.StringgetMessage()Returns a description of the failure.StringgetVersionId()Returns the versionId of the object that couldn't be deleted.voidsetCode(String code)voidsetKey(String key)voidsetMessage(String message)voidsetVersionId(String versionId)
-
-
-
Method Detail
-
getKey
public String getKey()
Returns the key of the object that couldn't be deleted.
-
setKey
public void setKey(String key)
-
getVersionId
public String getVersionId()
Returns the versionId of the object that couldn't be deleted.
-
setVersionId
public void setVersionId(String versionId)
-
getCode
public String getCode()
Returns the status code for the failed delete.
-
setCode
public void setCode(String code)
-
getMessage
public String getMessage()
Returns a description of the failure.
-
setMessage
public void setMessage(String message)
-
-