Interface CertificateValidity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CertificateValidity.Builder,CertificateValidity>,SdkBuilder<CertificateValidity.Builder,CertificateValidity>,SdkPojo
- Enclosing class:
- CertificateValidity
public static interface CertificateValidity.Builder extends SdkPojo, CopyableBuilder<CertificateValidity.Builder,CertificateValidity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateValidity.BuildernotAfter(Instant notAfter)The certificate is not valid after this date.CertificateValidity.BuildernotBefore(Instant notBefore)The certificate is not valid before this date.-
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
-
notBefore
CertificateValidity.Builder notBefore(Instant notBefore)
The certificate is not valid before this date.
- Parameters:
notBefore- The certificate is not valid before this date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notAfter
CertificateValidity.Builder notAfter(Instant notAfter)
The certificate is not valid after this date.
- Parameters:
notAfter- The certificate is not valid after this date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-