Sha256: 5464b212a6fe2b28ffd17d52bb3e8bc2122e17105a4f366447f247c650f15efa
Contents?: true
Size: 591 Bytes
Versions: 116
Compression:
Stored size: 591 Bytes
Contents
module Awspec::Generator module Doc module Type class DynamodbTable < Base 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 end end end end
Version data entries
116 entries across 116 versions & 4 rubygems