# File lib/fog/aws/requests/redshift/delete_cluster.rb, line 27
        def delete_cluster(options = {})
          cluster_identifier                = options[:cluster_identifier]
          final_cluster_snapshot_identifier = options[:final_cluster_snapshot_identifier]
          skip_final_cluster_snapshot       = options[:skip_final_cluster_snapshot]

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

          params[:query]['Action']                           = 'DeleteCluster'
          params[:query]['ClusterIdentifier']                = cluster_identifier if cluster_identifier
          params[:query]['FinalClusterSnapshotIdentifier']   = final_cluster_snapshot_identifier if final_cluster_snapshot_identifier
          params[:query]['SkipFinalClusterSnapshot']         = skip_final_cluster_snapshot if skip_final_cluster_snapshot
          request(params)
        end