public class ListTapesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
A JSON object containing the following fields:
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
marker
A string that indicates the position at which to begin returning the next
list of tapes.
|
private SdkInternalList<TapeInfo> |
tapeInfos |
Constructor and Description |
---|
ListTapesResult() |
Modifier and Type | Method and Description |
---|---|
ListTapesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getMarker()
A string that indicates the position at which to begin returning the next
list of tapes.
|
java.util.List<TapeInfo> |
getTapeInfos() |
int |
hashCode() |
void |
setMarker(java.lang.String marker)
A string that indicates the position at which to begin returning the next
list of tapes.
|
void |
setTapeInfos(java.util.Collection<TapeInfo> tapeInfos) |
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListTapesResult |
withMarker(java.lang.String marker)
A string that indicates the position at which to begin returning the next
list of tapes.
|
ListTapesResult |
withTapeInfos(java.util.Collection<TapeInfo> tapeInfos) |
ListTapesResult |
withTapeInfos(TapeInfo... tapeInfos)
NOTE: This method appends the values to the existing list (if
any).
|
private SdkInternalList<TapeInfo> tapeInfos
private java.lang.String marker
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
public java.util.List<TapeInfo> getTapeInfos()
public void setTapeInfos(java.util.Collection<TapeInfo> tapeInfos)
tapeInfos
- public ListTapesResult withTapeInfos(TapeInfo... tapeInfos)
NOTE: This method appends the values to the existing list (if
any). Use setTapeInfos(java.util.Collection)
or
withTapeInfos(java.util.Collection)
if you want to override the
existing values.
tapeInfos
- public ListTapesResult withTapeInfos(java.util.Collection<TapeInfo> tapeInfos)
tapeInfos
- public void setMarker(java.lang.String marker)
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
marker
- A string that indicates the position at which to begin returning
the next list of tapes. Use the marker in your next request to
continue pagination of tapes. If there are no more tapes to list,
this element does not appear in the response body.public java.lang.String getMarker()
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
public ListTapesResult withMarker(java.lang.String marker)
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
marker
- A string that indicates the position at which to begin returning
the next list of tapes. Use the marker in your next request to
continue pagination of tapes. If there are no more tapes to list,
this element does not appear in the response body.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListTapesResult clone()
clone
in class java.lang.Object