Interface Certificate.Builder
- All Superinterfaces:
- Buildable,- CopyableBuilder<Certificate.Builder,,- Certificate> - SdkBuilder<Certificate.Builder,,- Certificate> - SdkPojo
- Enclosing class:
- Certificate
@Mutable
@NotThreadSafe
public static interface Certificate.Builder
extends SdkPojo, CopyableBuilder<Certificate.Builder,Certificate> 
- 
Method SummaryModifier and TypeMethodDescriptionThe body of the certificate.The entity that issued the certificate.notValidAfter(Instant notValidAfter) The certificate is not valid after this date.notValidBefore(Instant notValidBefore) The certificate is not valid before this date.The entity the certificate belongs to.thumbprint(String thumbprint) A hexadecimal identifier for the certificate.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
- 
Method Details- 
thumbprintA 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.
 
- 
subjectThe 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.
 
- 
issuerThe 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.
 
- 
notValidBeforeThe 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.
 
- 
notValidAfterThe 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.
 
- 
bodyThe body of the certificate. - Parameters:
- body- The body of the certificate.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 
-