paws.networking (version 0.1.6)

apigateway_test_invoke_method: Simulate the execution of a Method in your RestApi with headers, parameters, and an incoming request body

Description

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

Usage

apigateway_test_invoke_method(restApiId, resourceId, httpMethod,
  pathWithQueryString, body, headers, multiValueHeaders,
  clientCertificateId, stageVariables)

Arguments

restApiId

[required] [Required] The string identifier of the associated RestApi.

resourceId

[required] [Required] Specifies a test invoke method request\'s resource ID.

httpMethod

[required] [Required] Specifies a test invoke method request\'s HTTP method.

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.

headers

A key-value map of headers to simulate an incoming invocation request.

multiValueHeaders

The headers as a map from string to list of values to simulate an incoming invocation request.

clientCertificateId

A ClientCertificate identifier to use in the test invocation. API Gateway will use the certificate when making the HTTPS request to the defined back-end endpoint.

stageVariables

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

Request syntax

svc$test_invoke_method(
  restApiId = "string",
  resourceId = "string",
  httpMethod = "string",
  pathWithQueryString = "string",
  body = "string",
  headers = list(
    "string"
  ),
  multiValueHeaders = list(
    list(
      "string"
    )
  ),
  clientCertificateId = "string",
  stageVariables = list(
    "string"
  )
)