public class ListVaultsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the Amazon Glacier response to your request.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
marker
The vault ARN at which to continue pagination of the results.
|
private java.util.List<DescribeVaultOutput> |
vaultList
List of vaults.
|
Constructor and Description |
---|
ListVaultsResult() |
Modifier and Type | Method and Description |
---|---|
ListVaultsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getMarker()
The vault ARN at which to continue pagination of the results.
|
java.util.List<DescribeVaultOutput> |
getVaultList()
List of vaults.
|
int |
hashCode() |
void |
setMarker(java.lang.String marker)
The vault ARN at which to continue pagination of the results.
|
void |
setVaultList(java.util.Collection<DescribeVaultOutput> vaultList)
List of vaults.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListVaultsResult |
withMarker(java.lang.String marker)
The vault ARN at which to continue pagination of the results.
|
ListVaultsResult |
withVaultList(java.util.Collection<DescribeVaultOutput> vaultList)
List of vaults.
|
ListVaultsResult |
withVaultList(DescribeVaultOutput... vaultList)
List of vaults.
|
private java.util.List<DescribeVaultOutput> vaultList
List of vaults.
private java.lang.String marker
The vault ARN at which to continue pagination of the results. You use the marker in another List Vaults request to obtain more vaults in the list.
public java.util.List<DescribeVaultOutput> getVaultList()
List of vaults.
public void setVaultList(java.util.Collection<DescribeVaultOutput> vaultList)
List of vaults.
vaultList
- List of vaults.public ListVaultsResult withVaultList(DescribeVaultOutput... vaultList)
List of vaults.
NOTE: This method appends the values to the existing list (if
any). Use setVaultList(java.util.Collection)
or
withVaultList(java.util.Collection)
if you want to override the
existing values.
vaultList
- List of vaults.public ListVaultsResult withVaultList(java.util.Collection<DescribeVaultOutput> vaultList)
List of vaults.
vaultList
- List of vaults.public void setMarker(java.lang.String marker)
The vault ARN at which to continue pagination of the results. You use the marker in another List Vaults request to obtain more vaults in the list.
marker
- The vault ARN at which to continue pagination of the results. You
use the marker in another List Vaults request to obtain more
vaults in the list.public java.lang.String getMarker()
The vault ARN at which to continue pagination of the results. You use the marker in another List Vaults request to obtain more vaults in the list.
public ListVaultsResult withMarker(java.lang.String marker)
The vault ARN at which to continue pagination of the results. You use the marker in another List Vaults request to obtain more vaults in the list.
marker
- The vault ARN at which to continue pagination of the results. You
use the marker in another List Vaults request to obtain more
vaults in the list.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 ListVaultsResult clone()
clone
in class java.lang.Object