Package com.amazonaws.services.iot.model
Class DescribeCertificateResult
- java.lang.Object
-
- com.amazonaws.services.iot.model.DescribeCertificateResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeCertificateResult extends Object implements Serializable, Cloneable
The output of the DescribeCertificate operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeCertificateResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeCertificateResult
clone()
boolean
equals(Object obj)
CertificateDescription
getCertificateDescription()
The description of the certificate.int
hashCode()
void
setCertificateDescription(CertificateDescription certificateDescription)
The description of the certificate.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeCertificateResult
withCertificateDescription(CertificateDescription certificateDescription)
The description of the certificate.
-
-
-
Method Detail
-
setCertificateDescription
public void setCertificateDescription(CertificateDescription certificateDescription)
The description of the certificate.
- Parameters:
certificateDescription
- The description of the certificate.
-
getCertificateDescription
public CertificateDescription getCertificateDescription()
The description of the certificate.
- Returns:
- The description of the certificate.
-
withCertificateDescription
public DescribeCertificateResult withCertificateDescription(CertificateDescription certificateDescription)
The description of the certificate.
- Parameters:
certificateDescription
- The description of the certificate.- 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 DescribeCertificateResult clone()
-
-