Update Cost Allocation Tags Status
costexplorer_update_cost_allocation_tags_status | R Documentation |
Updates status for cost allocation tags in bulk, with maximum batch size of 20¶
Description¶
Updates status for cost allocation tags in bulk, with maximum batch size of 20. If the tag status that's updated is the same as the existing tag status, the request doesn't fail. Instead, it doesn't have any effect on the tag status (for example, activating the active tag).
Usage¶
costexplorer_update_cost_allocation_tags_status(
CostAllocationTagsStatus)
Arguments¶
CostAllocationTagsStatus |
[required] The list of |
Value¶
A list with the following syntax:
list(
Errors = list(
list(
TagKey = "string",
Code = "string",
Message = "string"
)
)
)
Request syntax¶
svc$update_cost_allocation_tags_status(
CostAllocationTagsStatus = list(
list(
TagKey = "string",
Status = "Active"|"Inactive"
)
)
)