AWS App Mesh · Schema

Duration

An object that represents a duration of time.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
unit object
value object
View JSON Schema on GitHub

JSON Schema

app-mesh-duration-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "unit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DurationUnit"
        },
        {
          "description": "A unit of time."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DurationValue"
        },
        {
          "description": "A number of time units."
        }
      ]
    }
  },
  "description": "An object that represents a duration of time.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-duration-schema.json",
  "title": "Duration"
}