Amazon DataZone · Capability

Amazon DataZone API — Projects

Amazon DataZone API — Projects. 5 operations. Lead operation: List Projects. Self-contained Naftiko capability covering one Amazon Datazone business surface.

Run with Naftiko Amazon DatazoneProjects

What You Can Do

GET
Listprojects — List Projects
/v1/v2/domains/{domainidentifier}/projects
POST
Createproject — Create Project
/v1/v2/domains/{domainidentifier}/projects
GET
Getproject — Get Project
/v1/v2/domains/{domainidentifier}/projects/{identifier}
PATCH
Updateproject — Update Project
/v1/v2/domains/{domainidentifier}/projects/{identifier}
DELETE
Deleteproject — Delete Project
/v1/v2/domains/{domainidentifier}/projects/{identifier}

MCP Tools

list-projects

List Projects

read-only idempotent
create-project

Create Project

get-project

Get Project

read-only idempotent
update-project

Update Project

idempotent
delete-project

Delete Project

idempotent

Capability Spec

amazon-datazone-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon DataZone API — Projects
  description: 'Amazon DataZone API — Projects. 5 operations. Lead operation: List Projects. Self-contained Naftiko capability
    covering one Amazon Datazone business surface.'
  tags:
  - Amazon Datazone
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_DATAZONE_API_KEY: AMAZON_DATAZONE_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-datazone-projects
    baseUri: https://datazone.amazonaws.com
    description: Amazon DataZone API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: v2-domains-domainIdentifier-projects
      path: /v2/domains/{domainIdentifier}/projects
      operations:
      - name: listprojects
        method: GET
        description: List Projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: domainIdentifier
          in: path
          type: string
          required: true
        - name: maxResults
          in: query
          type: integer
        - name: nextToken
          in: query
          type: string
      - name: createproject
        method: POST
        description: Create Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: domainIdentifier
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v2-domains-domainIdentifier-projects-identifier
      path: /v2/domains/{domainIdentifier}/projects/{identifier}
      operations:
      - name: getproject
        method: GET
        description: Get Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: domainIdentifier
          in: path
          type: string
          required: true
        - name: identifier
          in: path
          type: string
          required: true
      - name: updateproject
        method: PATCH
        description: Update Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: domainIdentifier
          in: path
          type: string
          required: true
        - name: identifier
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproject
        method: DELETE
        description: Delete Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: domainIdentifier
          in: path
          type: string
          required: true
        - name: identifier
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_DATAZONE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-datazone-projects-rest
    port: 8080
    description: REST adapter for Amazon DataZone API — Projects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/domains/{domainidentifier}/projects
      name: v2-domains-domainidentifier-projects
      description: REST surface for v2-domains-domainIdentifier-projects.
      operations:
      - method: GET
        name: listprojects
        description: List Projects
        call: amazon-datazone-projects.listprojects
        with:
          domainIdentifier: rest.domainIdentifier
          maxResults: rest.maxResults
          nextToken: rest.nextToken
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Create Project
        call: amazon-datazone-projects.createproject
        with:
          domainIdentifier: rest.domainIdentifier
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/domains/{domainidentifier}/projects/{identifier}
      name: v2-domains-domainidentifier-projects-identifier
      description: REST surface for v2-domains-domainIdentifier-projects-identifier.
      operations:
      - method: GET
        name: getproject
        description: Get Project
        call: amazon-datazone-projects.getproject
        with:
          domainIdentifier: rest.domainIdentifier
          identifier: rest.identifier
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateproject
        description: Update Project
        call: amazon-datazone-projects.updateproject
        with:
          domainIdentifier: rest.domainIdentifier
          identifier: rest.identifier
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Delete Project
        call: amazon-datazone-projects.deleteproject
        with:
          domainIdentifier: rest.domainIdentifier
          identifier: rest.identifier
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-datazone-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon DataZone API — Projects. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-projects
      description: List Projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-datazone-projects.listprojects
      with:
        domainIdentifier: tools.domainIdentifier
        maxResults: tools.maxResults
        nextToken: tools.nextToken
      outputParameters:
      - type: object
        mapping: $.
    - name: create-project
      description: Create Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-datazone-projects.createproject
      with:
        domainIdentifier: tools.domainIdentifier
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-project
      description: Get Project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-datazone-projects.getproject
      with:
        domainIdentifier: tools.domainIdentifier
        identifier: tools.identifier
      outputParameters:
      - type: object
        mapping: $.
    - name: update-project
      description: Update Project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: amazon-datazone-projects.updateproject
      with:
        domainIdentifier: tools.domainIdentifier
        identifier: tools.identifier
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-project
      description: Delete Project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-datazone-projects.deleteproject
      with:
        domainIdentifier: tools.domainIdentifier
        identifier: tools.identifier
      outputParameters:
      - type: object
        mapping: $.