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