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 GetCertificateResultclone()booleanequals(Object obj)StringgetCertificate()String that contains the ACM Certificate represented by the ARN specified at input.StringgetCertificateChain()The certificate chain that contains the root certificate issued by the certificate authority (CA).inthashCode()voidsetCertificate(String certificate)String that contains the ACM Certificate represented by the ARN specified at input.voidsetCertificateChain(String certificateChain)The certificate chain that contains the root certificate issued by the certificate authority (CA).StringtoString()Returns a string representation of this object; useful for testing and debugging.GetCertificateResultwithCertificate(String certificate)String that contains the ACM Certificate represented by the ARN specified at input.GetCertificateResultwithCertificateChain(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetCertificateResult clone()
-
-