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

SavingsPlan

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

Information about a Savings Plan.

interface SavingsPlan {
commitment?: string | null;
currency?: CurrencyCode | null;
description?: string | null;
ec2InstanceFamily?: string | null;
end?: string | null;
offeringId?: string | null;
paymentOption?: SavingsPlanPaymentOption | null;
productTypes?: SavingsPlanProductType[] | null;
recurringPaymentAmount?: string | null;
region?: string | null;
savingsPlanArn?: string | null;
savingsPlanId?: string | null;
savingsPlanType?: SavingsPlanType | null;
start?: string | null;
state?: SavingsPlanState | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
termDurationInSeconds?: number | null;
upfrontPaymentAmount?: string | null;
}

§Properties

§
commitment?: string | null
[src]

The hourly commitment, in USD.

§
currency?: CurrencyCode | null
[src]

The currency.

§
description?: string | null
[src]

The description.

§
ec2InstanceFamily?: string | null
[src]

The EC2 instance family.

§
end?: string | null
[src]

The end time.

§
offeringId?: string | null
[src]

The ID of the offering.

§
paymentOption?: SavingsPlanPaymentOption | null
[src]

The payment option.

§
productTypes?: SavingsPlanProductType[] | null
[src]

The product types.

§
recurringPaymentAmount?: string | null
[src]

The recurring payment amount.

§
region?: string | null
[src]

The AWS Region.

§
savingsPlanArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Savings Plan.

§
savingsPlanId?: string | null
[src]

The ID of the Savings Plan.

§
savingsPlanType?: SavingsPlanType | null
[src]

The plan type.

§
start?: string | null
[src]

The start time.

§
state?: SavingsPlanState | null
[src]

The state.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

One or more tags.

§
termDurationInSeconds?: number | null
[src]

The duration of the term, in seconds.

§
upfrontPaymentAmount?: string | null
[src]

The up-front payment amount.