class Aws::DynamoDB::Table
def initialize(*args)
(**options)
-
:client
(Client
) -- -
:name
(required, String
) -- -
:client
(Client
) --
Overloads:
-
def initialize(options = {})
-
def initialize(name, options = {})
Parameters:
-
name
(String
) --
def initialize(*args) options = Hash === args.last ? args.pop.dup : {} @name = extract_name(args, options) @data = options.delete(:data) @client = options.delete(:client) || Client.new(options) end