Amazon Step Functions · JSON Structure

Amazon Step Functions Billing Details Structure

An object that describes workflow billing details.

Type: object Properties: 2
OrchestrationServerlessState MachineWorkflow

BillingDetails is a JSON Structure definition published by Amazon Step Functions, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

billedMemoryUsedInMB billedDurationInMilliseconds

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-structure/amazon-step-functions-billing-details-structure.json",
  "name": "BillingDetails",
  "description": "An object that describes workflow billing details.",
  "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."
        }
      ]
    }
  }
}