public class ListCACertificatesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The output from the ListCACertificates operation.
Modifier and Type | Field and Description |
---|---|
private java.util.List<CACertificate> |
certificates
The CA certificates registered in your AWS account.
|
private java.lang.String |
nextMarker
The current position within the list of CA certificates.
|
Constructor and Description |
---|
ListCACertificatesResult() |
Modifier and Type | Method and Description |
---|---|
ListCACertificatesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<CACertificate> |
getCertificates()
The CA certificates registered in your AWS account.
|
java.lang.String |
getNextMarker()
The current position within the list of CA certificates.
|
int |
hashCode() |
void |
setCertificates(java.util.Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.
|
void |
setNextMarker(java.lang.String nextMarker)
The current position within the list of CA certificates.
|
java.lang.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(java.util.Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.
|
ListCACertificatesResult |
withNextMarker(java.lang.String nextMarker)
The current position within the list of CA certificates.
|
private java.util.List<CACertificate> certificates
The CA certificates registered in your AWS account.
private java.lang.String nextMarker
The current position within the list of CA certificates.
public java.util.List<CACertificate> getCertificates()
The CA certificates registered in your AWS account.
public void setCertificates(java.util.Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.
certificates
- The CA certificates registered in your AWS account.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)
or
withCertificates(java.util.Collection)
if you want to override
the existing values.
certificates
- The CA certificates registered in your AWS account.public ListCACertificatesResult withCertificates(java.util.Collection<CACertificate> certificates)
The CA certificates registered in your AWS account.
certificates
- The CA certificates registered in your AWS account.public void setNextMarker(java.lang.String nextMarker)
The current position within the list of CA certificates.
nextMarker
- The current position within the list of CA certificates.public java.lang.String getNextMarker()
The current position within the list of CA certificates.
public ListCACertificatesResult withNextMarker(java.lang.String nextMarker)
The current position within the list of CA certificates.
nextMarker
- The current position within the list of CA certificates.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListCACertificatesResult clone()
clone
in class java.lang.Object