Page updated Jan 16, 2024

Use existing AWS resources

Existing Amazon API Gateway resources can be used with the Amplify Libraries by referencing your API Gateway endpoint and configuring authorization in your amplifyconfiguration.json file.

1{
2 "api": {
3 "plugins": {
4 "awsAPIPlugin": {
5 "[API NAME]": {
6 "endpointType": "REST",
7 "endpoint": "[API GATEWAY ENDPOINT]",
8 "region": "[REGION]",
9 "authorizationType": "[AUTHORIZATION TYPE]",
10 ...
11 }
12 }
13 }
14 }
15}
  • API NAME: Friendly name for the API (e.g., api)
    • endpoint: The HTTPS endpoint of the API (e.g. https://aaaaaaaaaa.execute-api.us-east-1.amazonaws.com/api)
    • region: AWS Region where the resources are provisioned (e.g. us-east-1)
    • authorizationType: Authorization mode for accessing the API. This can be one of: NONE, AWS_IAM, AMAZON_COGNITO_USER_POOLS, or API_KEY. Each mode with the exception of NONE requires additional configuration parameters. See Configure authorization modes for details.

Note that before you can add an AWS resource to your application, the application must have the Amplify libraries installed. If you need to perform this step, see Install Amplify Libraries.