Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RevokeCertificateRequest

import type { RevokeCertificateRequest } from "https://aws-api.deno.dev/v0.4/services/acmpca.ts?docs=full";
interface RevokeCertificateRequest {
CertificateAuthorityArn: string;
CertificateSerial: string;
RevocationReason: RevocationReason;
}

§Properties

§
CertificateAuthorityArn: string
[src]

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_
§
CertificateSerial: string
[src]

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.

§
RevocationReason: RevocationReason
[src]

Specifies why you revoked the certificate.