public class CreateCertificateFromCsrResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The output from the CreateCertificateFromCsr operation.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
certificateArn
The Amazon Resource Name (ARN) of the certificate.
|
private java.lang.String |
certificateId
The ID of the certificate.
|
private java.lang.String |
certificatePem
The certificate data, in PEM format.
|
Constructor and Description |
---|
CreateCertificateFromCsrResult() |
Modifier and Type | Method and Description |
---|---|
CreateCertificateFromCsrResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCertificateArn()
The Amazon Resource Name (ARN) of the certificate.
|
java.lang.String |
getCertificateId()
The ID of the certificate.
|
java.lang.String |
getCertificatePem()
The certificate data, in PEM format.
|
int |
hashCode() |
void |
setCertificateArn(java.lang.String certificateArn)
The Amazon Resource Name (ARN) of the certificate.
|
void |
setCertificateId(java.lang.String certificateId)
The ID of the certificate.
|
void |
setCertificatePem(java.lang.String certificatePem)
The certificate data, in PEM format.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateCertificateFromCsrResult |
withCertificateArn(java.lang.String certificateArn)
The Amazon Resource Name (ARN) of the certificate.
|
CreateCertificateFromCsrResult |
withCertificateId(java.lang.String certificateId)
The ID of the certificate.
|
CreateCertificateFromCsrResult |
withCertificatePem(java.lang.String certificatePem)
The certificate data, in PEM format.
|
private java.lang.String certificateArn
The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.
private java.lang.String certificateId
The ID of the certificate. Certificate management operations only take a certificateId.
private java.lang.String certificatePem
The certificate data, in PEM format.
public void setCertificateArn(java.lang.String certificateArn)
The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.
certificateArn
- The Amazon Resource Name (ARN) of the certificate. You can use the
ARN as a principal for policy operations.public java.lang.String getCertificateArn()
The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.
public CreateCertificateFromCsrResult withCertificateArn(java.lang.String certificateArn)
The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.
certificateArn
- The Amazon Resource Name (ARN) of the certificate. You can use the
ARN as a principal for policy operations.public void setCertificateId(java.lang.String certificateId)
The ID of the certificate. Certificate management operations only take a certificateId.
certificateId
- The ID of the certificate. Certificate management operations only
take a certificateId.public java.lang.String getCertificateId()
The ID of the certificate. Certificate management operations only take a certificateId.
public CreateCertificateFromCsrResult withCertificateId(java.lang.String certificateId)
The ID of the certificate. Certificate management operations only take a certificateId.
certificateId
- The ID of the certificate. Certificate management operations only
take a certificateId.public void setCertificatePem(java.lang.String certificatePem)
The certificate data, in PEM format.
certificatePem
- The certificate data, in PEM format.public java.lang.String getCertificatePem()
The certificate data, in PEM format.
public CreateCertificateFromCsrResult withCertificatePem(java.lang.String certificatePem)
The certificate data, in PEM format.
certificatePem
- The certificate data, in PEM format.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 CreateCertificateFromCsrResult clone()
clone
in class java.lang.Object