# File lib/aws/auto_scaling/group.rb, line 402
      def exists?
        client_opts = {}
        client_opts[:auto_scaling_group_names] = [name]
        resp = client.describe_auto_scaling_groups(client_opts)
        !resp.auto_scaling_groups.empty?
      end