I suspect that Redshift does not support named windows, as Postgres has since at least version 8.4:
select stuff
, stuff_category
, sum(dollars) over W
from table
window W as (partition by stuff_category)
However I would like to know definitively and I can't find a reference, or any post that says 'no we didn't implement this for very good reason yada yada.'
The AWS Redshift SQL Reference makes no mention of the 'window as' syntax - I suppose I should take this as an answer.
Here's an SO answer relating to Postgres named windows
Here's the Postgres 8.4 documentation on WINDOW AS () syntax