An IAM policy that denies a user the ability to change or push changes to a specific branch in a specific AWS CodeCommit repository.

Missing Parameters
{
    "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
                }
            }
        }
    ]
}

Actions



Customize Template

Policy Parameters

* Required field