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 Modifier and Type Method Description CertificateSummary.Builderissuer(String issuer)The entity that issued the certificate.CertificateSummary.BuildernotValidAfter(Instant notValidAfter)The certificate is not valid after this date.CertificateSummary.BuildernotValidBefore(Instant notValidBefore)The certificate is not valid before this date.CertificateSummary.Buildersubject(String subject)The entity the certificate belongs to.CertificateSummary.Builderthumbprint(String thumbprint)A hexadecimal identifier for the certificate.-
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
-
issuer
CertificateSummary.Builder issuer(String issuer)
The entity that issued the certificate.
- Parameters:
issuer- The entity that issued the certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notValidAfter
CertificateSummary.Builder notValidAfter(Instant notValidAfter)
The certificate is not valid after this date.
- Parameters:
notValidAfter- The certificate is not valid after this date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notValidBefore
CertificateSummary.Builder notValidBefore(Instant notValidBefore)
The certificate is not valid before this date.
- Parameters:
notValidBefore- The certificate is not valid before this date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subject
CertificateSummary.Builder subject(String subject)
The entity the certificate belongs to.
- Parameters:
subject- The entity the certificate belongs to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thumbprint
CertificateSummary.Builder thumbprint(String thumbprint)
A hexadecimal identifier for the certificate.
- Parameters:
thumbprint- A hexadecimal identifier for the certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-