@return [String<JMESPath>]
@option options [required, Request] :request @option options [required, String<JMESPath>] :path
# File lib/aws-sdk-resources/operations.rb, line 50 def initialize(options = {}) @path = option(:path, options) super end
@option (see Base#call) @return [Object] Returns the value resolved to by {#path}.
# File lib/aws-sdk-resources/operations.rb, line 60 def call(options) extract(super) end
# File lib/aws-sdk-resources/operations.rb, line 66 def extract(resp) JMESPath.search(@path, resp.data) end