class Awspec::Generator::Doc::Type::DynamodbTable

Public Class Methods

new() click to toggle source
Calls superclass method Awspec::Generator::Doc::Type::Base::new
# File lib/awspec/generator/doc/type/dynamodb_table.rb, line 7
def initialize
  super
  @type_name = 'DynamodbTable'
  @type = Awspec::Type::DynamodbTable.new('my-dynamodb-table')
  @ret = @type.resource_via_client
  @matchers = [
    Awspec::Type::DynamodbTable::STATUSES.map { |status| "be_#{status.downcase}" }.join(', ')
  ]
  @ignore_matchers = Awspec::Type::DynamodbTable::STATUSES.map { |status| "be_#{status.downcase}" }
  @describes = []
end