Class DownloadDBLogFilePortionResult
- java.lang.Object
-
- com.amazonaws.services.rds.model.DownloadDBLogFilePortionResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DownloadDBLogFilePortionResult extends Object implements Serializable, Cloneable
This data type is used as a response element to DownloadDBLogFilePortion.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DownloadDBLogFilePortionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DownloadDBLogFilePortionResult
clone()
boolean
equals(Object obj)
Boolean
getAdditionalDataPending()
Boolean value that if true, indicates there is more data to be downloaded.String
getLogFileData()
Entries from the specified log file.String
getMarker()
A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.int
hashCode()
Boolean
isAdditionalDataPending()
Boolean value that if true, indicates there is more data to be downloaded.void
setAdditionalDataPending(Boolean additionalDataPending)
Boolean value that if true, indicates there is more data to be downloaded.void
setLogFileData(String logFileData)
Entries from the specified log file.void
setMarker(String marker)
A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.String
toString()
Returns a string representation of this object; useful for testing and debugging.DownloadDBLogFilePortionResult
withAdditionalDataPending(Boolean additionalDataPending)
Boolean value that if true, indicates there is more data to be downloaded.DownloadDBLogFilePortionResult
withLogFileData(String logFileData)
Entries from the specified log file.DownloadDBLogFilePortionResult
withMarker(String marker)
A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.
-
-
-
Method Detail
-
setLogFileData
public void setLogFileData(String logFileData)
Entries from the specified log file.
- Parameters:
logFileData
- Entries from the specified log file.
-
getLogFileData
public String getLogFileData()
Entries from the specified log file.
- Returns:
- Entries from the specified log file.
-
withLogFileData
public DownloadDBLogFilePortionResult withLogFileData(String logFileData)
Entries from the specified log file.
- Parameters:
logFileData
- Entries from the specified log file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setMarker
public void setMarker(String marker)
A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.
- Parameters:
marker
- A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.
-
getMarker
public String getMarker()
A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.
- Returns:
- A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.
-
withMarker
public DownloadDBLogFilePortionResult withMarker(String marker)
A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.
- Parameters:
marker
- A pagination token that can be used in a subsequent DownloadDBLogFilePortion request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setAdditionalDataPending
public void setAdditionalDataPending(Boolean additionalDataPending)
Boolean value that if true, indicates there is more data to be downloaded.
- Parameters:
additionalDataPending
- Boolean value that if true, indicates there is more data to be downloaded.
-
getAdditionalDataPending
public Boolean getAdditionalDataPending()
Boolean value that if true, indicates there is more data to be downloaded.
- Returns:
- Boolean value that if true, indicates there is more data to be downloaded.
-
withAdditionalDataPending
public DownloadDBLogFilePortionResult withAdditionalDataPending(Boolean additionalDataPending)
Boolean value that if true, indicates there is more data to be downloaded.
- Parameters:
additionalDataPending
- Boolean value that if true, indicates there is more data to be downloaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isAdditionalDataPending
public Boolean isAdditionalDataPending()
Boolean value that if true, indicates there is more data to be downloaded.
- Returns:
- Boolean value that if true, indicates there is more data to be downloaded.
-
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 DownloadDBLogFilePortionResult clone()
-
-