Class CertificateSummary
- java.lang.Object
-
- com.amazonaws.services.certificatemanager.model.CertificateSummary
-
- All Implemented Interfaces:
Serializable,Cloneable
public class CertificateSummary extends Object implements Serializable, Cloneable
This structure is returned in the response object of ListCertificates action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CertificateSummary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CertificateSummaryclone()booleanequals(Object obj)StringgetCertificateArn()Amazon Resource Name (ARN) of the certificate.StringgetDomainName()Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.inthashCode()voidsetCertificateArn(String certificateArn)Amazon Resource Name (ARN) of the certificate.voidsetDomainName(String domainName)Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.StringtoString()Returns a string representation of this object; useful for testing and debugging.CertificateSummarywithCertificateArn(String certificateArn)Amazon Resource Name (ARN) of the certificate.CertificateSummarywithDomainName(String domainName)Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.
-
-
-
Method Detail
-
setCertificateArn
public void setCertificateArn(String certificateArn)
Amazon Resource Name (ARN) of the certificate. This is of the form:
arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
- Parameters:
certificateArn- Amazon Resource Name (ARN) of the certificate. This is of the form:arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
-
getCertificateArn
public String getCertificateArn()
Amazon Resource Name (ARN) of the certificate. This is of the form:
arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
- Returns:
- Amazon Resource Name (ARN) of the certificate. This is of the
form:
arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
-
withCertificateArn
public CertificateSummary withCertificateArn(String certificateArn)
Amazon Resource Name (ARN) of the certificate. This is of the form:
arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
- Parameters:
certificateArn- Amazon Resource Name (ARN) of the certificate. This is of the form:arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDomainName
public void setDomainName(String domainName)
Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.
- Parameters:
domainName- Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.
-
getDomainName
public String getDomainName()
Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.
- Returns:
- Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.
-
withDomainName
public CertificateSummary withDomainName(String domainName)
Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.
- Parameters:
domainName- Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.- 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 CertificateSummary clone()
-
-