Amazon Neptune · Arazzo Workflow

Amazon Neptune Analytics Create Private Graph Endpoint

Version 1.0.0

Create a VPC private endpoint for a Neptune Analytics graph and poll until it is AVAILABLE.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQLArazzoWorkflows

Provider

amazon-neptune

Workflows

analytics-private-endpoint
Create a private graph endpoint and poll until it is AVAILABLE.
Confirms the graph is available, creates a private graph endpoint in a VPC, and polls the endpoint until AVAILABLE.
3 steps inputs: graphIdentifier, subnetIds, vpcId, vpcSecurityGroupIds outputs: endpointVpcId, status, vpcEndpointId
1
confirmGraph
Confirm the target graph exists and is AVAILABLE before attaching a private endpoint.
2
createEndpoint
Create a private graph endpoint in the supplied VPC and subnets.
3
pollEndpoint
Poll the private endpoint by its VPC id. Retry while it is CREATING and finish once its status is AVAILABLE.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Neptune Analytics Create Private Graph Endpoint
  summary: Create a VPC private endpoint for a Neptune Analytics graph and poll until it is AVAILABLE.
  description: >-
    Wires a Neptune Analytics graph into a VPC so it can be reached without going
    over the public internet. The workflow confirms the target graph is AVAILABLE,
    creates a private graph endpoint in the supplied VPC and subnets, and then
    polls the endpoint by its VPC id until its status is AVAILABLE. The poll loop
    uses a retry delay to handle the CREATING state. 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-neptune-graphs-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: graphsApi
  url: ../openapi/amazon-neptune-graphs-api-openapi.yml
  type: openapi
- name: privateGraphEndpointsApi
  url: ../openapi/amazon-neptune-private-graph-endpoints-api-openapi.yml
  type: openapi
workflows:
- workflowId: analytics-private-endpoint
  summary: Create a private graph endpoint and poll until it is AVAILABLE.
  description: >-
    Confirms the graph is available, creates a private graph endpoint in a VPC,
    and polls the endpoint until AVAILABLE.
  inputs:
    type: object
    required:
    - graphIdentifier
    - vpcId
    properties:
      graphIdentifier:
        type: string
        description: The unique identifier of the graph.
      vpcId:
        type: string
        description: The VPC ID for the private endpoint.
      subnetIds:
        type: array
        description: The subnet IDs for the private endpoint.
        items:
          type: string
      vpcSecurityGroupIds:
        type: array
        description: The security group IDs for the private endpoint.
        items:
          type: string
  steps:
  - stepId: confirmGraph
    description: >-
      Confirm the target graph exists and is AVAILABLE before attaching a
      private endpoint.
    operationId: getGraph
    parameters:
    - name: graphIdentifier
      in: path
      value: $inputs.graphIdentifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      graphStatus: $response.body#/status
  - stepId: createEndpoint
    description: >-
      Create a private graph endpoint in the supplied VPC and subnets.
    operationId: createPrivateGraphEndpoint
    parameters:
    - name: graphIdentifier
      in: path
      value: $inputs.graphIdentifier
    requestBody:
      contentType: application/json
      payload:
        vpcId: $inputs.vpcId
        subnetIds: $inputs.subnetIds
        vpcSecurityGroupIds: $inputs.vpcSecurityGroupIds
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      endpointVpcId: $response.body#/vpcId
      initialStatus: $response.body#/status
  - stepId: pollEndpoint
    description: >-
      Poll the private endpoint by its VPC id. Retry while it is CREATING and
      finish once its status is AVAILABLE.
    operationId: getPrivateGraphEndpoint
    parameters:
    - name: graphIdentifier
      in: path
      value: $inputs.graphIdentifier
    - name: vpcId
      in: path
      value: $steps.createEndpoint.outputs.endpointVpcId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      vpcEndpointId: $response.body#/vpcEndpointId
    onSuccess:
    - name: endpointCreating
      type: retry
      retryAfter: 20
      retryLimit: 60
      criteria:
      - context: $response.body
        condition: $.status == "CREATING"
        type: jsonpath
    - name: endpointReady
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "AVAILABLE"
        type: jsonpath
  outputs:
    endpointVpcId: $steps.createEndpoint.outputs.endpointVpcId
    status: $steps.pollEndpoint.outputs.status
    vpcEndpointId: $steps.pollEndpoint.outputs.vpcEndpointId

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-neptune-analytics-private-endpoint-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.