class Awspec::Generator::Doc::Type::RdsDbCluster
Public Class Methods
new()
click to toggle source
Calls superclass method
Awspec::Generator::Doc::Type::Base::new
# 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