Amazon Security Hub · Arazzo Workflow

Amazon Security Hub Review Insight Findings

Version 1.0.0

List a saved insight and drill into the findings behind it.

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

Provider

amazon-security-hub

Workflows

review-insight-findings
Fetch an insight definition, then query the findings behind it.
Retrieves a saved insight by its ARN to read its filter definition, then queries the findings store to inspect the records the insight aggregates.
2 steps inputs: insightArn, maxResults, productName outputs: findings, insightName
1
getInsight
Retrieve the saved insight by ARN so its filter and grouping attribute can be read before drilling into the findings it aggregates.
2
drillIntoFindings
Query the findings store using a filter aligned to the insight so the operator can inspect the records that drive the insight's aggregation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Security Hub Review Insight Findings
  summary: List a saved insight and drill into the findings behind it.
  description: >-
    Insights are saved filtered views over the findings store. This workflow
    fetches a specific insight by ARN to read its filter and grouping
    definition, then runs a findings query so the operator can inspect the
    underlying records that the insight aggregates. The specification does not
    expose a dedicated insight-results operation, so the supported drill-down
    path is to query findings directly; this adaptation is noted here. 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: insightsApi
  url: ../openapi/amazon-security-hub-insights-api-openapi.yml
  type: openapi
workflows:
- workflowId: review-insight-findings
  summary: Fetch an insight definition, then query the findings behind it.
  description: >-
    Retrieves a saved insight by its ARN to read its filter definition, then
    queries the findings store to inspect the records the insight aggregates.
  inputs:
    type: object
    required:
    - insightArn
    - productName
    properties:
      insightArn:
        type: string
        description: The ARN of the saved insight to retrieve.
      productName:
        type: string
        description: The product name value used to filter the underlying findings query.
      maxResults:
        type: integer
        description: The maximum number of findings to return for the insight drill-down.
        default: 100
  steps:
  - stepId: getInsight
    description: >-
      Retrieve the saved insight by ARN so its filter and grouping attribute can
      be read before drilling into the findings it aggregates.
    operationId: GetInsights
    requestBody:
      contentType: application/json
      payload:
        InsightArns:
        - $inputs.insightArn
        MaxResults: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      insightArn: $response.body#/Insights/0/InsightArn
      insightName: $response.body#/Insights/0/Name
      groupByAttribute: $response.body#/Insights/0/GroupByAttribute
  - stepId: drillIntoFindings
    description: >-
      Query the findings store using a filter aligned to the insight so the
      operator can inspect the records that drive the insight's aggregation.
    operationId: GetFindings
    requestBody:
      contentType: application/json
      payload:
        Filters:
          ProductName:
          - Value: $inputs.productName
            Comparison: EQUALS
        MaxResults: $inputs.maxResults
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      findings: $response.body#/Findings
      nextToken: $response.body#/NextToken
  outputs:
    insightName: $steps.getInsight.outputs.insightName
    findings: $steps.drillIntoFindings.outputs.findings

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-review-insight-findings-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.