BillingDetails

An object that describes workflow billing details.

OrchestrationServerlessState MachineWorkflow

Properties

Name Type Description
billedMemoryUsedInMB object
billedDurationInMilliseconds object
View JSON Schema on GitHub

JSON Schema

amazon-step-functions-billing-details-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}