Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
How can a developer configure hundreds of AWS Lambda functions for QA team testing using public URLs, ensuring that only the QA IAM group can invoke them?
A
By scripting to add AWS_IAM auth type URLs for Lambda and creating an identity-based policy granting lambda:InvokeFunctionUrl to all Lambda ARNs, then attaching to the QA group.
B
By scripting to add NONE auth type URLs for Lambda and creating a resource-based policy granting lambda:InvokeFunctionUrl to all Lambda ARNs, then attaching to the QA group.
C
By scripting to add AWS_IAM auth type URLs for each Lambda and individually creating identity-based policies granting lambda:InvokeFunctionUrl from the QA group's ARN.
D
By scripting to add NONE auth type URLs for each Lambda and individually creating resource-based policies granting lambda:InvokeFunctionUrl from the QA group's ARN.