list_aws_cost_detail

Column Type
account_id BLOB
amortized_cost_amount BLOB
amortized_cost_unit BLOB
blended_cost_amount BLOB
estimated BLOB
unblended_cost_unit BLOB
net_unblended_cost_unit BLOB
linked_account_id BLOB
canonical_hosted_zone_id BLOB
net_amortized_cost_amount BLOB
net_unblended_cost_amount BLOB
period_start BLOB
period_end BLOB
region BLOB
usage_quantity_amount BLOB
usage_quantity_unit BLOB
unblended_cost_amount BLOB

SQL DDL

CREATE VIEW list_aws_cost_detail AS
SELECT 
account_id,
amortized_cost_amount,
amortized_cost_unit,
blended_cost_amount,
estimated,
unblended_cost_unit,
net_unblended_cost_unit,
linked_account_id,
canonical_hosted_zone_id,
net_amortized_cost_amount,
net_unblended_cost_amount,
period_start,
period_end,
region,
usage_quantity_amount,
usage_quantity_unit,
unblended_cost_amount
FROM ur_transform_list_aws_cost_detail
;