Amazon Security Hub · Arazzo Workflow

Amazon Security Hub Onboard Product Integration

Version 1.0.0

Enable a partner product integration and verify its findings flow into Security Hub.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ComplianceMonitoringSecurityArazzoWorkflows

Provider

amazon-security-hub

Workflows

onboard-product-integration
Enable a product subscription, then confirm its findings are importing.
Enables the import of findings from a partner product, then verifies the findings are arriving and seeds a finding when none are present yet.
3 steps inputs: productArn, productName, seedFindings outputs: findings, productSubscriptionArn, seededCount
1
enableProduct
Enable the partner product integration so Security Hub begins accepting imported findings from that product.
2
verifyFindings
Query the findings store filtered to the onboarded product to confirm that findings are arriving after the subscription was enabled.
3
seedFindings
Import a seed finding for the product so downstream automation has a record to operate on while the live integration begins populating findings.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Security Hub Onboard Product Integration
  summary: Enable a partner product integration and verify its findings flow into Security Hub.
  description: >-
    Onboards a third-party security product into Security Hub by enabling its
    finding import subscription, then queries the findings store filtered to
    that product to confirm findings are arriving. The flow branches: when the
    product's findings are present it ends successfully, and when none have
    arrived yet it imports a seed finding so downstream automation has a record
    to work with. Each 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: findingsApi
  url: ../openapi/amazon-security-hub-findings-api-openapi.yml
  type: openapi
- name: integrationsApi
  url: ../openapi/amazon-security-hub-integrations-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-product-integration
  summary: Enable a product subscription, then confirm its findings are importing.
  description: >-
    Enables the import of findings from a partner product, then verifies the
    findings are arriving and seeds a finding when none are present yet.
  inputs:
    type: object
    required:
    - productArn
    - productName
    - seedFindings
    properties:
      productArn:
        type: string
        description: The ARN of the partner product to enable finding imports for.
      productName:
        type: string
        description: The product name value used to filter the verification findings query.
      seedFindings:
        type: array
        description: ASFF finding objects to import if the product has no findings yet.
        items:
          type: object
  steps:
  - stepId: enableProduct
    description: >-
      Enable the partner product integration so Security Hub begins accepting
      imported findings from that product.
    operationId: EnableImportFindingsForProduct
    requestBody:
      contentType: application/json
      payload:
        ProductArn: $inputs.productArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      productSubscriptionArn: $response.body#/ProductSubscriptionArn
  - stepId: verifyFindings
    description: >-
      Query the findings store filtered to the onboarded product to confirm that
      findings are arriving after the subscription was enabled.
    operationId: GetFindings
    requestBody:
      contentType: application/json
      payload:
        Filters:
          ProductName:
          - Value: $inputs.productName
            Comparison: EQUALS
        MaxResults: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      findings: $response.body#/Findings
    onSuccess:
    - name: findingsPresent
      type: end
      criteria:
      - context: $response.body
        condition: $.Findings.length > 0
        type: jsonpath
    - name: noFindingsYet
      type: goto
      stepId: seedFindings
      criteria:
      - context: $response.body
        condition: $.Findings.length == 0
        type: jsonpath
  - stepId: seedFindings
    description: >-
      Import a seed finding for the product so downstream automation has a record
      to operate on while the live integration begins populating findings.
    operationId: BatchImportFindings
    requestBody:
      contentType: application/json
      payload:
        Findings: $inputs.seedFindings
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      successCount: $response.body#/SuccessCount
      failedCount: $response.body#/FailedCount
  outputs:
    productSubscriptionArn: $steps.enableProduct.outputs.productSubscriptionArn
    findings: $steps.verifyFindings.outputs.findings
    seededCount: $steps.seedFindings.outputs.successCount

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-hub-onboard-product-integration-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.