Sha256: 4a56a779d7d4fa0859b25d9a0f34a28aaa65099963d526f0440312fd577e07f6

Contents?: true

Size: 830 Bytes

Versions: 6

Compression:

Stored size: 830 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, String,
        :multiple => true,
        :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

6 entries across 6 versions & 1 rubygems

Version Path
sfn-0.4.0 lib/sfn/config/create.rb
sfn-0.3.8 lib/sfn/config/create.rb
sfn-0.3.6 lib/sfn/config/create.rb
sfn-0.3.4 lib/sfn/config/create.rb
sfn-0.3.2 lib/sfn/config/create.rb
sfn-0.3.0 lib/sfn/config/create.rb