Amazon S3 · Arazzo Workflow

Amazon S3 Provision a Secure Bucket

Version 1.0.0

Create a bucket, enable versioning, and apply default encryption.

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

Provider

amazon-s3

Workflows

provision-secure-bucket
Create a bucket then enable versioning and default encryption on it.
Creates a bucket in the requested Region, enables versioning, and applies a default encryption rule.
3 steps inputs: bucket, encryptionRules, region outputs: bucketLocation
1
createBucket
Create the bucket in the requested Region.
2
enableVersioning
Enable versioning on the new bucket so object overwrites are retained as versions.
3
applyEncryption
Apply a default server-side encryption rule so new objects are encrypted at rest.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon S3 Provision a Secure Bucket
  summary: Create a bucket, enable versioning, and apply default encryption.
  description: >-
    A hardening flow that stands up a bucket ready for sensitive data. The
    workflow creates the bucket, enables versioning so object history is
    retained, and applies a default server-side encryption rule so new objects
    are encrypted at rest. The result is a bucket configured with two of the most
    common data-protection guardrails. 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
  x-realizes-capability-ids:
  - BC-600.50
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-600.50
      capability_name: IT Infrastructure Management
      spec: amazon-s3-buckets-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: bucketConfigurationApi
  url: ../openapi/amazon-s3-bucket-configuration-api-openapi.yml
  type: openapi
- name: bucketsApi
  url: ../openapi/amazon-s3-buckets-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-secure-bucket
  summary: Create a bucket then enable versioning and default encryption on it.
  description: >-
    Creates a bucket in the requested Region, enables versioning, and applies a
    default encryption rule.
  inputs:
    type: object
    required:
    - bucket
    - region
    - encryptionRules
    properties:
      bucket:
        type: string
        description: The bucket name to create.
      region:
        type: string
        description: The AWS Region (LocationConstraint) for the bucket.
      encryptionRules:
        type: array
        description: The default-encryption Rule list to apply to the bucket.
        items:
          type: object
          properties:
            ApplyServerSideEncryptionByDefault:
              type: object
              properties:
                SSEAlgorithm:
                  type: string
            BucketKeyEnabled:
              type: boolean
  steps:
  - stepId: createBucket
    description: >-
      Create the bucket in the requested Region.
    operationId: CreateBucket
    parameters:
    - name: Bucket
      in: path
      value: $inputs.bucket
    - name: x-amz-acl
      in: header
      value: private
    requestBody:
      contentType: application/xml
      payload:
        LocationConstraint: $inputs.region
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      location: $response.header.Location
  - stepId: enableVersioning
    description: >-
      Enable versioning on the new bucket so object overwrites are retained as
      versions.
    operationId: PutBucketVersioning
    parameters:
    - name: Bucket
      in: path
      value: $inputs.bucket
    requestBody:
      contentType: application/xml
      payload:
        Status: Enabled
    successCriteria:
    - condition: $statusCode == 200
  - stepId: applyEncryption
    description: >-
      Apply a default server-side encryption rule so new objects are encrypted at
      rest.
    operationId: PutBucketEncryption
    parameters:
    - name: Bucket
      in: path
      value: $inputs.bucket
    requestBody:
      contentType: application/xml
      payload:
        Rule: $inputs.encryptionRules
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    bucketLocation: $steps.createBucket.outputs.location

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-provision-secure-bucket-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.