Amazon Fis Experiment Template Action Structure

Action definition in an experiment template

Type: object Properties: 5
Chaos EngineeringDevOpsFault InjectionResilience Testing

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

Properties

actionId description parameters targets startAfter

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-experiment-template-action-structure.json",
  "description": "Action definition in an experiment template",
  "type": "object",
  "properties": {
    "actionId": {
      "type": "string",
      "description": "FIS action ID",
      "example": "aws:ec2:stop-instances"
    },
    "description": {
      "type": "string",
      "description": "Action description"
    },
    "parameters": {
      "type": "object",
      "description": "Action parameters",
      "additionalProperties": {
        "type": "string"
      }
    },
    "targets": {
      "type": "object",
      "description": "Target mappings",
      "additionalProperties": {
        "type": "string"
      }
    },
    "startAfter": {
      "type": "array",
      "description": "Actions that must complete first",
      "items": {
        "type": "string"
      }
    }
  },
  "name": "ExperimentTemplateAction"
}