Sha256: 8362e02a3de0d732b8cd68d92568cfc3a85379e7d72d7dedc76e0834f34743b6
Contents?: true
Size: 644 Bytes
Versions: 1
Compression:
Stored size: 644 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class VpcEndpoints < Base def initialize super @type_name = 'VpcEndpoints' @type = Awspec::Type::VpcEndpoints.new('my-vpc-endpoint') @ret = @type.resource_via_client @matchers = [ Awspec::Type::VpcEndpoints::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', '), 'belong_to_vpc' ] @ignore_matchers = Awspec::Type::VpcEndpoints::STATES.map { |state| "be_#{state.tr('-', '_')}" } @describes = [] end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
awspec-1.28.1 | lib/awspec/generator/doc/type/vpc_endpoints.rb |