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