AWS Fault Injection Simulator API — Experiments

AWS Fault Injection Simulator API — Experiments. 4 operations. Lead operation: AWS Fault Injection Simulator Start Experiment. Self-contained Naftiko capability covering one Amazon Fault Injection Simulator business surface.

Run with Naftiko Amazon Fault Injection SimulatorExperiments

What You Can Do

POST
Startexperiment — AWS Fault Injection Simulator Start Experiment
/v1/experiments
GET
Listexperiments — AWS Fault Injection Simulator List Experiments
/v1/experiments
GET
Getexperiment — AWS Fault Injection Simulator Get Experiment
/v1/experiments/{id}
DELETE
Stopexperiment — AWS Fault Injection Simulator Stop Experiment
/v1/experiments/{id}

MCP Tools

aws-fault-injection-simulator-start

AWS Fault Injection Simulator Start Experiment

aws-fault-injection-simulator-list

AWS Fault Injection Simulator List Experiments

read-only idempotent
aws-fault-injection-simulator-get

AWS Fault Injection Simulator Get Experiment

read-only idempotent
aws-fault-injection-simulator-stop

AWS Fault Injection Simulator Stop Experiment

idempotent

Capability Spec

amazon-fis-experiments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AWS Fault Injection Simulator API — Experiments
  description: 'AWS Fault Injection Simulator API — Experiments. 4 operations. Lead operation: AWS Fault Injection Simulator
    Start Experiment. Self-contained Naftiko capability covering one Amazon Fault Injection Simulator business surface.'
  tags:
  - Amazon Fault Injection Simulator
  - Experiments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_FAULT_INJECTION_SIMULATOR_API_KEY: AMAZON_FAULT_INJECTION_SIMULATOR_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-fis-experiments
    baseUri: https://fis.{region}.amazonaws.com
    description: AWS Fault Injection Simulator API — Experiments business capability. Self-contained, no shared references.
    resources:
    - name: experiments
      path: /experiments
      operations:
      - name: startexperiment
        method: POST
        description: AWS Fault Injection Simulator Start Experiment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listexperiments
        method: GET
        description: AWS Fault Injection Simulator List Experiments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: maxResults
          in: query
          type: integer
          description: Maximum results
        - name: nextToken
          in: query
          type: string
          description: Pagination token
        - name: experimentTemplateId
          in: query
          type: string
          description: Filter by template ID
    - name: experiments-id
      path: /experiments/{id}
      operations:
      - name: getexperiment
        method: GET
        description: AWS Fault Injection Simulator Get Experiment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Experiment ID
          required: true
      - name: stopexperiment
        method: DELETE
        description: AWS Fault Injection Simulator Stop Experiment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Experiment ID
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_FAULT_INJECTION_SIMULATOR_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-fis-experiments-rest
    port: 8080
    description: REST adapter for AWS Fault Injection Simulator API — Experiments. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/experiments
      name: experiments
      description: REST surface for experiments.
      operations:
      - method: POST
        name: startexperiment
        description: AWS Fault Injection Simulator Start Experiment
        call: amazon-fis-experiments.startexperiment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listexperiments
        description: AWS Fault Injection Simulator List Experiments
        call: amazon-fis-experiments.listexperiments
        with:
          maxResults: rest.maxResults
          nextToken: rest.nextToken
          experimentTemplateId: rest.experimentTemplateId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/experiments/{id}
      name: experiments-id
      description: REST surface for experiments-id.
      operations:
      - method: GET
        name: getexperiment
        description: AWS Fault Injection Simulator Get Experiment
        call: amazon-fis-experiments.getexperiment
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: stopexperiment
        description: AWS Fault Injection Simulator Stop Experiment
        call: amazon-fis-experiments.stopexperiment
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-fis-experiments-mcp
    port: 9090
    transport: http
    description: MCP adapter for AWS Fault Injection Simulator API — Experiments. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: aws-fault-injection-simulator-start
      description: AWS Fault Injection Simulator Start Experiment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-fis-experiments.startexperiment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: aws-fault-injection-simulator-list
      description: AWS Fault Injection Simulator List Experiments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-fis-experiments.listexperiments
      with:
        maxResults: tools.maxResults
        nextToken: tools.nextToken
        experimentTemplateId: tools.experimentTemplateId
      outputParameters:
      - type: object
        mapping: $.
    - name: aws-fault-injection-simulator-get
      description: AWS Fault Injection Simulator Get Experiment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-fis-experiments.getexperiment
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: aws-fault-injection-simulator-stop
      description: AWS Fault Injection Simulator Stop Experiment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-fis-experiments.stopexperiment
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.