Class UploadServerCertificateResult
- java.lang.Object
-
- com.amazonaws.services.identitymanagement.model.UploadServerCertificateResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class UploadServerCertificateResult extends Object implements Serializable, Cloneable
Contains the response to a successful UploadServerCertificate request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UploadServerCertificateResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UploadServerCertificateResult
clone()
boolean
equals(Object obj)
ServerCertificateMetadata
getServerCertificateMetadata()
The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.int
hashCode()
void
setServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.String
toString()
Returns a string representation of this object; useful for testing and debugging.UploadServerCertificateResult
withServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.
-
-
-
Method Detail
-
setServerCertificateMetadata
public void setServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.
- Parameters:
serverCertificateMetadata
- The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.
-
getServerCertificateMetadata
public ServerCertificateMetadata getServerCertificateMetadata()
The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.
- Returns:
- The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.
-
withServerCertificateMetadata
public UploadServerCertificateResult withServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata)
The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.
- Parameters:
serverCertificateMetadata
- The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public UploadServerCertificateResult clone()
-
-