This is an English translation of a Japanese blog. Some content may not be fully translated.
AWS

CLI Operations for Stopping, Starting, and Checking Status of Redshift Clusters

Stop

aws redshift pause-cluster --cluster-identifier redshift-ra3

Start (Resume)

aws redshift resume-cluster --cluster-identifier redshift-ra3

Check Status

aws redshift describe-clusters --cluster-identifier redshift-ra3

Get only the necessary information with describe-clusters

[ec2-user@bastin ~]$ aws redshift describe-clusters --cluster-identifier redshift-ra3 | jq -r '.Clusters[] | [ .ClusterIdentifier, .NodeType, .ClusterStatus] | @csv'
"redshift-ra3","ra3.4xlarge","paused"
Suggest an edit on GitHub