Amazon Fis Safety Lever Structure

A safety mechanism that can stop or prevent FIS experiments

Type: object Properties: 3
Chaos EngineeringDevOpsFault InjectionResilience Testing

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

Properties

id arn state

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-structure.json",
  "description": "A safety mechanism that can stop or prevent FIS experiments",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Safety lever ID",
      "example": "SL123"
    },
    "arn": {
      "type": "string",
      "description": "Safety lever ARN",
      "example": "arn:aws:fis:us-east-1:123456789012:safety-lever/SL123"
    },
    "state": {
      "$ref": "#/components/schemas/SafetyLeverState"
    }
  },
  "name": "SafetyLever"
}