Package com.amazonaws.services.iot.model
Class ListCACertificatesResult
- java.lang.Object
-
- com.amazonaws.services.iot.model.ListCACertificatesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListCACertificatesResult extends Object implements Serializable, Cloneable
The output from the ListCACertificates operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListCACertificatesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListCACertificatesResult
clone()
boolean
equals(Object obj)
List<CACertificate>
getCertificates()
The CA certificates registered in your AWS account.String
getNextMarker()
The current position within the list of CA certificates.int
hashCode()
void
setCertificates(Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.void
setNextMarker(String nextMarker)
The current position within the list of CA certificates.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListCACertificatesResult
withCertificates(CACertificate... certificates)
The CA certificates registered in your AWS account.ListCACertificatesResult
withCertificates(Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.ListCACertificatesResult
withNextMarker(String nextMarker)
The current position within the list of CA certificates.
-
-
-
Method Detail
-
getCertificates
public List<CACertificate> getCertificates()
The CA certificates registered in your AWS account.
- Returns:
- The CA certificates registered in your AWS account.
-
setCertificates
public void setCertificates(Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.
- Parameters:
certificates
- The CA certificates registered in your AWS account.
-
withCertificates
public ListCACertificatesResult withCertificates(CACertificate... certificates)
The CA certificates registered in your AWS account.
NOTE: This method appends the values to the existing list (if any). Use
setCertificates(java.util.Collection)
orwithCertificates(java.util.Collection)
if you want to override the existing values.- Parameters:
certificates
- The CA certificates registered in your AWS account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withCertificates
public ListCACertificatesResult withCertificates(Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.
- Parameters:
certificates
- The CA certificates registered in your AWS account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextMarker
public void setNextMarker(String nextMarker)
The current position within the list of CA certificates.
- Parameters:
nextMarker
- The current position within the list of CA certificates.
-
getNextMarker
public String getNextMarker()
The current position within the list of CA certificates.
- Returns:
- The current position within the list of CA certificates.
-
withNextMarker
public ListCACertificatesResult withNextMarker(String nextMarker)
The current position within the list of CA certificates.
- Parameters:
nextMarker
- The current position within the list of CA certificates.- 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 ListCACertificatesResult clone()
-
-