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 ExportTaskExecutionInfo
clone()
boolean
equals(Object obj)
Long
getCompletionTime()
A point in time when the export task got completed.Long
getCreationTime()
A point in time when the export task got created.int
hashCode()
void
setCompletionTime(Long completionTime)
A point in time when the export task got completed.void
setCreationTime(Long creationTime)
A point in time when the export task got created.String
toString()
Returns a string representation of this object; useful for testing and debugging.ExportTaskExecutionInfo
withCompletionTime(Long completionTime)
A point in time when the export task got completed.ExportTaskExecutionInfo
withCreationTime(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ExportTaskExecutionInfo clone()
-
-