Interface CertificateSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CertificateSummary.Builder,CertificateSummary>,SdkBuilder<CertificateSummary.Builder,CertificateSummary>,SdkPojo
- Enclosing class:
- CertificateSummary
public static interface CertificateSummary.Builder extends SdkPojo, CopyableBuilder<CertificateSummary.Builder,CertificateSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CertificateSummary.BuildercertificateArn(String certificateArn)The Amazon Resource Name (ARN) of the certificate.default CertificateSummary.BuildercertificateDetail(Consumer<Certificate.Builder> certificateDetail)An object that describes a certificate in detail.CertificateSummary.BuildercertificateDetail(Certificate certificateDetail)An object that describes a certificate in detail.CertificateSummary.BuildercertificateName(String certificateName)The name of the certificate.CertificateSummary.BuilderdomainName(String domainName)The domain name of the certificate.CertificateSummary.Buildertags(Collection<Tag> tags)The tag keys and optional values for the resource.CertificateSummary.Buildertags(Consumer<Tag.Builder>... tags)The tag keys and optional values for the resource.CertificateSummary.Buildertags(Tag... tags)The tag keys and optional values for the resource.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
certificateArn
CertificateSummary.Builder certificateArn(String certificateArn)
The Amazon Resource Name (ARN) of the certificate.
- Parameters:
certificateArn- The Amazon Resource Name (ARN) of the certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateName
CertificateSummary.Builder certificateName(String certificateName)
The name of the certificate.
- Parameters:
certificateName- The name of the certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainName
CertificateSummary.Builder domainName(String domainName)
The domain name of the certificate.
- Parameters:
domainName- The domain name of the certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateDetail
CertificateSummary.Builder certificateDetail(Certificate certificateDetail)
An object that describes a certificate in detail.
- Parameters:
certificateDetail- An object that describes a certificate in detail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateDetail
default CertificateSummary.Builder certificateDetail(Consumer<Certificate.Builder> certificateDetail)
An object that describes a certificate in detail.
This is a convenience method that creates an instance of theCertificate.Builderavoiding the need to create one manually viaCertificate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocertificateDetail(Certificate).- Parameters:
certificateDetail- a consumer that will call methods onCertificate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
certificateDetail(Certificate)
-
tags
CertificateSummary.Builder tags(Collection<Tag> tags)
The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.
- Parameters:
tags- The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CertificateSummary.Builder tags(Tag... tags)
The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.
- Parameters:
tags- The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CertificateSummary.Builder tags(Consumer<Tag.Builder>... tags)
The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-