apigateway_test_invoke_authorizer: Simulate the execution of an Authorizer in your RestApi with...

View source: R/apigateway_operations.R

apigateway_test_invoke_authorizerR Documentation

Simulate the execution of an Authorizer in your RestApi with headers, parameters, and an incoming request body

Description

Simulate the execution of an Authorizer in your RestApi with headers, parameters, and an incoming request body.

See https://www.paws-r-sdk.com/docs/apigateway_test_invoke_authorizer/ for full documentation.

Usage

apigateway_test_invoke_authorizer(
  restApiId,
  authorizerId,
  headers = NULL,
  multiValueHeaders = NULL,
  pathWithQueryString = NULL,
  body = NULL,
  stageVariables = NULL,
  additionalContext = NULL
)

Arguments

restApiId

[required] The string identifier of the associated RestApi.

authorizerId

[required] Specifies a test invoke authorizer request's Authorizer ID.

headers

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

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

The URI path, including query string, of the simulated invocation request. Use this to specify path parameters and query string parameters.

body

The simulated request body of an incoming invocation request.

stageVariables

A key-value map of stage variables to simulate an invocation on a deployed Stage.

additionalContext

A key-value map of additional context variables.


paws.networking documentation built on Sept. 12, 2023, 1:24 a.m.