Package com.amazonaws.services.ec2.model
Class DescribeImageAttributeResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.DescribeImageAttributeResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeImageAttributeResult extends Object implements Serializable, Cloneable
A simple result wrapper around the ImageAttribute object that was sent over the wire.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeImageAttributeResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeImageAttributeResult
clone()
boolean
equals(Object obj)
ImageAttribute
getImageAttribute()
Describes an image attribute.int
hashCode()
void
setImageAttribute(ImageAttribute imageAttribute)
Describes an image attribute.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeImageAttributeResult
withImageAttribute(ImageAttribute imageAttribute)
Describes an image attribute.
-
-
-
Method Detail
-
setImageAttribute
public void setImageAttribute(ImageAttribute imageAttribute)
Describes an image attribute.
- Parameters:
imageAttribute
- Describes an image attribute.
-
getImageAttribute
public ImageAttribute getImageAttribute()
Describes an image attribute.
- Returns:
- Describes an image attribute.
-
withImageAttribute
public DescribeImageAttributeResult withImageAttribute(ImageAttribute imageAttribute)
Describes an image attribute.
- Parameters:
imageAttribute
- Describes an image attribute.- 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 DescribeImageAttributeResult clone()
-
-