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

RenewalSummary

import type { RenewalSummary } from "https://aws-api.deno.dev/v0.3/services/acm.ts?docs=full";

Contains information about the status of ACM's managed renewal for the certificate. This structure exists only when the certificate type is AMAZON_ISSUED.

interface RenewalSummary {
DomainValidationOptions: DomainValidation[];
RenewalStatus: RenewalStatus;
RenewalStatusReason?: FailureReason | null;
UpdatedAt: Date | number;
}

§Properties

§
DomainValidationOptions: DomainValidation[]
[src]

Contains information about the validation of each domain name in the certificate, as it pertains to ACM's managed renewal. This is different from the initial validation that occurs as a result of the "RequestCertificate" request. This field exists only when the certificate type is AMAZON_ISSUED.

§
RenewalStatus: RenewalStatus
[src]

The status of ACM's managed renewal of the certificate.

§
RenewalStatusReason?: FailureReason | null
[src]

The reason that a renewal request was unsuccessful.

§
UpdatedAt: Date | number
[src]

The time at which the renewal summary was last updated.