Class UpdateClientCertificateResult
- java.lang.Object
-
- com.amazonaws.services.apigateway.model.UpdateClientCertificateResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class UpdateClientCertificateResult extends Object implements Serializable, Cloneable
Represents a Client Certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateClientCertificateResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateClientCertificateResultclone()booleanequals(Object obj)StringgetClientCertificateId()The identifier of the Client Certificate.DategetCreatedDate()The date when the Client Certificate was created, in ISO 8601 format.StringgetDescription()The description of the Client Certificate.DategetExpirationDate()The date when the Client Certificate will expire, in ISO 8601 format.StringgetPemEncodedCertificate()The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .inthashCode()voidsetClientCertificateId(String clientCertificateId)The identifier of the Client Certificate.voidsetCreatedDate(Date createdDate)The date when the Client Certificate was created, in ISO 8601 format.voidsetDescription(String description)The description of the Client Certificate.voidsetExpirationDate(Date expirationDate)The date when the Client Certificate will expire, in ISO 8601 format.voidsetPemEncodedCertificate(String pemEncodedCertificate)The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .StringtoString()Returns a string representation of this object; useful for testing and debugging.UpdateClientCertificateResultwithClientCertificateId(String clientCertificateId)The identifier of the Client Certificate.UpdateClientCertificateResultwithCreatedDate(Date createdDate)The date when the Client Certificate was created, in ISO 8601 format.UpdateClientCertificateResultwithDescription(String description)The description of the Client Certificate.UpdateClientCertificateResultwithExpirationDate(Date expirationDate)The date when the Client Certificate will expire, in ISO 8601 format.UpdateClientCertificateResultwithPemEncodedCertificate(String pemEncodedCertificate)The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
-
-
-
Method Detail
-
setClientCertificateId
public void setClientCertificateId(String clientCertificateId)
The identifier of the Client Certificate.
- Parameters:
clientCertificateId- The identifier of the Client Certificate.
-
getClientCertificateId
public String getClientCertificateId()
The identifier of the Client Certificate.
- Returns:
- The identifier of the Client Certificate.
-
withClientCertificateId
public UpdateClientCertificateResult withClientCertificateId(String clientCertificateId)
The identifier of the Client Certificate.
- Parameters:
clientCertificateId- The identifier of the Client Certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDescription
public void setDescription(String description)
The description of the Client Certificate.
- Parameters:
description- The description of the Client Certificate.
-
getDescription
public String getDescription()
The description of the Client Certificate.
- Returns:
- The description of the Client Certificate.
-
withDescription
public UpdateClientCertificateResult withDescription(String description)
The description of the Client Certificate.
- Parameters:
description- The description of the Client Certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setPemEncodedCertificate
public void setPemEncodedCertificate(String pemEncodedCertificate)
The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
- Parameters:
pemEncodedCertificate- The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
-
getPemEncodedCertificate
public String getPemEncodedCertificate()
The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
- Returns:
- The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
-
withPemEncodedCertificate
public UpdateClientCertificateResult withPemEncodedCertificate(String pemEncodedCertificate)
The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
- Parameters:
pemEncodedCertificate- The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCreatedDate
public void setCreatedDate(Date createdDate)
The date when the Client Certificate was created, in ISO 8601 format.
- Parameters:
createdDate- The date when the Client Certificate was created, in ISO 8601 format.
-
getCreatedDate
public Date getCreatedDate()
The date when the Client Certificate was created, in ISO 8601 format.
- Returns:
- The date when the Client Certificate was created, in ISO 8601 format.
-
withCreatedDate
public UpdateClientCertificateResult withCreatedDate(Date createdDate)
The date when the Client Certificate was created, in ISO 8601 format.
- Parameters:
createdDate- The date when the Client Certificate was created, in ISO 8601 format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setExpirationDate
public void setExpirationDate(Date expirationDate)
The date when the Client Certificate will expire, in ISO 8601 format.
- Parameters:
expirationDate- The date when the Client Certificate will expire, in ISO 8601 format.
-
getExpirationDate
public Date getExpirationDate()
The date when the Client Certificate will expire, in ISO 8601 format.
- Returns:
- The date when the Client Certificate will expire, in ISO 8601 format.
-
withExpirationDate
public UpdateClientCertificateResult withExpirationDate(Date expirationDate)
The date when the Client Certificate will expire, in ISO 8601 format.
- Parameters:
expirationDate- The date when the Client Certificate will expire, in ISO 8601 format.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public UpdateClientCertificateResult clone()
-
-