Interface RevokeCertificateRequest.Builder

All Superinterfaces:
AcmPcaRequest.Builder, AwsRequest.Builder, Buildable, CopyableBuilder<RevokeCertificateRequest.Builder,RevokeCertificateRequest>, SdkBuilder<RevokeCertificateRequest.Builder,RevokeCertificateRequest>, SdkPojo, SdkRequest.Builder
Enclosing class:
RevokeCertificateRequest

public static interface RevokeCertificateRequest.Builder extends AcmPcaRequest.Builder, SdkPojo, CopyableBuilder<RevokeCertificateRequest.Builder,RevokeCertificateRequest>
  • Method Details

    • certificateAuthorityArn

      RevokeCertificateRequest.Builder certificateAuthorityArn(String certificateAuthorityArn)

      Amazon Resource Name (ARN) of the private CA that issued the certificate to be revoked. This must be of the form:

      arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012

      Parameters:
      certificateAuthorityArn - Amazon Resource Name (ARN) of the private CA that issued the certificate to be revoked. This must be of the form:

      arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • certificateSerial

      RevokeCertificateRequest.Builder certificateSerial(String certificateSerial)

      Serial number of the certificate to be revoked. This must be in hexadecimal format. You can retrieve the serial number by calling GetCertificate with the Amazon Resource Name (ARN) of the certificate you want and the ARN of your private CA. The GetCertificate action retrieves the certificate in the PEM format. You can use the following OpenSSL command to list the certificate in text format and copy the hexadecimal serial number.

      openssl x509 -in file_path -text -noout

      You can also copy the serial number from the console or use the DescribeCertificate action in the Certificate Manager API Reference.

      Parameters:
      certificateSerial - Serial number of the certificate to be revoked. This must be in hexadecimal format. You can retrieve the serial number by calling GetCertificate with the Amazon Resource Name (ARN) of the certificate you want and the ARN of your private CA. The GetCertificate action retrieves the certificate in the PEM format. You can use the following OpenSSL command to list the certificate in text format and copy the hexadecimal serial number.

      openssl x509 -in file_path -text -noout

      You can also copy the serial number from the console or use the DescribeCertificate action in the Certificate Manager API Reference.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • revocationReason

      RevokeCertificateRequest.Builder revocationReason(String revocationReason)

      Specifies why you revoked the certificate.

      Parameters:
      revocationReason - Specifies why you revoked the certificate.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • revocationReason

      RevokeCertificateRequest.Builder revocationReason(RevocationReason revocationReason)

      Specifies why you revoked the certificate.

      Parameters:
      revocationReason - Specifies why you revoked the certificate.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • overrideConfiguration

      RevokeCertificateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.