Nic Acton
  • My Gitbook
  • My Favorite Things
    • Podcasts
    • Newsletters
  • Monthly Summaries
    • May 2019
    • June 2019
  • Cloud Computing
    • Cloud Concepts
    • AWS
      • Certified Solutions Architect
      • Well Architected Framework
        • Operational Excellence
        • Reliability
        • Performance Efficiency
        • Cost Optimization
        • Security
      • Analytics
        • Elasticsearch Service
        • Kinesis
        • Elastic MapReduce (EMR)
      • Compute Services
        • Elastic Beanstalk
        • Elastic Container Service (ECS)
      • Deployment
        • CloudFormation
      • Application Services
        • Key Management Service (KMS)
        • Simple Queue Service (SQS)
        • API Gateway
        • Simple Work Flow (SWF)
        • Amazon MQ
        • Simple Notification Service (SNS)
      • Simple Storage Service (S3)
        • Macie
      • Databases
        • RDS
        • DynamoDB
        • ElastiCache
        • Neptune
        • Redshift
      • Cloudfront
      • IAM
      • Monitoring
        • Trusted Advisor
        • Amazon Inspector
        • AWS Config
        • AWS Shield
        • CloudWatch
          • VPC Flow Logs
        • CloudTrail
        • Guard Duty
      • Route53
      • Serverless Architectures
        • Lambda
      • VPC
        • Highly Available & Fault Tolerant VPCs
        • Hybrid Environments
          • VPC Peering
          • Direct Connect
        • Cloud HSM
    • GCP
    • Azure
    • HashiCorp
    • Red Hat
      • RHEL
        • Basics
        • Grep & Regex
        • SSH
      • Ansible
    • Tutorials/Guides
      • Linux
        • Admin
  • Software Engineering
    • Machine Learning
      • Deep Learning
        • Tensorflow
      • Training and Loss
    • Programming
      • APIs
    • Security
    • Web Development
      • OSI 7 Layer Model
    • Tutorials/Guides
      • Apache Server
    • Virtualization
      • Virtual Machines
      • Containers
      • Serverless
  • Fitness
    • Nutrition
      • Diets
      • Macronutrients
      • Supplements
      • Miscellaneous
    • Strength Training
    • BodyBuilding
  • Miscellaneous
    • Technology Ethics
      • Education
    • Interesting Concepts
      • Libertarian Paternalism
Powered by GitBook
On this page
  • Essentials
  • Main Features
  • Benefits

Was this helpful?

  1. Cloud Computing
  2. AWS
  3. Application Services

API Gateway

Create interfaces for your existing AWS apps and backend services

Essentials

  • Fully managed service to create and manage your own APIs for your apps

  • API Gateways act as a "front door" for your applications, allowing access to data/logic/functionality from your back-end services

Main Features

  • Build RESTful APIs with:

    • Resources

    • Methods (i.e. GET, POST, PUT)

    • Settings

  • Deploy APIs to a "Stage" (different envs: i.e. dev, beta, production)

    • Each stage can have it's own throttling, caching, metereing, and logging

  • Create a new API version by cloning an existing one.

    • You can create and work on multiple versions of an API (API version control)

  • Roll back to previous API deployments

    • History of API deployments are kept

  • Custom domain names

    • Custom domain names can point to an API or Stage

  • Create and manage API keys for access AND meter usage of the API keys through Amazon CloudWatch Logs

  • Set throttling rules based on the number of requests per second (for each HTTP method)

    • Request over the limit throttled (HTTP 429 response)

  • Security using Signature v.4 to sign and authorize API calls

    • Temporary credentials generated through Amazon Cognito and Security Token Service (STS)

    • Workflows related to controlling billing through AWS!

Benefits

  • Ability to cache API responses

  • DDoS protection via CloudFront

  • SDK generation for iOS, Android, and JavaScript

  • Supports Swagger (popular framework of API dev tools)

  • Request/response data transformation (i.e. JSON IN to XML OUT)

PreviousSimple Queue Service (SQS)NextSimple Work Flow (SWF)

Last updated 6 years ago

Was this helpful?