class Awspec::Generator::Doc::Type::RdsDBCluster
Public Class Methods
Source
# File lib/awspec/generator/doc/type/rds_db_cluster.rb, line 7 def initialize super @type_name = 'RdsDBCluster' @type = Awspec::Type::RdsDBCluster.new('my-rds-db-cluster') @ret = @type.resource_via_client @matchers = [ Awspec::Type::RdsDBCluster::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', ') ] @ignore_matchers = Awspec::Type::RdsDBCluster::STATES.map { |state| "be_#{state.tr('-', '_')}" } @describes = [] end
Calls superclass method
Awspec::Generator::Doc::Type::Base::new