Class SearchedLogStream
- java.lang.Object
-
- com.amazonaws.services.logs.model.SearchedLogStream
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class SearchedLogStream extends Object implements Serializable, Cloneable
An object indicating the search status of a log stream in a
FilterLogEvents
request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SearchedLogStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SearchedLogStream
clone()
boolean
equals(Object obj)
String
getLogStreamName()
The name of the log stream.Boolean
getSearchedCompletely()
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.int
hashCode()
Boolean
isSearchedCompletely()
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.void
setLogStreamName(String logStreamName)
The name of the log stream.void
setSearchedCompletely(Boolean searchedCompletely)
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.String
toString()
Returns a string representation of this object; useful for testing and debugging.SearchedLogStream
withLogStreamName(String logStreamName)
The name of the log stream.SearchedLogStream
withSearchedCompletely(Boolean searchedCompletely)
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
-
-
-
Method Detail
-
setLogStreamName
public void setLogStreamName(String logStreamName)
The name of the log stream.
- Parameters:
logStreamName
- The name of the log stream.
-
getLogStreamName
public String getLogStreamName()
The name of the log stream.
- Returns:
- The name of the log stream.
-
withLogStreamName
public SearchedLogStream withLogStreamName(String logStreamName)
The name of the log stream.
- Parameters:
logStreamName
- The name of the log stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSearchedCompletely
public void setSearchedCompletely(Boolean searchedCompletely)
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
- Parameters:
searchedCompletely
- Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
-
getSearchedCompletely
public Boolean getSearchedCompletely()
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
- Returns:
- Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
-
withSearchedCompletely
public SearchedLogStream withSearchedCompletely(Boolean searchedCompletely)
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
- Parameters:
searchedCompletely
- Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isSearchedCompletely
public Boolean isSearchedCompletely()
Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
- Returns:
- Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.
-
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 SearchedLogStream clone()
-
-