class Aws::Resources::Operations::Operation

Makes an API request using the resource client, returning the client response. Most operation classes extend this basic operation.

Attributes

request[R]

@return [Request]

Public Class Methods

new(options = {}) click to toggle source

@option options [required, Request] :request

Calls superclass method Aws::Resources::Operations::Base::new
# File lib/aws-sdk-resources/operations.rb, line 30
def initialize(options = {})
  @request = option(:request, options)
  super
end

Public Instance Methods

call(options) click to toggle source

@option (see Base#call) @return [Seahorse::Client::Response]

# File lib/aws-sdk-resources/operations.rb, line 40
def call(options)
  @request.call(options)
end