Class ListKeysResult
- java.lang.Object
-
- com.amazonaws.services.kms.model.ListKeysResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListKeysResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListKeysResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListKeysResult
clone()
boolean
equals(Object obj)
List<KeyListEntry>
getKeys()
A list of keys.String
getNextMarker()
WhenTruncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.Boolean
getTruncated()
A flag that indicates whether there are more items in the list.int
hashCode()
Boolean
isTruncated()
A flag that indicates whether there are more items in the list.void
setKeys(Collection<KeyListEntry> keys)
A list of keys.void
setNextMarker(String nextMarker)
WhenTruncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.void
setTruncated(Boolean truncated)
A flag that indicates whether there are more items in the list.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListKeysResult
withKeys(KeyListEntry... keys)
A list of keys.ListKeysResult
withKeys(Collection<KeyListEntry> keys)
A list of keys.ListKeysResult
withNextMarker(String nextMarker)
WhenTruncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.ListKeysResult
withTruncated(Boolean truncated)
A flag that indicates whether there are more items in the list.
-
-
-
Method Detail
-
getKeys
public List<KeyListEntry> getKeys()
A list of keys.
- Returns:
- A list of keys.
-
setKeys
public void setKeys(Collection<KeyListEntry> keys)
A list of keys.
- Parameters:
keys
- A list of keys.
-
withKeys
public ListKeysResult withKeys(KeyListEntry... keys)
A list of keys.
NOTE: This method appends the values to the existing list (if any). Use
setKeys(java.util.Collection)
orwithKeys(java.util.Collection)
if you want to override the existing values.- Parameters:
keys
- A list of keys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withKeys
public ListKeysResult withKeys(Collection<KeyListEntry> keys)
A list of keys.
- Parameters:
keys
- A list of keys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextMarker
public void setNextMarker(String nextMarker)
When
Truncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.- Parameters:
nextMarker
- WhenTruncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.
-
getNextMarker
public String getNextMarker()
When
Truncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.- Returns:
- When
Truncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.
-
withNextMarker
public ListKeysResult withNextMarker(String nextMarker)
When
Truncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.- Parameters:
nextMarker
- WhenTruncated
is true, this value is present and contains the value to use for theMarker
parameter in a subsequent pagination request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setTruncated
public void setTruncated(Boolean truncated)
A flag that indicates whether there are more items in the list. If your results were truncated, you can use the
Marker
parameter to make a subsequent pagination request to retrieve more items in the list.- Parameters:
truncated
- A flag that indicates whether there are more items in the list. If your results were truncated, you can use theMarker
parameter to make a subsequent pagination request to retrieve more items in the list.
-
getTruncated
public Boolean getTruncated()
A flag that indicates whether there are more items in the list. If your results were truncated, you can use the
Marker
parameter to make a subsequent pagination request to retrieve more items in the list.- Returns:
- A flag that indicates whether there are more items in the list.
If your results were truncated, you can use the
Marker
parameter to make a subsequent pagination request to retrieve more items in the list.
-
withTruncated
public ListKeysResult withTruncated(Boolean truncated)
A flag that indicates whether there are more items in the list. If your results were truncated, you can use the
Marker
parameter to make a subsequent pagination request to retrieve more items in the list.- Parameters:
truncated
- A flag that indicates whether there are more items in the list. If your results were truncated, you can use theMarker
parameter to make a subsequent pagination request to retrieve more items in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isTruncated
public Boolean isTruncated()
A flag that indicates whether there are more items in the list. If your results were truncated, you can use the
Marker
parameter to make a subsequent pagination request to retrieve more items in the list.- Returns:
- A flag that indicates whether there are more items in the list.
If your results were truncated, you can use the
Marker
parameter to make a subsequent pagination request to retrieve more items in the list.
-
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 ListKeysResult clone()
-
-