Control access to a REST API with IAM permissions
You control access to your Amazon API Gateway API with IAM permissions by controlling access to the following two API Gateway component processes:
-
To create, deploy, and manage an API in API Gateway, you must grant the API developer permissions to perform the required actions supported by the API management component of API Gateway.
-
To call a deployed API or to refresh the API caching, you must grant the API caller permissions to perform required IAM actions supported by the API execution component of API Gateway.
The access control for the two processes involves different permissions models, explained next.
API Gateway permissions model for creating and managing an API
To allow an API developer to create and manage an API in API Gateway, you must create IAM permissions policies that allow a specified API developer to create, update, deploy, view, or delete required API entities. You attach the permissions policy to a user, role, or group.
To provide access, add permissions to your users, groups, or roles:
-
Users and groups in AWS IAM Identity Center:
Create a permission set. Follow the instructions in Create a permission set in the AWS IAM Identity Center User Guide.
-
Users managed in IAM through an identity provider:
Create a role for identity federation. Follow the instructions in Create a role for a third-party identity provider (federation) in the IAM User Guide.
-
IAM users:
-
Create a role that your user can assume. Follow the instructions in Create a role for an IAM user in the IAM User Guide.
-
(Not recommended) Attach a policy directly to a user or add a user to a user group. Follow the instructions in Adding permissions to a user (console) in the IAM User Guide.
-
For more information on how to use this permissions model, see API Gateway identity-based policies.
API Gateway permissions model for invoking an API
To allow an API caller to invoke the API or refresh its caching, you must create IAM
policies that permit a specified API caller to invoke the API method for which
user authentication is enabled. The API developer sets the method's authorizationType
property to AWS_IAM
to require that the caller submit the user's credentials to be
authenticated. Then, you attach the policy to a user, role, or group.
In this IAM permissions policy statement, the IAM Resource
element contains a list of deployed API methods identified by given
HTTP verbs and API Gateway resource paths. The
IAM Action
element contains the required API Gateway API
executing actions. These actions include execute-api:Invoke
or execute-api:InvalidateCache
, where execute-api
designates the underlying API execution component of API Gateway.
For more information on how to use this permissions model, see Control access for invoking an API.
When an API is integrated with an AWS service (for example, AWS Lambda) in the back end, API Gateway must also have permissions to access integrated AWS resources (for example, invoking a Lambda function) on behalf of the API caller. To grant these permissions, create an IAM role of the AWS service for API Gateway type. When you create this role in the IAM Management console, this resulting role contains the following IAM trust policy that declares API Gateway as a trusted entity permitted to assume the role:
{ "Version": "2012-10-17", "Statement": [ { "Sid": "", "Effect": "Allow", "Principal": { "Service": "apigateway.amazonaws.com" }, "Action": "sts:AssumeRole" } ] }
If you create the IAM role by calling the create-role command of CLI or a
corresponding SDK method, you must supply the above trust policy as the input parameter
of assume-role-policy-document
. Do not attempt to create such a policy
directly in the IAM Management console or calling AWS CLI create-policy command or a
corresponding SDK method.
For API Gateway to call the integrated AWS service, you must also attach to this role appropriate IAM permissions policies for calling integrated AWS services. For example, to call a Lambda function, you must include the following IAM permissions policy in the IAM role:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "lambda:InvokeFunction", "Resource": "*" } ] }
Note that Lambda supports resource-based access policy, which combines both trust and permissions policies. When integrating an API with a Lambda function using the API Gateway console, you are not asked to set this IAM role explicitly, because the console sets the resource-based permissions on the Lambda function for you, with your consent.
Note
To enact access control to an AWS service, you can use either the caller-based permissions model, where a permissions policy is directly attached to the caller's user or group, or the role-based permission model, where a permissions policy is attached to an IAM role that API Gateway can assume. The permissions policies may differ in the two models. For example, the caller-based policy blocks the access while the role-based policy allows it. You can take advantage of this to require that a user access an AWS service through an API Gateway API only.