Sha256: 4724e5d0ca9592e648e6f78b3125b26774283e263adf1d5d9754eb2b3115c99f
Contents?: true
Size: 802 Bytes
Versions: 15
Compression:
Stored size: 802 Bytes
Contents
require 'sfn' module Sfn class Config # Create command configuration class Create < Update attribute( :timeout, Integer, :coerce => proc{|v| v.to_i}, :description => 'Seconds to wait for stack to complete' ) attribute( :rollback, [TrueClass, FalseClass], :description => 'Rollback stack on failure' ) attribute( :capabilities, String, :multiple => true, :description => 'Capabilities to allow the stack' ) attribute( :options, Smash, :description => 'Extra options to apply to the API call' ) attribute( :notifications, String, :multiple => true, :description => 'Notification endpoints for stack events' ) end end end
Version data entries
15 entries across 15 versions & 1 rubygems