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

RenewDomainRequest

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

A RenewDomain request includes the number of years that you want to renew for and the current expiration year.

interface RenewDomainRequest {
CurrentExpiryYear: number;
DomainName: string;
DurationInYears?: number | null;
}

§Properties

§
CurrentExpiryYear: number
[src]

The year when the registration for the domain is set to expire. This value must match the current expiration date for the domain.

§
DomainName: string
[src]

The name of the domain that you want to renew.

§
DurationInYears?: number | null
[src]

The number of years that you want to renew the domain for. The maximum number of years depends on the top-level domain. For the range of valid values for your domain, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide.

Default: 1