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

SigningCertificate

import type { SigningCertificate } from "https://aws-api.deno.dev/v0.4/services/iam.ts?docs=full";

Contains information about an X.509 signing certificate.

This data type is used as a response element in the "UploadSigningCertificate" and "ListSigningCertificates" operations.

interface SigningCertificate {
CertificateBody: string;
CertificateId: string;
Status: statusType;
UploadDate?: Date | number | null;
UserName: string;
}

§Properties

§
CertificateBody: string
[src]

The contents of the signing certificate.

§
CertificateId: string
[src]

The ID for the signing certificate.

§

The status of the signing certificate. Active means that the key is valid for API calls, while Inactive means it is not.

§
UploadDate?: Date | number | null
[src]

The date when the signing certificate was uploaded.

§
UserName: string
[src]

The name of the user the signing certificate is associated with.