class Awspec::Generator::Doc::Type::VpcEndpoints
Public Class Methods
Source
# File lib/awspec/generator/doc/type/vpc_endpoints.rb, line 7 def initialize super @type_name = 'VpcEndpoints' @type = Awspec::Type::VpcEndpoints.new('vpce-abc123') @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
Calls superclass method
Awspec::Generator::Doc::Type::Base::new