Amazon EMR Clusters API

Operations for creating, managing, and terminating EMR clusters

Operations 1

POST / Amazon EMR Create and Start an EMR Cluster #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/amazon-emr-clusters-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

amazon-emr-clusters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon EMR Clusters API
  description: Amazon EMR (Elastic MapReduce) provides a managed big data platform that simplifies running open-source frameworks such as Apache Spark and Hadoop to process and analyze vast amounts of data. This API enables you to create and manage clusters, add processing steps, configure auto-scaling, and monitor cluster health and performance.
  version: '2009-03-31'
  contact:
    name: Amazon Web Services
    url: https://aws.amazon.com/contact-us/
  termsOfService: https://aws.amazon.com/service-terms/
servers:
- url: https://elasticmapreduce.{region}.amazonaws.com
  description: Amazon EMR Regional Endpoint
  variables:
    region:
      default: us-east-1
      description: AWS Region
tags:
- name: Clusters
  description: Operations for creating, managing, and terminating EMR clusters
paths:
  /:
    post:
      operationId: RunJobFlow
      summary: Amazon EMR Create and Start an EMR Cluster
      description: Creates and starts running a new cluster (job flow).
      tags:
      - Clusters
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - Name
              - Instances
              properties:
                Name:
                  type: string
                  description: The name of the cluster
                Instances:
                  type: object
                  description: Instance configuration for the cluster
                ReleaseLabel:
                  type: string
                  description: The Amazon EMR release label (e.g., emr-6.10.0)
                Steps:
                  type: array
                  description: Steps to run after cluster creation
                  items:
                    type: object
                Applications:
                  type: array
                  description: Applications to install on the cluster
                  items:
                    type: object
                    properties:
                      Name:
                        type: string
            examples:
              RunJobFlowRequestExample:
                summary: Default RunJobFlow request
                x-microcks-default: true
                value:
                  Name: example-name
                  Instances: {}
                  ReleaseLabel: example
                  Steps: []
                  Applications: []
      responses:
        '200':
          description: Cluster created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  JobFlowId:
                    type: string
                    description: The unique identifier of the cluster
              examples:
                RunJobFlow200Example:
                  summary: Default RunJobFlow 200 response
                  x-microcks-default: true
                  value:
                    JobFlowId: example-id-12345
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
externalDocs:
  description: Amazon EMR API Reference
  url: https://docs.aws.amazon.com/emr/latest/APIReference/Welcome.html