public class ServerCertificate
extends java.lang.Object
implements java.io.Serializable
The ServerCertificate data type contains information about a server certificate.
This data type is used as a response element in the action GetServerCertificate.
| コンストラクタと説明 |
|---|
ServerCertificate()
Default constructor for a new ServerCertificate object.
|
ServerCertificate(ServerCertificateMetadata serverCertificateMetadata,
java.lang.String certificateBody)
Constructs a new ServerCertificate object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCertificateBody()
The contents of the public key certificate.
|
java.lang.String |
getCertificateChain()
The contents of the public key certificate chain.
|
ServerCertificateMetadata |
getServerCertificateMetadata()
The meta information of the server certificate, such as its name,
path, ID, and ARN.
|
int |
hashCode() |
void |
setCertificateBody(java.lang.String certificateBody)
The contents of the public key certificate.
|
void |
setCertificateChain(java.lang.String certificateChain)
The contents of the public key certificate chain.
|
void |
setServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
The meta information of the server certificate, such as its name,
path, ID, and ARN.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ServerCertificate |
withCertificateBody(java.lang.String certificateBody)
The contents of the public key certificate.
|
ServerCertificate |
withCertificateChain(java.lang.String certificateChain)
The contents of the public key certificate chain.
|
ServerCertificate |
withServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
The meta information of the server certificate, such as its name,
path, ID, and ARN.
|
public ServerCertificate()
public ServerCertificate(ServerCertificateMetadata serverCertificateMetadata, java.lang.String certificateBody)
serverCertificateMetadata - The meta information of the server
certificate, such as its name, path, ID, and ARN.certificateBody - The contents of the public key certificate.public ServerCertificateMetadata getServerCertificateMetadata()
public void setServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
serverCertificateMetadata - The meta information of the server certificate, such as its name,
path, ID, and ARN.public ServerCertificate withServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
Returns a reference to this object so that method calls can be chained together.
serverCertificateMetadata - The meta information of the server certificate, such as its name,
path, ID, and ARN.public java.lang.String getCertificateBody()
Constraints:
Length: 1 - 16384
Pattern: [
-ÿ]+
public void setCertificateBody(java.lang.String certificateBody)
Constraints:
Length: 1 - 16384
Pattern: [
-ÿ]+
certificateBody - The contents of the public key certificate.public ServerCertificate withCertificateBody(java.lang.String certificateBody)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 16384
Pattern: [
-ÿ]+
certificateBody - The contents of the public key certificate.public java.lang.String getCertificateChain()
Constraints:
Length: 1 - 2097152
Pattern: [
-ÿ]*
public void setCertificateChain(java.lang.String certificateChain)
Constraints:
Length: 1 - 2097152
Pattern: [
-ÿ]*
certificateChain - The contents of the public key certificate chain.public ServerCertificate withCertificateChain(java.lang.String certificateChain)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 2097152
Pattern: [
-ÿ]*
certificateChain - The contents of the public key certificate chain.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object