Sha256: 9a80ee62966712216b7b6075b92a09294f2dd16950a4e623a0465d92e0b4e8d1
Contents?: true
Size: 640 Bytes
Versions: 6
Compression:
Stored size: 640 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('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 end end end end
Version data entries
6 entries across 6 versions & 1 rubygems