Method: Aws::APIGateway::Types::PatchOperation#op

Defined in:
lib/aws-sdk-apigateway/types.rb

#opString

An update operation to be performed with this PATCH request. The valid value can be ‘add`, `remove`, `replace` or `copy`. Not all valid operations are supported for a given resource. Support of the operations depends on specific operational contexts. Attempts to apply an unsupported operation on a resource will return an error message.

Returns:

  • (String)

5592
5593
5594
5595
5596
5597
5598
5599
# File 'lib/aws-sdk-apigateway/types.rb', line 5592

class PatchOperation < Struct.new(
  :op,
  :path,
  :value,
  :from)
  SENSITIVE = []
  include Aws::Structure
end