paws.networking (version 0.1.6)

apigateway_update_gateway_response: Updates a GatewayResponse of a specified response type on the given RestApi

Description

Updates a GatewayResponse of a specified response type on the given RestApi.

Usage

apigateway_update_gateway_response(restApiId, responseType,
  patchOperations)

Arguments

restApiId

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

responseType

[required] [Required]

The response type of the associated GatewayResponse. Valid values are

  • ACCESS\_DENIED

  • API\_CONFIGURATION\_ERROR

  • AUTHORIZER\_FAILURE

  • AUTHORIZER\_CONFIGURATION\_ERROR

  • BAD\_REQUEST\_PARAMETERS

  • BAD\_REQUEST\_BODY

  • DEFAULT\_4XX

  • DEFAULT\_5XX

  • EXPIRED\_TOKEN

  • INVALID\_SIGNATURE

  • INTEGRATION\_FAILURE

  • INTEGRATION\_TIMEOUT

  • INVALID\_API\_KEY

  • MISSING\_AUTHENTICATION\_TOKEN

  • QUOTA\_EXCEEDED

  • REQUEST\_TOO\_LARGE

  • RESOURCE\_NOT\_FOUND

  • THROTTLED

  • UNAUTHORIZED

  • UNSUPPORTED\_MEDIA\_TYPE

patchOperations

A list of update operations to be applied to the specified resource and in the order specified in this list.

Request syntax

svc$update_gateway_response(
  restApiId = "string",
  responseType = "DEFAULT_4XX"|"DEFAULT_5XX"|"RESOURCE_NOT_FOUND"|"UNAUTHORIZED"|"INVALID_API_KEY"|"ACCESS_DENIED"|"AUTHORIZER_FAILURE"|"AUTHORIZER_CONFIGURATION_ERROR"|"INVALID_SIGNATURE"|"EXPIRED_TOKEN"|"MISSING_AUTHENTICATION_TOKEN"|"INTEGRATION_FAILURE"|"INTEGRATION_TIMEOUT"|"API_CONFIGURATION_ERROR"|"UNSUPPORTED_MEDIA_TYPE"|"BAD_REQUEST_PARAMETERS"|"BAD_REQUEST_BODY"|"REQUEST_TOO_LARGE"|"THROTTLED"|"QUOTA_EXCEEDED",
  patchOperations = list(
    list(
      op = "add"|"remove"|"replace"|"move"|"copy"|"test",
      path = "string",
      value = "string",
      from = "string"
    )
  )
)