Amazon Fis Safety Lever State Structure

State of a safety lever

Type: object Properties: 2
Chaos EngineeringDevOpsFault InjectionResilience Testing

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

Properties

status reason

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-fault-injection-simulator/refs/heads/main/json-structure/amazon-fis-safety-lever-state-structure.json",
  "description": "State of a safety lever",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Safety lever status",
      "example": "engaged",
      "enum": [
        "engaged",
        "disengaged",
        "engaging",
        "disengaging"
      ]
    },
    "reason": {
      "type": "string",
      "description": "Status reason",
      "example": "No active experiments"
    }
  },
  "name": "SafetyLeverState"
}