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 String
getCode()
Returns the status code for the failed delete.String
getKey()
Returns the key of the object that couldn't be deleted.String
getMessage()
Returns a description of the failure.String
getVersionId()
Returns the versionId of the object that couldn't be deleted.void
setCode(String code)
void
setKey(String key)
void
setMessage(String message)
void
setVersionId(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)
-
-