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

ServerCertificateMetadata

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

Contains information about a server certificate without its certificate body, certificate chain, and private key.

This data type is used as a response element in the "UploadServerCertificate" and "ListServerCertificates" operations.

interface ServerCertificateMetadata {
Arn: string;
Expiration?: Date | number | null;
Path: string;
ServerCertificateId: string;
ServerCertificateName: string;
UploadDate?: Date | number | null;
}

§Properties

§
Arn: string
[src]

The Amazon Resource Name (ARN) specifying the server certificate. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide.

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

The date on which the certificate is set to expire.

§
Path: string
[src]

The path to the server certificate. For more information about paths, see IAM identifiers in the IAM User Guide.

§
ServerCertificateId: string
[src]

The stable and unique string identifying the server certificate. For more information about IDs, see IAM identifiers in the IAM User Guide.

§
ServerCertificateName: string
[src]

The name that identifies the server certificate.

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

The date when the server certificate was uploaded.