Amazon Location Service · Arazzo Workflow

Amazon Location Service Provision and Verify Map

Version 1.0.0

Create a map resource and confirm it is queryable before use.

1 workflow 1 source API 1 provider
View Spec View on GitHub GeocodingGeofencingLocationMapsRoutingArazzoWorkflows

Provider

amazon-location-service

Workflows

provision-map
Create a map resource and verify it by describing it.
Creates a map resource from the supplied name, data source, and style, then immediately describes it to confirm the resource exists and is ready to be embedded in a client application.
2 steps inputs: Description, MapName, PricingPlan, Style outputs: dataSource, mapArn, mapName
1
createMap
Create the map resource using the supplied name and a configuration that selects the rendering style.
2
describeMap
Describe the newly created map to confirm it exists and to read back its data source and timestamps.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Location Service Provision and Verify Map
  summary: Create a map resource and confirm it is queryable before use.
  description: >-
    Stands up a new Amazon Location Service map resource and then verifies it by
    describing the freshly created map, confirming the returned name matches the
    requested name. Every step spells out its request inline so the provisioning
    flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: mapsApi
  url: ../openapi/amazon-location-service-maps-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-map
  summary: Create a map resource and verify it by describing it.
  description: >-
    Creates a map resource from the supplied name, data source, and style, then
    immediately describes it to confirm the resource exists and is ready to be
    embedded in a client application.
  inputs:
    type: object
    required:
    - MapName
    - Style
    properties:
      MapName:
        type: string
        description: The name to assign to the new map resource.
      Style:
        type: string
        description: The map style to render (e.g. VectorEsriStreets, VectorHereExplore).
      PricingPlan:
        type: string
        description: Optional legacy pricing plan for the map resource.
      Description:
        type: string
        description: Optional human-readable description for the map resource.
  steps:
  - stepId: createMap
    description: >-
      Create the map resource using the supplied name and a configuration that
      selects the rendering style.
    operationId: CreateMap
    requestBody:
      contentType: application/json
      payload:
        MapName: $inputs.MapName
        Configuration:
          Style: $inputs.Style
        Description: $inputs.Description
        PricingPlan: $inputs.PricingPlan
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mapName: $response.body#/MapName
      mapArn: $response.body#/MapArn
      createTime: $response.body#/CreateTime
  - stepId: describeMap
    description: >-
      Describe the newly created map to confirm it exists and to read back its
      data source and timestamps.
    operationId: DescribeMap
    parameters:
    - name: MapName
      in: path
      value: $steps.createMap.outputs.mapName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mapName: $response.body#/MapName
      dataSource: $response.body#/DataSource
      mapArn: $response.body#/MapArn
      updateTime: $response.body#/UpdateTime
  outputs:
    mapName: $steps.describeMap.outputs.mapName
    mapArn: $steps.describeMap.outputs.mapArn
    dataSource: $steps.describeMap.outputs.dataSource

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-location-service-provision-map-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.