AWS Fault Injection Simulator API — Experiment Templates

AWS Fault Injection Simulator API — Experiment Templates. 5 operations. Lead operation: AWS Fault Injection Simulator Create Experiment Template. Self-contained Naftiko capability covering one Amazon Fault Injection Simulator business surface.

Run with Naftiko Amazon Fault Injection SimulatorExperiment Templates

What You Can Do

POST
Createexperimenttemplate — AWS Fault Injection Simulator Create Experiment Template
/v1/experimenttemplates
GET
Listexperimenttemplates — AWS Fault Injection Simulator List Experiment Templates
/v1/experimenttemplates
GET
Getexperimenttemplate — AWS Fault Injection Simulator Get Experiment Template
/v1/experimenttemplates/{id}
PATCH
Updateexperimenttemplate — AWS Fault Injection Simulator Update Experiment Template
/v1/experimenttemplates/{id}
DELETE
Deleteexperimenttemplate — AWS Fault Injection Simulator Delete Experiment Template
/v1/experimenttemplates/{id}

MCP Tools

aws-fault-injection-simulator-create

AWS Fault Injection Simulator Create Experiment Template

aws-fault-injection-simulator-list

AWS Fault Injection Simulator List Experiment Templates

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

AWS Fault Injection Simulator Get Experiment Template

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

AWS Fault Injection Simulator Update Experiment Template

idempotent
aws-fault-injection-simulator-delete

AWS Fault Injection Simulator Delete Experiment Template

idempotent

Capability Spec

amazon-fis-experiment-templates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AWS Fault Injection Simulator API — Experiment Templates
  description: 'AWS Fault Injection Simulator API — Experiment Templates. 5 operations. Lead operation: AWS Fault Injection
    Simulator Create Experiment Template. Self-contained Naftiko capability covering one Amazon Fault Injection Simulator
    business surface.'
  tags:
  - Amazon Fault Injection Simulator
  - Experiment Templates
  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-experiment-templates
    baseUri: https://fis.{region}.amazonaws.com
    description: AWS Fault Injection Simulator API — Experiment Templates business capability. Self-contained, no shared references.
    resources:
    - name: experimentTemplates
      path: /experimentTemplates
      operations:
      - name: createexperimenttemplate
        method: POST
        description: AWS Fault Injection Simulator Create Experiment Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listexperimenttemplates
        method: GET
        description: AWS Fault Injection Simulator List Experiment Templates
        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: experimentTemplates-id
      path: /experimentTemplates/{id}
      operations:
      - name: getexperimenttemplate
        method: GET
        description: AWS Fault Injection Simulator Get Experiment Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Experiment template ID
          required: true
      - name: updateexperimenttemplate
        method: PATCH
        description: AWS Fault Injection Simulator Update Experiment Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Template ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteexperimenttemplate
        method: DELETE
        description: AWS Fault Injection Simulator Delete Experiment Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Template ID
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_FAULT_INJECTION_SIMULATOR_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-fis-experiment-templates-rest
    port: 8080
    description: REST adapter for AWS Fault Injection Simulator API — Experiment Templates. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/experimenttemplates
      name: experimenttemplates
      description: REST surface for experimentTemplates.
      operations:
      - method: POST
        name: createexperimenttemplate
        description: AWS Fault Injection Simulator Create Experiment Template
        call: amazon-fis-experiment-templates.createexperimenttemplate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listexperimenttemplates
        description: AWS Fault Injection Simulator List Experiment Templates
        call: amazon-fis-experiment-templates.listexperimenttemplates
        with:
          maxResults: rest.maxResults
          nextToken: rest.nextToken
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/experimenttemplates/{id}
      name: experimenttemplates-id
      description: REST surface for experimentTemplates-id.
      operations:
      - method: GET
        name: getexperimenttemplate
        description: AWS Fault Injection Simulator Get Experiment Template
        call: amazon-fis-experiment-templates.getexperimenttemplate
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateexperimenttemplate
        description: AWS Fault Injection Simulator Update Experiment Template
        call: amazon-fis-experiment-templates.updateexperimenttemplate
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteexperimenttemplate
        description: AWS Fault Injection Simulator Delete Experiment Template
        call: amazon-fis-experiment-templates.deleteexperimenttemplate
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-fis-experiment-templates-mcp
    port: 9090
    transport: http
    description: MCP adapter for AWS Fault Injection Simulator API — Experiment Templates. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: aws-fault-injection-simulator-create
      description: AWS Fault Injection Simulator Create Experiment Template
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-fis-experiment-templates.createexperimenttemplate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: aws-fault-injection-simulator-list
      description: AWS Fault Injection Simulator List Experiment Templates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-fis-experiment-templates.listexperimenttemplates
      with:
        maxResults: tools.maxResults
        nextToken: tools.nextToken
      outputParameters:
      - type: object
        mapping: $.
    - name: aws-fault-injection-simulator-get
      description: AWS Fault Injection Simulator Get Experiment Template
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-fis-experiment-templates.getexperimenttemplate
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: aws-fault-injection-simulator-update
      description: AWS Fault Injection Simulator Update Experiment Template
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: amazon-fis-experiment-templates.updateexperimenttemplate
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: aws-fault-injection-simulator-delete
      description: AWS Fault Injection Simulator Delete Experiment Template
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-fis-experiment-templates.deleteexperimenttemplate
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.