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

GetTagsRequest

import type { GetTagsRequest } from "https://aws-api.deno.dev/v0.3/services/costexplorer.ts?docs=full";
interface GetTagsRequest {
Filter?: Expression | null;
MaxResults?: number | null;
NextPageToken?: string | null;
SearchString?: string | null;
SortBy?: SortDefinition[] | null;
TagKey?: string | null;
TimePeriod: DateInterval;
}

§Properties

§
Filter?: Expression | null
[src]
§
MaxResults?: number | null
[src]

This field is only used when SortBy is provided in the request. The maximum number of objects that to be returned for this request. If MaxResults is not specified with SortBy, the request will return 1000 results as the default value for this parameter.

For GetTags, MaxResults has an upper limit of 1000.

§
NextPageToken?: string | null
[src]

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

§
SearchString?: string | null
[src]

The value that you want to search for.

§
SortBy?: SortDefinition[] | null
[src]

The value by which you want to sort the data.

The key represents cost and usage metrics. The following values are supported:

  • BlendedCost
    
  • UnblendedCost
    
  • AmortizedCost
    
  • NetAmortizedCost
    
  • NetUnblendedCost
    
  • UsageQuantity
    
  • NormalizedUsageAmount
    

Supported values for SortOrder are ASCENDING or DESCENDING.

When using SortBy, NextPageToken and SearchString are not supported.

§
TagKey?: string | null
[src]

The key of the tag that you want to return values for.

§
TimePeriod: DateInterval
[src]

The start and end dates for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.