You must be logged in to view saved presets
An IAM policy that denies a user the ability to change or push changes to a specific branch in a specific AWS CodeCommit repository.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"codecommit:GitPush",
"codecommit:DeleteBranch",
"codecommit:PutFile",
"codecommit:MergePullRequestByFastForward"
],
"Resource": [
"arn:aws:codecommit:::"
],
"Effect": "Deny",
"Condition": {
"StringEqualsIfExists": {
"codecommit:References": [
"refs/heads/master"
]
},
"Null": {
"codecommit:References": false
}
}
}
]
}