Method: CloudFormation::DynamoDB#build_table

Defined in:
lib/cloud_formation/dynamo_db.rb

#build_table {|table| ... } ⇒ Object

Yields:

  • (table)


10
11
12
13
14
15
# File 'lib/cloud_formation/dynamo_db.rb', line 10

def build_table &block
  table = Table.new
  yield table
  @tables << table
  table
end