Sha256: 417d40c3cfa1879ed4be9ac71bcb55758f235293fb61e04beb2c3fa4555a01db
Contents?: true
Size: 685 Bytes
Versions: 8
Compression:
Stored size: 685 Bytes
Contents
module Awspec::Generator module Doc module Type class Elasticache < Base def initialize super @type_name = 'Elasticache' @type = Awspec::Type::Elasticache.new('my-rep-group-001') @ret = @type.resource @matchers = [ Awspec::Type::Elasticache::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', '), 'belong_to_vpc', 'belong_to_replication_group', 'belong_to_cache_subnet_group' ] @ignore_matchers = Awspec::Type::Elasticache::STATES.map { |state| 'be_' + state.tr('-', '_') } @describes = [] end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems