Package com.amazonaws.services.ec2.model
Class CancelBundleTaskResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.CancelBundleTaskResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CancelBundleTaskResult extends Object implements Serializable, Cloneable
Contains the output of CancelBundleTask.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CancelBundleTaskResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CancelBundleTaskResult
clone()
boolean
equals(Object obj)
BundleTask
getBundleTask()
Information about the bundle task.int
hashCode()
void
setBundleTask(BundleTask bundleTask)
Information about the bundle task.String
toString()
Returns a string representation of this object; useful for testing and debugging.CancelBundleTaskResult
withBundleTask(BundleTask bundleTask)
Information about the bundle task.
-
-
-
Method Detail
-
setBundleTask
public void setBundleTask(BundleTask bundleTask)
Information about the bundle task.
- Parameters:
bundleTask
- Information about the bundle task.
-
getBundleTask
public BundleTask getBundleTask()
Information about the bundle task.
- Returns:
- Information about the bundle task.
-
withBundleTask
public CancelBundleTaskResult withBundleTask(BundleTask bundleTask)
Information about the bundle task.
- Parameters:
bundleTask
- Information about the bundle task.- 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 CancelBundleTaskResult clone()
-
-