1

Im implementing custom authentication using AWS api gateway and Lambda functions. In Chalice documentation, its stated that I need a authorizer_id to link the lambda function with the desired authentication.

@app.route('/authenticated', methods=['GET'], authorization_type='CUSTOM', authorizer_id='ab12cd')
def authenticated():
    return {"secure": True}

Question: Where can I find the authorizer_id for my custom authorizer?

enter image description here

Vingtoft
  • 1,547
  • 3
  • 15
  • 17

1 Answers1

0

The ID can be found in the "breadcrumbs" of the AWS web console (IDs are censored out, you get the idea):

enter image description here

Vingtoft
  • 1,547
  • 3
  • 15
  • 17