Class: Aws::DynamoDB::Plugins::SimpleAttributes::Handler

Inherits:
Seahorse::Client::Handler
  • Object
show all
Defined in:
lib/aws-sdk-dynamodb/plugins/simple_attributes.rb

Instance Method Summary collapse

Instance Method Details

#call(context) ⇒ Object



115
116
117
118
119
120
# File 'lib/aws-sdk-dynamodb/plugins/simple_attributes.rb', line 115

def call(context)
  context.params = translate_input(context)
  @handler.call(context).on(200) do |response|
    response.data = translate_output(response)
  end
end