Amazon Data Exchange · Capability

AWS Data Exchange API — Event Actions

AWS Data Exchange API — Event Actions. 5 operations. Lead operation: List Event Actions. Self-contained Naftiko capability covering one Amazon Data Exchange business surface.

Run with Naftiko Amazon Data ExchangeEvent Actions

What You Can Do

GET
Listeventactions — List Event Actions
/v1/v1/event-actions
POST
Createeventaction — Create Event Action
/v1/v1/event-actions
GET
Geteventaction — Get Event Action
/v1/v1/event-actions/{eventactionid}
PATCH
Updateeventaction — Update Event Action
/v1/v1/event-actions/{eventactionid}
DELETE
Deleteeventaction — Delete Event Action
/v1/v1/event-actions/{eventactionid}

MCP Tools

list-event-actions

List Event Actions

read-only idempotent
create-event-action

Create Event Action

get-event-action

Get Event Action

read-only idempotent
update-event-action

Update Event Action

idempotent
delete-event-action

Delete Event Action

idempotent

Capability Spec

amazon-data-exchange-event-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AWS Data Exchange API — Event Actions
  description: 'AWS Data Exchange API — Event Actions. 5 operations. Lead operation: List Event Actions. Self-contained Naftiko
    capability covering one Amazon Data Exchange business surface.'
  tags:
  - Amazon Data Exchange
  - Event Actions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_DATA_EXCHANGE_API_KEY: AMAZON_DATA_EXCHANGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-data-exchange-event-actions
    baseUri: https://dataexchange.amazonaws.com
    description: AWS Data Exchange API — Event Actions business capability. Self-contained, no shared references.
    resources:
    - name: v1-event-actions
      path: /v1/event-actions
      operations:
      - name: listeventactions
        method: GET
        description: List Event Actions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: maxResults
          in: query
          type: integer
        - name: nextToken
          in: query
          type: string
        - name: eventSourceToken
          in: query
          type: string
      - name: createeventaction
        method: POST
        description: Create Event Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-event-actions-EventActionId
      path: /v1/event-actions/{EventActionId}
      operations:
      - name: geteventaction
        method: GET
        description: Get Event Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: EventActionId
          in: path
          type: string
          required: true
      - name: updateeventaction
        method: PATCH
        description: Update Event Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: EventActionId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteeventaction
        method: DELETE
        description: Delete Event Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: EventActionId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_DATA_EXCHANGE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-data-exchange-event-actions-rest
    port: 8080
    description: REST adapter for AWS Data Exchange API — Event Actions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/event-actions
      name: v1-event-actions
      description: REST surface for v1-event-actions.
      operations:
      - method: GET
        name: listeventactions
        description: List Event Actions
        call: amazon-data-exchange-event-actions.listeventactions
        with:
          maxResults: rest.maxResults
          nextToken: rest.nextToken
          eventSourceToken: rest.eventSourceToken
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createeventaction
        description: Create Event Action
        call: amazon-data-exchange-event-actions.createeventaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/event-actions/{eventactionid}
      name: v1-event-actions-eventactionid
      description: REST surface for v1-event-actions-EventActionId.
      operations:
      - method: GET
        name: geteventaction
        description: Get Event Action
        call: amazon-data-exchange-event-actions.geteventaction
        with:
          EventActionId: rest.EventActionId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateeventaction
        description: Update Event Action
        call: amazon-data-exchange-event-actions.updateeventaction
        with:
          EventActionId: rest.EventActionId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteeventaction
        description: Delete Event Action
        call: amazon-data-exchange-event-actions.deleteeventaction
        with:
          EventActionId: rest.EventActionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-data-exchange-event-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for AWS Data Exchange API — Event Actions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-event-actions
      description: List Event Actions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-data-exchange-event-actions.listeventactions
      with:
        maxResults: tools.maxResults
        nextToken: tools.nextToken
        eventSourceToken: tools.eventSourceToken
      outputParameters:
      - type: object
        mapping: $.
    - name: create-event-action
      description: Create Event Action
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-data-exchange-event-actions.createeventaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-event-action
      description: Get Event Action
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-data-exchange-event-actions.geteventaction
      with:
        EventActionId: tools.EventActionId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-event-action
      description: Update Event Action
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: amazon-data-exchange-event-actions.updateeventaction
      with:
        EventActionId: tools.EventActionId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-event-action
      description: Delete Event Action
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-data-exchange-event-actions.deleteeventaction
      with:
        EventActionId: tools.EventActionId
      outputParameters:
      - type: object
        mapping: $.