Amazon Deadline Cloud · Capability

Amazon Deadline Cloud API — Fleets

Amazon Deadline Cloud API — Fleets. 2 operations. Lead operation: List Fleets. Self-contained Naftiko capability covering one Amazon Deadline Cloud business surface.

Run with Naftiko Amazon Deadline CloudFleets

What You Can Do

GET
Listfleets — List Fleets
/v1/2023-10-12/farms/{farmid}/fleets
POST
Createfleet — Create Fleet
/v1/2023-10-12/farms/{farmid}/fleets

MCP Tools

list-fleets

List Fleets

read-only idempotent
create-fleet

Create Fleet

Capability Spec

amazon-deadline-cloud-fleets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Deadline Cloud API — Fleets
  description: 'Amazon Deadline Cloud API — Fleets. 2 operations. Lead operation: List Fleets. Self-contained Naftiko capability
    covering one Amazon Deadline Cloud business surface.'
  tags:
  - Amazon Deadline Cloud
  - Fleets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_DEADLINE_CLOUD_API_KEY: AMAZON_DEADLINE_CLOUD_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-deadline-cloud-fleets
    baseUri: https://deadline.amazonaws.com
    description: Amazon Deadline Cloud API — Fleets business capability. Self-contained, no shared references.
    resources:
    - name: 2023-10-12-farms-farmId-fleets
      path: /2023-10-12/farms/{farmId}/fleets
      operations:
      - name: listfleets
        method: GET
        description: List Fleets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: farmId
          in: path
          type: string
          required: true
        - name: status
          in: query
          type: string
        - name: maxResults
          in: query
          type: integer
      - name: createfleet
        method: POST
        description: Create Fleet
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: farmId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_DEADLINE_CLOUD_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-deadline-cloud-fleets-rest
    port: 8080
    description: REST adapter for Amazon Deadline Cloud API — Fleets. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/2023-10-12/farms/{farmid}/fleets
      name: 2023-10-12-farms-farmid-fleets
      description: REST surface for 2023-10-12-farms-farmId-fleets.
      operations:
      - method: GET
        name: listfleets
        description: List Fleets
        call: amazon-deadline-cloud-fleets.listfleets
        with:
          farmId: rest.farmId
          status: rest.status
          maxResults: rest.maxResults
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createfleet
        description: Create Fleet
        call: amazon-deadline-cloud-fleets.createfleet
        with:
          farmId: rest.farmId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-deadline-cloud-fleets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Deadline Cloud API — Fleets. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-fleets
      description: List Fleets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-deadline-cloud-fleets.listfleets
      with:
        farmId: tools.farmId
        status: tools.status
        maxResults: tools.maxResults
      outputParameters:
      - type: object
        mapping: $.
    - name: create-fleet
      description: Create Fleet
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-deadline-cloud-fleets.createfleet
      with:
        farmId: tools.farmId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.