{% if result %} {% if result.cost_estimate %}

Estimated AWS cost

{{ result.cost_estimate.active_record_count }} active records
{% for backend in result.cost_estimate.backends %} {% else %} {% endfor %}
Service Requests Input Output Total
{{ backend.backend_id|replace('_', ' ') |title }} {{ backend.request_count }} {{ '$%.6f'|format(backend.estimated_input_cost_usd) if backend.estimated_input_cost_usd is not none else '—' }} {{ '$%.6f'|format(backend.estimated_output_cost_usd) if backend.estimated_output_cost_usd is not none else '—' }} {{ '$%.6f'|format(backend.estimated_total_cost_usd) if backend.estimated_total_cost_usd is not none else 'Not priced' }}
No paid AWS service is enabled.
Estimated total {{ '$%.6f'|format(result.cost_estimate.estimated_total_cost_usd) if result.cost_estimate.estimated_total_cost_usd is not none else 'Not priced' }}
{% endif %} {% endif %}