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