An object that describes workflow billing details.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-schema/amazon-step-functions-billing-details-schema.json", "title": "BillingDetails", "description": "An object that describes workflow billing details.", "type": "object", "properties": { "billedMemoryUsedInMB": { "allOf": [ { "$ref": "#/components/schemas/BilledMemoryUsed" }, { "description": "Billed memory consumption of your workflow, in MB." } ] }, "billedDurationInMilliseconds": { "allOf": [ { "$ref": "#/components/schemas/BilledDuration" }, { "description": "Billed duration of your workflow, in milliseconds." } ] } } }