Amazon DataZone · Capability

Amazon DataZone API — Assets

Amazon DataZone API — Assets. 3 operations. Lead operation: Create Asset. Self-contained Naftiko capability covering one Amazon Datazone business surface.

Run with Naftiko Amazon DatazoneAssets

What You Can Do

POST
Createasset — Create Asset
/v1/v2/domains/{domainidentifier}/assets
GET
Getasset — Get Asset
/v1/v2/domains/{domainidentifier}/assets/{identifier}
DELETE
Deleteasset — Delete Asset
/v1/v2/domains/{domainidentifier}/assets/{identifier}

MCP Tools

create-asset

Create Asset

get-asset

Get Asset

read-only idempotent
delete-asset

Delete Asset

idempotent

Capability Spec

amazon-datazone-assets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon DataZone API — Assets
  description: 'Amazon DataZone API — Assets. 3 operations. Lead operation: Create Asset. Self-contained Naftiko capability
    covering one Amazon Datazone business surface.'
  tags:
  - Amazon Datazone
  - Assets
  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-assets
    baseUri: https://datazone.amazonaws.com
    description: Amazon DataZone API — Assets business capability. Self-contained, no shared references.
    resources:
    - name: v2-domains-domainIdentifier-assets
      path: /v2/domains/{domainIdentifier}/assets
      operations:
      - name: createasset
        method: POST
        description: Create Asset
        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-assets-identifier
      path: /v2/domains/{domainIdentifier}/assets/{identifier}
      operations:
      - name: getasset
        method: GET
        description: Get Asset
        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: deleteasset
        method: DELETE
        description: Delete Asset
        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-assets-rest
    port: 8080
    description: REST adapter for Amazon DataZone API — Assets. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v2/domains/{domainidentifier}/assets
      name: v2-domains-domainidentifier-assets
      description: REST surface for v2-domains-domainIdentifier-assets.
      operations:
      - method: POST
        name: createasset
        description: Create Asset
        call: amazon-datazone-assets.createasset
        with:
          domainIdentifier: rest.domainIdentifier
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/domains/{domainidentifier}/assets/{identifier}
      name: v2-domains-domainidentifier-assets-identifier
      description: REST surface for v2-domains-domainIdentifier-assets-identifier.
      operations:
      - method: GET
        name: getasset
        description: Get Asset
        call: amazon-datazone-assets.getasset
        with:
          domainIdentifier: rest.domainIdentifier
          identifier: rest.identifier
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteasset
        description: Delete Asset
        call: amazon-datazone-assets.deleteasset
        with:
          domainIdentifier: rest.domainIdentifier
          identifier: rest.identifier
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-datazone-assets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon DataZone API — Assets. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: create-asset
      description: Create Asset
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-datazone-assets.createasset
      with:
        domainIdentifier: tools.domainIdentifier
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-asset
      description: Get Asset
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-datazone-assets.getasset
      with:
        domainIdentifier: tools.domainIdentifier
        identifier: tools.identifier
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-asset
      description: Delete Asset
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-datazone-assets.deleteasset
      with:
        domainIdentifier: tools.domainIdentifier
        identifier: tools.identifier
      outputParameters:
      - type: object
        mapping: $.