0
0
AWScloud~5 mins

REST API creation in AWS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a REST API?
A REST API is a way for different software to talk to each other over the internet using simple commands like GET, POST, PUT, and DELETE.
Click to reveal answer
beginner
What AWS service is commonly used to create REST APIs?
AWS API Gateway is used to create, publish, and manage REST APIs easily without managing servers.
Click to reveal answer
beginner
What is an endpoint in a REST API?
An endpoint is a URL where the API listens for requests and sends back responses.
Click to reveal answer
beginner
Why do we use HTTP methods like GET and POST in REST APIs?
HTTP methods tell the API what action to perform: GET to read data, POST to create data, PUT to update, and DELETE to remove data.
Click to reveal answer
intermediate
How does AWS Lambda work with API Gateway in REST API creation?
API Gateway receives requests and triggers AWS Lambda functions to run code that processes the request and returns a response.
Click to reveal answer
Which AWS service helps you create a REST API without managing servers?
AAWS API Gateway
BAmazon S3
CAWS EC2
DAmazon RDS
What HTTP method is used to retrieve data from a REST API?
AGET
BPOST
CDELETE
DPUT
In AWS, which service runs your backend code when triggered by API Gateway?
AAmazon DynamoDB
BAWS Lambda
CAmazon S3
DAWS CloudWatch
What is an API endpoint?
AA database where API data is stored
BA security key for API access
CA URL where the API listens for requests
DA programming language for APIs
Which HTTP method should you use to delete data via a REST API?
APUT
BPOST
CGET
DDELETE
Explain how AWS API Gateway and AWS Lambda work together to create a REST API.
Think about the flow from client request to response.
You got /5 concepts.
    Describe the main HTTP methods used in REST APIs and their purposes.
    Focus on what each method does with data.
    You got /4 concepts.