Amazon S3 · Arazzo Workflow

Amazon S3 Start and Abort a Multipart Upload

Version 1.0.0

Initiate a multipart upload then abort it to release any staged storage.

1 workflow 1 source API 1 provider
View Spec View on GitHub ArchiveBackupCloud StorageData StorageObject StorageScalable StorageArazzoWorkflows

Provider

amazon-s3

Workflows

start-and-abort-multipart-upload
Create a multipart upload then abort it by UploadId.
Initiates a multipart upload and aborts it, releasing the storage of any staged parts.
2 steps inputs: bucket, objectKey outputs: uploadId
1
createMultipartUpload
Initiate the multipart upload and capture the UploadId to abort.
2
abortMultipartUpload
Abort the multipart upload by its UploadId. S3 responds with 204 No Content and frees any staged parts.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon S3 Start and Abort a Multipart Upload
  summary: Initiate a multipart upload then abort it to release any staged storage.
  description: >-
    A cleanup flow for abandoned multipart uploads in Amazon S3. The workflow
    initiates a multipart upload to obtain an UploadId and then immediately
    aborts that upload, which frees the storage consumed by any previously
    uploaded parts. This is the recommended way to cancel an upload that will not
    be completed. Every step spells out its request inline so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: multipartUploadApi
  url: ../openapi/amazon-s3-multipart-upload-api-openapi.yml
  type: openapi
workflows:
- workflowId: start-and-abort-multipart-upload
  summary: Create a multipart upload then abort it by UploadId.
  description: >-
    Initiates a multipart upload and aborts it, releasing the storage of any
    staged parts.
  inputs:
    type: object
    required:
    - bucket
    - objectKey
    properties:
      bucket:
        type: string
        description: The bucket the multipart upload targets.
      objectKey:
        type: string
        description: The key the multipart upload targets.
  steps:
  - stepId: createMultipartUpload
    description: >-
      Initiate the multipart upload and capture the UploadId to abort.
    operationId: CreateMultipartUpload
    parameters:
    - name: Bucket
      in: path
      value: $inputs.bucket
    - name: Key+
      in: path
      value: $inputs.objectKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      uploadId: $response.body#/UploadId
  - stepId: abortMultipartUpload
    description: >-
      Abort the multipart upload by its UploadId. S3 responds with 204 No Content
      and frees any staged parts.
    operationId: AbortMultipartUpload
    parameters:
    - name: Bucket
      in: path
      value: $inputs.bucket
    - name: Key+
      in: path
      value: $inputs.objectKey
    - name: uploadId
      in: query
      value: $steps.createMultipartUpload.outputs.uploadId
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    uploadId: $steps.createMultipartUpload.outputs.uploadId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/amazon-s3-abort-multipart-upload-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.