Skip to content

List Cost Allocation Tag Backfill History

costexplorer_list_cost_allocation_tag_backfill_history R Documentation

Retrieves a list of your historical cost allocation tag backfill requests

Description

Retrieves a list of your historical cost allocation tag backfill requests.

Usage

costexplorer_list_cost_allocation_tag_backfill_history(NextToken,
  MaxResults)

Arguments

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.

Value

A list with the following syntax:

list(
  BackfillRequests = list(
    list(
      BackfillFrom = "string",
      RequestedAt = "string",
      CompletedAt = "string",
      BackfillStatus = "SUCCEEDED"|"PROCESSING"|"FAILED",
      LastUpdatedAt = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_cost_allocation_tag_backfill_history(
  NextToken = "string",
  MaxResults = 123
)