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

CostTypes

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

The types of cost that are included in a COST budget, such as tax and subscriptions.

USAGE, RI_UTILIZATION, RI_COVERAGE, SAVINGS_PLANS_UTILIZATION, and SAVINGS_PLANS_COVERAGE budgets do not have CostTypes.

interface CostTypes {
IncludeCredit?: boolean | null;
IncludeDiscount?: boolean | null;
IncludeOtherSubscription?: boolean | null;
IncludeRecurring?: boolean | null;
IncludeRefund?: boolean | null;
IncludeSubscription?: boolean | null;
IncludeSupport?: boolean | null;
IncludeTax?: boolean | null;
IncludeUpfront?: boolean | null;
UseAmortized?: boolean | null;
UseBlended?: boolean | null;
}

§Properties

§
IncludeCredit?: boolean | null
[src]

Specifies whether a budget includes credits.

The default value is true.

§
IncludeDiscount?: boolean | null
[src]

Specifies whether a budget includes discounts.

The default value is true.

§
IncludeOtherSubscription?: boolean | null
[src]

Specifies whether a budget includes non-RI subscription costs.

The default value is true.

§
IncludeRecurring?: boolean | null
[src]

Specifies whether a budget includes recurring fees such as monthly RI fees.

The default value is true.

§
IncludeRefund?: boolean | null
[src]

Specifies whether a budget includes refunds.

The default value is true.

§
IncludeSubscription?: boolean | null
[src]

Specifies whether a budget includes subscriptions.

The default value is true.

§
IncludeSupport?: boolean | null
[src]

Specifies whether a budget includes support subscription fees.

The default value is true.

§
IncludeTax?: boolean | null
[src]

Specifies whether a budget includes taxes.

The default value is true.

§
IncludeUpfront?: boolean | null
[src]

Specifies whether a budget includes upfront RI costs.

The default value is true.

§
UseAmortized?: boolean | null
[src]

Specifies whether a budget uses the amortized rate.

The default value is false.

§
UseBlended?: boolean | null
[src]

Specifies whether a budget uses a blended rate.

The default value is false.