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 GetClientCertificatesResult
clone()
boolean
equals(Object obj)
List<ClientCertificate>
getItems()
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.String
getPosition()
int
hashCode()
void
setItems(Collection<ClientCertificate> items)
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.void
setPosition(String position)
String
toString()
Returns a string representation of this object; useful for testing and debugging.GetClientCertificatesResult
withItems(ClientCertificate... items)
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.GetClientCertificatesResult
withItems(Collection<ClientCertificate> items)
The current page of any ClientCertificate resources in the collection of ClientCertificate resources.GetClientCertificatesResult
withPosition(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetClientCertificatesResult clone()
-
-