ExperimentTemplateStopCondition

Stop condition for an experiment

Chaos EngineeringDevOpsFault InjectionResilience Testing

Properties

Name Type Description
source string Stop condition source
value string CloudWatch alarm ARN or none
View JSON Schema on GitHub

JSON Schema

amazon-fis-experiment-template-stop-condition-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-experiment-template-stop-condition-schema.json",
  "title": "ExperimentTemplateStopCondition",
  "description": "Stop condition for an experiment",
  "type": "object",
  "properties": {
    "source": {
      "type": "string",
      "description": "Stop condition source",
      "example": "aws:cloudwatch:alarm"
    },
    "value": {
      "type": "string",
      "description": "CloudWatch alarm ARN or none",
      "example": "arn:aws:cloudwatch:us-east-1:123456789012:alarm/my-alarm"
    }
  }
}