Values.TestInvokeAuthorizerRequestSourceMake a request to simulate the invocation of an Authorizer.
type nonrec t = {restApiId : String_.t;The string identifier of the associated RestApi.
*)headers : MapOfStringToString.t option;A key-value map of headers to simulate an incoming invocation request. This is where the incoming authorization token, or identity source, should be specified.
*)multiValueHeaders : MapOfStringToList.t option;The headers as a map from string to list of values to simulate an incoming invocation request. This is where the incoming authorization token, or identity source, may be specified.
*)pathWithQueryString : String_.t option;The URI path, including query string, of the simulated invocation request. Use this to specify path parameters and query string parameters.
*)body : String_.t option;The simulated request body of an incoming invocation request.
*)stageVariables : MapOfStringToString.t option;A key-value map of stage variables to simulate an invocation on a deployed Stage.
*)additionalContext : MapOfStringToString.t option;A key-value map of additional context variables.
*)}