List Cost Allocation Tags
costexplorer_list_cost_allocation_tags | R Documentation |
Get a list of cost allocation tags¶
Description¶
Get a list of cost allocation tags. All inputs in the API are optional and serve as filters. By default, all cost allocation tags are returned.
Usage¶
costexplorer_list_cost_allocation_tags(Status, TagKeys, Type, NextToken,
MaxResults)
Arguments¶
Status |
The status of cost allocation tag keys that are returned for this request. |
TagKeys |
The list of cost allocation tag keys that are returned for this request. |
Type |
The type of |
NextToken |
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. |
MaxResults |
The maximum number of objects that are returned for this request. By default, the request returns 100 results. |
Value¶
A list with the following syntax:
list(
CostAllocationTags = list(
list(
TagKey = "string",
Type = "AWSGenerated"|"UserDefined",
Status = "Active"|"Inactive",
LastUpdatedDate = "string",
LastUsedDate = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_cost_allocation_tags(
Status = "Active"|"Inactive",
TagKeys = list(
"string"
),
Type = "AWSGenerated"|"UserDefined",
NextToken = "string",
MaxResults = 123
)