Method: Aws::APIGateway::Types::PatchOperation#path
- Defined in:
- lib/aws-sdk-apigateway/types.rb
#path ⇒ String
The ‘op` operation’s target, as identified by a [JSON Pointer] value that references a location within the targeted resource. For example, if the target resource has an updateable property of ‘“name”:“value”`, the path for this property is `/name`. If the `name` property value is a JSON object (e.g., `{“child/name”: “child-value”}`), the path for the `child/name` property will be `/name/child~1name`. Any slash (“/”) character appearing in path names must be escaped with “~1”, as shown in the example above. Each `op` operation can have only one `path` associated with it.
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 |