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?