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

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

          params[:query]['Action']             = 'CreateClusterSnapshot'
          params[:query]['SnapshotIdentifier'] = snapshot_identifier if snapshot_identifier
          params[:query]['ClusterIdentifier']  = cluster_identifier if cluster_identifier

          request(params)
        end