# File lib/fog/aws/requests/redshift/reboot_cluster.rb, line 17
        def reboot_cluster(options = {})
          cluster_identifier = options[:cluster_identifier]

          path = "/"
          params = {
            :headers    => {},
            :path       => path,
            :method     => :put,
            :query      => {},
            :parser     => Fog::Parsers::Redshift::AWS::Cluster.new
          }

          params[:query]['Action']                           = 'RebootCluster'
          params[:query]['ClusterIdentifier']                = cluster_identifier if cluster_identifier
          request(params)
        end