Amazon Lambda Event Source Mappings API

Lambda event source mapping management

Documentation

Specifications

Schemas & Data

Other Resources

🔗
JSONLD
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/json-ld/amazon-lambda-context.jsonld
🔗
Pricing
https://aws.amazon.com/lambda/pricing/
🔗
SDKs
https://aws.amazon.com/tools/
🔗
StatusPage
https://status.aws.amazon.com/
🔗
Best Practices
https://docs.aws.amazon.com/lambda/latest/dg/best-practices.html
🔗
FAQ
https://aws.amazon.com/lambda/faqs/
🔗
ServiceLevelAgreement
https://aws.amazon.com/lambda/sla/
🔗
User Guide
https://docs.aws.amazon.com/lambda/latest/dg/
🔗
CLI
https://docs.aws.amazon.com/cli/latest/reference/lambda/
🔗
Security
https://docs.aws.amazon.com/lambda/latest/dg/lambda-security.html
🔗
GraphQL
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/graphql/amazon-lambda-graphql.md
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-decommission-function-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-deploy-and-invoke-function-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-deploy-with-event-source-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-provision-event-source-mapping-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-reconfigure-function-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-redeploy-discovered-function-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-teardown-event-source-mapping-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-lambda/refs/heads/main/arazzo/amazon-lambda-update-code-and-verify-workflow.yml

OpenAPI Specification

amazon-lambda-event-source-mappings-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Amazon Lambda Event Source Mappings API
  description: The Amazon Lambda API provides programmatic access to manage Lambda resources.
  version: '2024-01-01'
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  x-logo:
    url: https://a0.awsstatic.com/libra-css/images/logos/aws_logo_smile_1200x630.png
servers:
- url: https://lambda.us-east-1.amazonaws.com
  description: Amazon Lambda endpoint
security:
- sigv4: []
tags:
- name: Event Source Mappings
  description: Lambda event source mapping management
paths:
  /event-source-mappings:
    post:
      operationId: CreateEventSourceMapping
      summary: Amazon Lambda Create Event Source Mapping
      description: Creates a mapping between an event source and an AWS Lambda function.
      tags:
      - Event Source Mappings
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    get:
      operationId: ListEventSourceMappings
      summary: Amazon Lambda List Event Source Mappings
      description: Lists event source mappings.
      tags:
      - Event Source Mappings
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /event-source-mappings/{UUID}:
    get:
      operationId: GetEventSourceMapping
      summary: Amazon Lambda Get Event Source Mapping
      description: Returns details about an event source mapping.
      tags:
      - Event Source Mappings
      parameters:
      - name: UUID
        in: path
        required: true
        schema:
          type: string
        description: The identifier of the event source mapping.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: DeleteEventSourceMapping
      summary: Amazon Lambda Delete Event Source Mapping
      description: Deletes an event source mapping.
      tags:
      - Event Source Mappings
      parameters:
      - name: UUID
        in: path
        required: true
        schema:
          type: string
        description: The identifier of the event source mapping.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    sigv4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4 authentication