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

DimensionValuesWithAttributes

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

The metadata of a specific type that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

interface DimensionValuesWithAttributes {
Attributes?: {
[key: string]: string | null | undefined;
}
| null;
Value?: string | null;
}

§Properties

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

The attribute that applies to a specific Dimension.

§
Value?: string | null
[src]

The value of a dimension with a specific attribute.