Sha256: 50a6837a084ea30073a428e85e6b67d7e80274bac60edd56aaf6a9cb60e5f8c5
Contents?: true
Size: 559 Bytes
Versions: 31
Compression:
Stored size: 559 Bytes
Contents
module Awspec::Generator module Doc module Type class Alb < Base def initialize super @type_name = 'ALB' @type = Awspec::Type::Alb.new('my-alb') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Alb::STATES.map { |state| 'be_' + state }.join(', '), 'belong_to_vpc', # 'have_tag' ] @ignore_matchers = Awspec::Type::Alb::STATES.map { |state| 'be_' + state } @describes = [] end end end end end
Version data entries
31 entries across 31 versions & 3 rubygems