Sha256: 058be47459d99271885d727b935b139fea9f106dbb94c59d3a336522e7bd1f9f
Contents?: true
Size: 356 Bytes
Versions: 5
Compression:
Stored size: 356 Bytes
Contents
module Roark module Aws module CloudFormation class StackStatus def initialize(connection) @connection = connection end def status(name) @connection.cf.stacks[name].status end def exists?(name) @connection.cf.stacks[name].exists? end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems