Interface CACertificate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CACertificate.Builder,CACertificate>,SdkBuilder<CACertificate.Builder,CACertificate>,SdkPojo
- Enclosing class:
- CACertificate
public static interface CACertificate.Builder extends SdkPojo, CopyableBuilder<CACertificate.Builder,CACertificate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CACertificate.BuildercertificateArn(String certificateArn)The ARN of the CA certificate.CACertificate.BuildercertificateId(String certificateId)The ID of the CA certificate.CACertificate.BuildercreationDate(Instant creationDate)The date the CA certificate was created.CACertificate.Builderstatus(String status)The status of the CA certificate.CACertificate.Builderstatus(CACertificateStatus status)The status of the CA 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
-
certificateArn
CACertificate.Builder certificateArn(String certificateArn)
The ARN of the CA certificate.
- Parameters:
certificateArn- The ARN of the CA certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateId
CACertificate.Builder certificateId(String certificateId)
The ID of the CA certificate.
- Parameters:
certificateId- The ID of the CA certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
CACertificate.Builder status(String status)
The status of the CA certificate.
The status value REGISTER_INACTIVE is deprecated and should not be used.
- Parameters:
status- The status of the CA certificate.The status value REGISTER_INACTIVE is deprecated and should not be used.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CACertificateStatus,CACertificateStatus
-
status
CACertificate.Builder status(CACertificateStatus status)
The status of the CA certificate.
The status value REGISTER_INACTIVE is deprecated and should not be used.
- Parameters:
status- The status of the CA certificate.The status value REGISTER_INACTIVE is deprecated and should not be used.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CACertificateStatus,CACertificateStatus
-
creationDate
CACertificate.Builder creationDate(Instant creationDate)
The date the CA certificate was created.
- Parameters:
creationDate- The date the CA certificate was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-