Class ExportTaskExecutionInfo
- java.lang.Object
-
- com.amazonaws.services.logs.model.ExportTaskExecutionInfo
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ExportTaskExecutionInfo extends Object implements Serializable, Cloneable
Represents the status of an export task.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExportTaskExecutionInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExportTaskExecutionInfoclone()booleanequals(Object obj)LonggetCompletionTime()A point in time when the export task got completed.LonggetCreationTime()A point in time when the export task got created.inthashCode()voidsetCompletionTime(Long completionTime)A point in time when the export task got completed.voidsetCreationTime(Long creationTime)A point in time when the export task got created.StringtoString()Returns a string representation of this object; useful for testing and debugging.ExportTaskExecutionInfowithCompletionTime(Long completionTime)A point in time when the export task got completed.ExportTaskExecutionInfowithCreationTime(Long creationTime)A point in time when the export task got created.
-
-
-
Method Detail
-
setCreationTime
public void setCreationTime(Long creationTime)
A point in time when the export task got created.
- Parameters:
creationTime- A point in time when the export task got created.
-
getCreationTime
public Long getCreationTime()
A point in time when the export task got created.
- Returns:
- A point in time when the export task got created.
-
withCreationTime
public ExportTaskExecutionInfo withCreationTime(Long creationTime)
A point in time when the export task got created.
- Parameters:
creationTime- A point in time when the export task got created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCompletionTime
public void setCompletionTime(Long completionTime)
A point in time when the export task got completed.
- Parameters:
completionTime- A point in time when the export task got completed.
-
getCompletionTime
public Long getCompletionTime()
A point in time when the export task got completed.
- Returns:
- A point in time when the export task got completed.
-
withCompletionTime
public ExportTaskExecutionInfo withCompletionTime(Long completionTime)
A point in time when the export task got completed.
- Parameters:
completionTime- A point in time when the export task got completed.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ExportTaskExecutionInfo clone()
-
-