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

ServerCertificate

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

Contains information about a server certificate.

This data type is used as a response element in the "GetServerCertificate" operation.

interface ServerCertificate {
CertificateBody: string;
CertificateChain?: string | null;
ServerCertificateMetadata: ServerCertificateMetadata;
Tags: Tag[];
}

§Properties

§
CertificateBody: string
[src]

The contents of the public key certificate.

§
CertificateChain?: string | null
[src]

The contents of the public key certificate chain.

§
ServerCertificateMetadata: ServerCertificateMetadata
[src]

The meta information of the server certificate, such as its name, path, ID, and ARN.

§
Tags: Tag[]
[src]

A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User Guide.