Skip to content

UpdateCostAllocationTagsStatus

Source: src/AWS/CostExplorer/UpdateCostAllocationTagsStatus.ts

Runtime binding for ce:UpdateCostAllocationTagsStatus.

Activate or deactivate cost allocation tag keys in bulk (max 20 per call). Activation makes the tag usable in cost queries, categories, and CUR reports. Provide the implementation with Effect.provide(AWS.CostExplorer.UpdateCostAllocationTagsStatusHttp).

// init — account-level binding takes no resource
const updateCostAllocationTagsStatus = yield* AWS.CostExplorer.UpdateCostAllocationTagsStatus();
// runtime
yield* updateCostAllocationTagsStatus({
CostAllocationTagsStatus: [{ TagKey: "team", Status: "Active" }],
});