class AWS::DynamoDB::ClientV2

@deprecated
#=> #<AWS::DynamoDB::Client::V20111205>
AWS::DynamoDB::Client.new
# defaults to the oldest api version
#=> #<AWS::DynamoDB::Client::V20120810>
AWS::DynamoDB::Client.new(:api_version => ‘2012-08-10’)
api version, pass the :api_version option to AWS::DynamoDB::Client.new
ClientV2 is now deprecated. To use the lastest Amazon DynamoDB

def new(options = {})

def new(options = {})
  Client.new(options.merge(:api_version => '2012-08-10'))
end