Package com.amazonaws.services.ecr.model
Class PutImageResult
- java.lang.Object
-
- com.amazonaws.services.ecr.model.PutImageResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class PutImageResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PutImageResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PutImageResult
clone()
boolean
equals(Object obj)
Image
getImage()
Details of the image uploaded.int
hashCode()
void
setImage(Image image)
Details of the image uploaded.String
toString()
Returns a string representation of this object; useful for testing and debugging.PutImageResult
withImage(Image image)
Details of the image uploaded.
-
-
-
Method Detail
-
setImage
public void setImage(Image image)
Details of the image uploaded.
- Parameters:
image
- Details of the image uploaded.
-
getImage
public Image getImage()
Details of the image uploaded.
- Returns:
- Details of the image uploaded.
-
withImage
public PutImageResult withImage(Image image)
Details of the image uploaded.
- Parameters:
image
- Details of the image uploaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public PutImageResult clone()
-
-