User guide

],
"Effect": "Allow"
}
]
}
Example 5: Allow a user permissions to copy a cluster snapshot and restore a cluster
from a snapshot
The following policy allows a user to copy any snapshot created from the cluster named big-cluster-1,
and restore any snapshot whose name starts with snapshot-for-restore.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"redshift:CopyClusterSnapshot"
],
"Resource": [
"arn:aws:redshift:us-east-1:0123456789012:snapshot:big-cluster-1/*"
],
"Effect": "Allow"
},
{
"Action": [
"redshift:RestoreFromClusterSnapshot"
],
"Resource": [
"arn:aws:redshift:us-east-1:0123456789012:snapshot:*/snapshot-for-re
store*",
"arn:aws:redshift:us-east-1:0123456789012:cluster:*"
],
"Effect": "Allow"
}
]
}
API Version 2012-12-01
125
Amazon Redshift Management Guide
Example Policies for Amazon Redshift