Module: Aws::Cfn::Stacker::Main::ClassMethods

Defined in:
lib/aws/cfn/stacker/mixins/main.rb

Overview


Instance Method Summary collapse

Instance Method Details

#actorsObject



21
22
23
# File 'lib/aws/cfn/stacker/mixins/main.rb', line 21

def actors
  @ACTORS
end

#actors=(v) ⇒ Object



25
26
27
# File 'lib/aws/cfn/stacker/mixins/main.rb', line 25

def actors=(v)
@ACTORS  = v
end

#allactionsObject



37
38
39
# File 'lib/aws/cfn/stacker/mixins/main.rb', line 37

def allactions
  @ALLACTIONS
end

#allactions=(acts) ⇒ Object



41
42
43
# File 'lib/aws/cfn/stacker/mixins/main.rb', line 41

def allactions=(acts)
  @ALLACTIONS = acts || [ :build, :configure, :create, :status, :update, :delete, :outputs, :watch, :listparams ]
end

#loglevelsObject



29
30
31
# File 'lib/aws/cfn/stacker/mixins/main.rb', line 29

def loglevels
  @LOGLEVELS
end

#loglevels=(levels) ⇒ Object



33
34
35
# File 'lib/aws/cfn/stacker/mixins/main.rb', line 33

def loglevels=(levels)
  @LOGLEVELS  = levels || [:trace, :debug, :step, :info, :warn, :error, :fatal, :todo]
end