Package com.amazonaws.services.ec2.model
Class DescribeBundleTasksResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.DescribeBundleTasksResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeBundleTasksResult extends Object implements Serializable, Cloneable
Contains the output of DescribeBundleTasks.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeBundleTasksResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeBundleTasksResult
clone()
boolean
equals(Object obj)
List<BundleTask>
getBundleTasks()
Information about one or more bundle tasks.int
hashCode()
void
setBundleTasks(Collection<BundleTask> bundleTasks)
Information about one or more bundle tasks.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeBundleTasksResult
withBundleTasks(BundleTask... bundleTasks)
Information about one or more bundle tasks.DescribeBundleTasksResult
withBundleTasks(Collection<BundleTask> bundleTasks)
Information about one or more bundle tasks.
-
-
-
Method Detail
-
getBundleTasks
public List<BundleTask> getBundleTasks()
Information about one or more bundle tasks.
- Returns:
- Information about one or more bundle tasks.
-
setBundleTasks
public void setBundleTasks(Collection<BundleTask> bundleTasks)
Information about one or more bundle tasks.
- Parameters:
bundleTasks
- Information about one or more bundle tasks.
-
withBundleTasks
public DescribeBundleTasksResult withBundleTasks(BundleTask... bundleTasks)
Information about one or more bundle tasks.
NOTE: This method appends the values to the existing list (if any). Use
setBundleTasks(java.util.Collection)
orwithBundleTasks(java.util.Collection)
if you want to override the existing values.- Parameters:
bundleTasks
- Information about one or more bundle tasks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withBundleTasks
public DescribeBundleTasksResult withBundleTasks(Collection<BundleTask> bundleTasks)
Information about one or more bundle tasks.
- Parameters:
bundleTasks
- Information about one or more bundle tasks.- 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 DescribeBundleTasksResult clone()
-
-