Package com.amazonaws.services.rds.model
Class DescribeDBLogFilesDetails
- java.lang.Object
-
- com.amazonaws.services.rds.model.DescribeDBLogFilesDetails
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeDBLogFilesDetails extends Object implements Serializable, Cloneable
This data type is used as a response element to DescribeDBLogFiles.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeDBLogFilesDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeDBLogFilesDetails
clone()
boolean
equals(Object obj)
Long
getLastWritten()
A POSIX timestamp when the last log entry was written.String
getLogFileName()
The name of the log file for the specified DB instance.Long
getSize()
The size, in bytes, of the log file for the specified DB instance.int
hashCode()
void
setLastWritten(Long lastWritten)
A POSIX timestamp when the last log entry was written.void
setLogFileName(String logFileName)
The name of the log file for the specified DB instance.void
setSize(Long size)
The size, in bytes, of the log file for the specified DB instance.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeDBLogFilesDetails
withLastWritten(Long lastWritten)
A POSIX timestamp when the last log entry was written.DescribeDBLogFilesDetails
withLogFileName(String logFileName)
The name of the log file for the specified DB instance.DescribeDBLogFilesDetails
withSize(Long size)
The size, in bytes, of the log file for the specified DB instance.
-
-
-
Method Detail
-
setLogFileName
public void setLogFileName(String logFileName)
The name of the log file for the specified DB instance.
- Parameters:
logFileName
- The name of the log file for the specified DB instance.
-
getLogFileName
public String getLogFileName()
The name of the log file for the specified DB instance.
- Returns:
- The name of the log file for the specified DB instance.
-
withLogFileName
public DescribeDBLogFilesDetails withLogFileName(String logFileName)
The name of the log file for the specified DB instance.
- Parameters:
logFileName
- The name of the log file for the specified DB instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLastWritten
public void setLastWritten(Long lastWritten)
A POSIX timestamp when the last log entry was written.
- Parameters:
lastWritten
- A POSIX timestamp when the last log entry was written.
-
getLastWritten
public Long getLastWritten()
A POSIX timestamp when the last log entry was written.
- Returns:
- A POSIX timestamp when the last log entry was written.
-
withLastWritten
public DescribeDBLogFilesDetails withLastWritten(Long lastWritten)
A POSIX timestamp when the last log entry was written.
- Parameters:
lastWritten
- A POSIX timestamp when the last log entry was written.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSize
public void setSize(Long size)
The size, in bytes, of the log file for the specified DB instance.
- Parameters:
size
- The size, in bytes, of the log file for the specified DB instance.
-
getSize
public Long getSize()
The size, in bytes, of the log file for the specified DB instance.
- Returns:
- The size, in bytes, of the log file for the specified DB instance.
-
withSize
public DescribeDBLogFilesDetails withSize(Long size)
The size, in bytes, of the log file for the specified DB instance.
- Parameters:
size
- The size, in bytes, of the log file for the specified DB instance.- 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 DescribeDBLogFilesDetails clone()
-
-