list_aws_daily_service_cost

Column Type
period_start BLOB
period_end BLOB
service BLOB
region BLOB
amortized_cost_amount BLOB
usage_quantity_amount BLOB
amortized_cost_amount:1 BLOB
account BLOB

SQL DDL

CREATE VIEW list_aws_daily_service_cost AS
SELECT 
acd.period_start,
acd.period_end,
acd.service,
acd.region,
acd.amortized_cost_amount,
acd.usage_quantity_amount,
acd.amortized_cost_amount,
acc.title as account
FROM ur_transform_list_aws_daily_cost_by_service AS acd
INNER JOIN ur_transform_aws_account_info AS acc ON acd.account_id = acc.account_id ORDER BY acd.period_start DESC
;