Method: Aws::APIGateway::Types::PatchOperation#value

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

#valueString

The new target value of the update operation. It is applicable for the ‘add` or `replace` operation. When using AWS CLI to update a property of a JSON value, enclose the JSON object with a pair of single quotes in a Linux shell, e.g., ’{“a”: …\}‘. In a Windows shell, see [Using JSON for Parameters].

[1]: docs.aws.amazon.com/cli/latest/userguide/cli-using-param.html#cli-using-param-json

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