class AWS::DynamoDB::ClientV2

ClientV2 is now deprecated. To use the lastest Amazon DynamoDB api version, pass the :api_version option to AWS::Core::Client.new

AWS::DynamoDB::Client.new(:api_version => '2012-08-10')
#=> #<AWS::DynamoDB::Client::V20120810>

# defaults to the oldest api version
AWS::DynamoDB::Client.new
#=> #<AWS::DynamoDB::Client::V20111205>

@deprecated

Constants

DEPRECATION_MSG

Public Class Methods

new(options = {}) click to toggle source
# File lib/aws/dynamo_db/client_v2.rb, line 36
def new(options = {})
  Client.new(options.merge(:api_version => '2012-08-10'))
end