Class GetClientCertificatesResult
- java.lang.Object
-
- com.amazonaws.services.apigateway.model.GetClientCertificatesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GetClientCertificatesResult extends Object implements Serializable, Cloneable
Represents a collection of ClientCertificate resources.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetClientCertificatesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetClientCertificatesResultclone()booleanequals(Object obj)List<ClientCertificate>getItems()The current page of any ClientCertificate resources in the collection of ClientCertificate resources.StringgetPosition()inthashCode()voidsetItems(Collection<ClientCertificate> items)The current page of any ClientCertificate resources in the collection of ClientCertificate resources.voidsetPosition(String position)StringtoString()Returns a string representation of this object; useful for testing and debugging.GetClientCertificatesResultwithItems(ClientCertificate... items)The current page of any ClientCertificate resources in the collection of ClientCertificate resources.GetClientCertificatesResultwithItems(Collection<ClientCertificate> items)The current page of any ClientCertificate resources in the collection of ClientCertificate resources.GetClientCertificatesResultwithPosition(String position)
-
-
-
Method Detail
-
setPosition
public void setPosition(String position)
- Parameters:
position-
-
getPosition
public String getPosition()
- Returns:
-
withPosition
public GetClientCertificatesResult withPosition(String position)
- Parameters:
position-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getItems
public List<ClientCertificate> getItems()
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.
- Returns:
- The current page of any ClientCertificate resources in the collection of ClientCertificate resources.
-
setItems
public void setItems(Collection<ClientCertificate> items)
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.
- Parameters:
items- The current page of any ClientCertificate resources in the collection of ClientCertificate resources.
-
withItems
public GetClientCertificatesResult withItems(ClientCertificate... items)
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.
NOTE: This method appends the values to the existing list (if any). Use
setItems(java.util.Collection)orwithItems(java.util.Collection)if you want to override the existing values.- Parameters:
items- The current page of any ClientCertificate resources in the collection of ClientCertificate resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withItems
public GetClientCertificatesResult withItems(Collection<ClientCertificate> items)
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.
- Parameters:
items- The current page of any ClientCertificate resources in the collection of ClientCertificate resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetClientCertificatesResult clone()
-
-