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 CertificateSummary
clone()
boolean
equals(Object obj)
String
getCertificateArn()
Amazon Resource Name (ARN) of the certificate.String
getDomainName()
Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.int
hashCode()
void
setCertificateArn(String certificateArn)
Amazon Resource Name (ARN) of the certificate.void
setDomainName(String domainName)
Fully qualified domain name (FQDN), such as www.example.com or example.com, for the certificate.String
toString()
Returns a string representation of this object; useful for testing and debugging.CertificateSummary
withCertificateArn(String certificateArn)
Amazon Resource Name (ARN) of the certificate.CertificateSummary
withDomainName(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-123456789012
For 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-123456789012
For 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-123456789012
For 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-123456789012
For 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-123456789012
For 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-123456789012
For 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CertificateSummary clone()
-
-