Retrieves an array of cost category names and values incurred cost
Source:R/costexplorer_operations.R
costexplorer_get_cost_categories.RdRetrieves an array of cost category names and values incurred cost.
See https://www.paws-r-sdk.com/docs/costexplorer_get_cost_categories/ for full documentation.
Usage
costexplorer_get_cost_categories(
SearchString = NULL,
TimePeriod,
CostCategoryName = NULL,
Filter = NULL,
SortBy = NULL,
BillingViewArn = NULL,
MaxResults = NULL,
NextPageToken = NULL
)Arguments
- SearchString
The value that you want to search the filter values for.
If you don't specify a
CostCategoryName,SearchStringis used to filter cost category names that match theSearchStringpattern. If you specify aCostCategoryName,SearchStringis used to filter cost category values that match theSearchStringpattern.- TimePeriod
[required] The time period of the request.
- CostCategoryName
The unique name of the cost category.
- Filter
Use
Expressionto filter in various Cost Explorer APIs.Not all
Expressiontypes are supported in each API. Refer to the documentation for each specific API to see what is supported.There are two patterns:
Simple dimension values.
There are three types of simple dimension values:
CostCategories,Tags, andDimensions.Specify the
CostCategoriesfield to define a filter that acts on Cost Categories.Specify the
Tagsfield to define a filter that acts on Cost Allocation Tags.Specify the
Dimensionsfield to define a filter that acts on theDimensionValues.
For each filter type, you can set the dimension name and values for the filters that you plan to use.
For example, you can filter for
REGION==us-east-1 OR REGION==us-west-1. Forget_rightsizing_recommendation, the Region is a full name (for example,REGION==US East (N. Virginia).The corresponding
Expressionfor this example is as follows:{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] } }As shown in the previous example, lists of dimension values are combined with
ORwhen applying the filter.
You can also set different match options to further control how the filter behaves. Not all APIs support match options. Refer to the documentation for each specific API to see what is supported.
For example, you can filter for linked account names that start with "a".
The corresponding
Expressionfor this example is as follows:{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME", "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }
Compound
Expressiontypes with logical operations.You can use multiple
Expressiontypes and the logical operatorsAND/OR/NOTto create a list of one or moreExpressionobjects. By doing this, you can filter by more advanced options.For example, you can filter by
((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer).The corresponding
Expressionfor this example is as follows:{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }
Because each
Expressioncan have only one operator, the service returns an error if more than one is specified. The following example shows anExpressionobject that creates an error:{ "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }The following is an example of the corresponding error message:
"Expression has more than one roots. Only one root operator is allowed for each expression: And, Or, Not, Dimensions, Tags, CostCategories"
For the
get_rightsizing_recommendationaction, a combination of OR and NOT isn't supported. OR isn't supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited toLINKED_ACCOUNT,REGION, orRIGHTSIZING_TYPE.For the
get_reservation_purchase_recommendationaction, only NOT is supported. AND and OR aren't supported. Dimensions are limited toLINKED_ACCOUNT.- SortBy
The value that you sort the data by.
The key represents the cost and usage metrics. The following values are supported:
BlendedCostUnblendedCostAmortizedCostNetAmortizedCostNetUnblendedCostUsageQuantityNormalizedUsageAmount
The supported key values for the
SortOrdervalue areASCENDINGandDESCENDING.When you use the
SortByvalue, theNextPageTokenandSearchStringkey values aren't supported.- BillingViewArn
The Amazon Resource Name (ARN) that uniquely identifies a specific billing view. The ARN is used to specify which particular billing view you want to interact with or retrieve information from when making API calls related to Amazon Web Services Billing and Cost Management features. The BillingViewArn can be retrieved by calling the ListBillingViews API.
- MaxResults
This field is only used when the
SortByvalue is provided in the request.The maximum number of objects that are returned for this request. If
MaxResultsisn't specified with theSortByvalue, the request returns 1000 results as the default value for this parameter.For
get_cost_categories, MaxResults has an upper quota of 1000.- NextPageToken
If the number of objects that are still available for retrieval exceeds the quota, Amazon Web Services returns a NextPageToken value in the response. To retrieve the next batch of objects, provide the NextPageToken from the previous call in your next request.