Amazon Security Lake · Arazzo Workflow

Amazon Security Lake Rename Subscriber

Version 1.0.0

Find a subscriber by name, confirm it, and update its name and description.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data LakeSecuritySIEMThreat DetectionArazzoWorkflows

Provider

amazon-security-lake

Workflows

rename-subscriber
Resolve a subscriber from the account list and update its name and description.
Lists subscribers, branches on whether any exist, reads the first one back, and patches its name and description.
3 steps inputs: newSubscriberDescription, newSubscriberName outputs: subscriberId, subscriberName, subscriberStatus
1
listSubscribers
List the subscribers for the account and capture the first subscriber's ID to update.
2
getSubscriber
Read the resolved subscriber back by ID to confirm it exists before updating its metadata.
3
updateSubscriber
Apply the new name and description to the subscriber.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Security Lake Rename Subscriber
  summary: Find a subscriber by name, confirm it, and update its name and description.
  description: >-
    Locates an existing Amazon Security Lake subscriber and updates its display
    metadata. The workflow lists subscribers for the account, branches on
    whether any subscribers exist, reads the first subscriber back by ID to
    confirm it, and then updates the subscriber's name and description. 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: subscribersApi
  url: ../openapi/amazon-security-lake-subscribers-api-openapi.yml
  type: openapi
workflows:
- workflowId: rename-subscriber
  summary: Resolve a subscriber from the account list and update its name and description.
  description: >-
    Lists subscribers, branches on whether any exist, reads the first one back,
    and patches its name and description.
  inputs:
    type: object
    required:
    - newSubscriberName
    properties:
      newSubscriberName:
        type: string
        description: The new name to apply to the subscriber.
      newSubscriberDescription:
        type: string
        description: The new description to apply to the subscriber.
  steps:
  - stepId: listSubscribers
    description: >-
      List the subscribers for the account and capture the first subscriber's
      ID to update.
    operationId: ListSubscribers
    parameters:
    - name: maxResults
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      subscriberId: $response.body#/subscribers/0/subscriberId
    onSuccess:
    - name: subscriberFound
      type: goto
      stepId: getSubscriber
      criteria:
      - context: $response.body
        condition: $.subscribers.length > 0
        type: jsonpath
    - name: noSubscribers
      type: end
      criteria:
      - context: $response.body
        condition: $.subscribers.length == 0
        type: jsonpath
  - stepId: getSubscriber
    description: >-
      Read the resolved subscriber back by ID to confirm it exists before
      updating its metadata.
    operationId: GetSubscriber
    parameters:
    - name: subscriberId
      in: path
      value: $steps.listSubscribers.outputs.subscriberId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      subscriberId: $response.body#/subscriberId
      subscriberStatus: $response.body#/subscriberStatus
  - stepId: updateSubscriber
    description: >-
      Apply the new name and description to the subscriber.
    operationId: UpdateSubscriber
    parameters:
    - name: subscriberId
      in: path
      value: $steps.getSubscriber.outputs.subscriberId
    requestBody:
      contentType: application/json
      payload:
        subscriberName: $inputs.newSubscriberName
        subscriberDescription: $inputs.newSubscriberDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      subscriberId: $response.body#/subscriberId
      subscriberName: $response.body#/subscriberName
      subscriberStatus: $response.body#/subscriberStatus
  outputs:
    subscriberId: $steps.updateSubscriber.outputs.subscriberId
    subscriberName: $steps.updateSubscriber.outputs.subscriberName
    subscriberStatus: $steps.updateSubscriber.outputs.subscriberStatus

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-security-lake-rename-subscriber-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.