Sha256: 6edfe144adf0c448d92e1b0dda584f4ccf25dfa81abac88f27d734196a371c23
Contents?: true
Size: 632 Bytes
Versions: 14
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class NetworkAcl < Base def initialize super @type_name = 'NetworkAcl' @type = Awspec::Type::NetworkAcl.new('my-network-acl') @ret = @type.resource_via_client @matchers = [ 'belong_to_vpc', 'its(:inbound), its(:outbound), its(:inbound_entries_count), its(:outbound_entries_count)' ] @ignore_matchers = %w[be_allowed be_denied] @describes = %w[inbound_entries_count outbound_entries_count] end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems