Class ListCertificatesResult
- java.lang.Object
-
- com.amazonaws.services.certificatemanager.model.ListCertificatesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListCertificatesResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListCertificatesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListCertificatesResultclone()booleanequals(Object obj)List<CertificateSummary>getCertificateSummaryList()A list of the certificate ARNs.StringgetNextToken()If the list has been truncated, this value is present and should be used for theNextTokeninput parameter on your next call toListCertificates.inthashCode()voidsetCertificateSummaryList(Collection<CertificateSummary> certificateSummaryList)A list of the certificate ARNs.voidsetNextToken(String nextToken)If the list has been truncated, this value is present and should be used for theNextTokeninput parameter on your next call toListCertificates.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListCertificatesResultwithCertificateSummaryList(CertificateSummary... certificateSummaryList)A list of the certificate ARNs.ListCertificatesResultwithCertificateSummaryList(Collection<CertificateSummary> certificateSummaryList)A list of the certificate ARNs.ListCertificatesResultwithNextToken(String nextToken)If the list has been truncated, this value is present and should be used for theNextTokeninput parameter on your next call toListCertificates.
-
-
-
Method Detail
-
setNextToken
public void setNextToken(String nextToken)
If the list has been truncated, this value is present and should be used for the
NextTokeninput parameter on your next call toListCertificates.- Parameters:
nextToken- If the list has been truncated, this value is present and should be used for theNextTokeninput parameter on your next call toListCertificates.
-
getNextToken
public String getNextToken()
If the list has been truncated, this value is present and should be used for the
NextTokeninput parameter on your next call toListCertificates.- Returns:
- If the list has been truncated, this value is present and should
be used for the
NextTokeninput parameter on your next call toListCertificates.
-
withNextToken
public ListCertificatesResult withNextToken(String nextToken)
If the list has been truncated, this value is present and should be used for the
NextTokeninput parameter on your next call toListCertificates.- Parameters:
nextToken- If the list has been truncated, this value is present and should be used for theNextTokeninput parameter on your next call toListCertificates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getCertificateSummaryList
public List<CertificateSummary> getCertificateSummaryList()
A list of the certificate ARNs.
- Returns:
- A list of the certificate ARNs.
-
setCertificateSummaryList
public void setCertificateSummaryList(Collection<CertificateSummary> certificateSummaryList)
A list of the certificate ARNs.
- Parameters:
certificateSummaryList- A list of the certificate ARNs.
-
withCertificateSummaryList
public ListCertificatesResult withCertificateSummaryList(CertificateSummary... certificateSummaryList)
A list of the certificate ARNs.
NOTE: This method appends the values to the existing list (if any). Use
setCertificateSummaryList(java.util.Collection)orwithCertificateSummaryList(java.util.Collection)if you want to override the existing values.- Parameters:
certificateSummaryList- A list of the certificate ARNs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withCertificateSummaryList
public ListCertificatesResult withCertificateSummaryList(Collection<CertificateSummary> certificateSummaryList)
A list of the certificate ARNs.
- Parameters:
certificateSummaryList- A list of the certificate ARNs.- 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 ListCertificatesResult clone()
-
-