public class Certificate
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Information about a certificate.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
certificateArn
The ARN of the certificate.
|
private java.lang.String |
certificateId
The ID of the certificate.
|
private java.util.Date |
creationDate
The date and time the certificate was created.
|
private java.lang.String |
status
The status of the certificate.
|
Constructor and Description |
---|
Certificate() |
Modifier and Type | Method and Description |
---|---|
Certificate |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCertificateArn()
The ARN of the certificate.
|
java.lang.String |
getCertificateId()
The ID of the certificate.
|
java.util.Date |
getCreationDate()
The date and time the certificate was created.
|
java.lang.String |
getStatus()
The status of the certificate.
|
int |
hashCode() |
void |
setCertificateArn(java.lang.String certificateArn)
The ARN of the certificate.
|
void |
setCertificateId(java.lang.String certificateId)
The ID of the certificate.
|
void |
setCreationDate(java.util.Date creationDate)
The date and time the certificate was created.
|
void |
setStatus(CertificateStatus status)
The status of the certificate.
|
void |
setStatus(java.lang.String status)
The status of the certificate.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Certificate |
withCertificateArn(java.lang.String certificateArn)
The ARN of the certificate.
|
Certificate |
withCertificateId(java.lang.String certificateId)
The ID of the certificate.
|
Certificate |
withCreationDate(java.util.Date creationDate)
The date and time the certificate was created.
|
Certificate |
withStatus(CertificateStatus status)
The status of the certificate.
|
Certificate |
withStatus(java.lang.String status)
The status of the certificate.
|
private java.lang.String certificateArn
The ARN of the certificate.
private java.lang.String certificateId
The ID of the certificate.
private java.lang.String status
The status of the certificate.
private java.util.Date creationDate
The date and time the certificate was created.
public void setCertificateArn(java.lang.String certificateArn)
The ARN of the certificate.
certificateArn
- The ARN of the certificate.public java.lang.String getCertificateArn()
The ARN of the certificate.
public Certificate withCertificateArn(java.lang.String certificateArn)
The ARN of the certificate.
certificateArn
- The ARN of the certificate.public void setCertificateId(java.lang.String certificateId)
The ID of the certificate.
certificateId
- The ID of the certificate.public java.lang.String getCertificateId()
The ID of the certificate.
public Certificate withCertificateId(java.lang.String certificateId)
The ID of the certificate.
certificateId
- The ID of the certificate.public void setStatus(java.lang.String status)
The status of the certificate.
status
- The status of the certificate.CertificateStatus
public java.lang.String getStatus()
The status of the certificate.
CertificateStatus
public Certificate withStatus(java.lang.String status)
The status of the certificate.
status
- The status of the certificate.CertificateStatus
public void setStatus(CertificateStatus status)
The status of the certificate.
status
- The status of the certificate.CertificateStatus
public Certificate withStatus(CertificateStatus status)
The status of the certificate.
status
- The status of the certificate.CertificateStatus
public void setCreationDate(java.util.Date creationDate)
The date and time the certificate was created.
creationDate
- The date and time the certificate was created.public java.util.Date getCreationDate()
The date and time the certificate was created.
public Certificate withCreationDate(java.util.Date creationDate)
The date and time the certificate was created.
creationDate
- The date and time the certificate was created.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 Certificate clone()
clone
in class java.lang.Object