SafetyLever

A safety mechanism that can stop or prevent FIS experiments

Chaos EngineeringDevOpsFault InjectionResilience Testing

Properties

Name Type Description
id string Safety lever ID
arn string Safety lever ARN
state object
View JSON Schema on GitHub

JSON Schema

amazon-fis-safety-lever-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-fault-injection-simulator/refs/heads/main/json-schema/amazon-fis-safety-lever-schema.json",
  "title": "SafetyLever",
  "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"
    }
  }
}