# File lib/aws/cloud_formation/stack.rb, line 230
      def exists?
        begin
          client.describe_stacks(resource_options)
          true
        rescue Errors::ValidationError
          false
        end
      end