Class GetCertificateResult
- java.lang.Object
-
- com.amazonaws.services.certificatemanager.model.GetCertificateResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class GetCertificateResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetCertificateResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetCertificateResult
clone()
boolean
equals(Object obj)
String
getCertificate()
String that contains the ACM Certificate represented by the ARN specified at input.String
getCertificateChain()
The certificate chain that contains the root certificate issued by the certificate authority (CA).int
hashCode()
void
setCertificate(String certificate)
String that contains the ACM Certificate represented by the ARN specified at input.void
setCertificateChain(String certificateChain)
The certificate chain that contains the root certificate issued by the certificate authority (CA).String
toString()
Returns a string representation of this object; useful for testing and debugging.GetCertificateResult
withCertificate(String certificate)
String that contains the ACM Certificate represented by the ARN specified at input.GetCertificateResult
withCertificateChain(String certificateChain)
The certificate chain that contains the root certificate issued by the certificate authority (CA).
-
-
-
Method Detail
-
setCertificate
public void setCertificate(String certificate)
String that contains the ACM Certificate represented by the ARN specified at input.
- Parameters:
certificate
- String that contains the ACM Certificate represented by the ARN specified at input.
-
getCertificate
public String getCertificate()
String that contains the ACM Certificate represented by the ARN specified at input.
- Returns:
- String that contains the ACM Certificate represented by the ARN specified at input.
-
withCertificate
public GetCertificateResult withCertificate(String certificate)
String that contains the ACM Certificate represented by the ARN specified at input.
- Parameters:
certificate
- String that contains the ACM Certificate represented by the ARN specified at input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCertificateChain
public void setCertificateChain(String certificateChain)
The certificate chain that contains the root certificate issued by the certificate authority (CA).
- Parameters:
certificateChain
- The certificate chain that contains the root certificate issued by the certificate authority (CA).
-
getCertificateChain
public String getCertificateChain()
The certificate chain that contains the root certificate issued by the certificate authority (CA).
- Returns:
- The certificate chain that contains the root certificate issued by the certificate authority (CA).
-
withCertificateChain
public GetCertificateResult withCertificateChain(String certificateChain)
The certificate chain that contains the root certificate issued by the certificate authority (CA).
- Parameters:
certificateChain
- The certificate chain that contains the root certificate issued by the certificate authority (CA).- 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 GetCertificateResult clone()
-
-