Sha256: ae67f0f0b5aaa353ad2d09b91bc098885b72ad34c17abc9bd5f11110afebdb64
Contents?: true
Size: 622 Bytes
Versions: 14
Compression:
Stored size: 622 Bytes
Contents
# frozen_string_literal: true 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
14 entries across 14 versions & 1 rubygems