# File lib/fog/aws/requests/redshift/delete_cluster_snapshot.rb, line 21
        def delete_cluster_snapshot(options = {})
          snapshot_identifier         = options[:snapshot_identifier]
          snapshot_cluster_identifier = options[:snapshot_cluster_identifier]

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

          params[:query]['Action']                     = 'DeleteClusterSnapshot'
          params[:query]['SnapshotIdentifier']         = snapshot_identifier if snapshot_identifier
          params[:query]['SnapshotClusterIdentifier']  = snapshot_cluster_identifier if snapshot_cluster_identifier

          request(params)
        end