You must be logged in to view saved presets
An IAM policy that allows a user to change information about build projects using only the specified AWS CodeBuild service role
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"codebuild:UpdateProject"
],
"Resource": [
"arn:aws:codebuild:::project/*"
],
"Effect": "Allow"
},
{
"Action": [
"iam:PassRole"
],
"Resource": [
"arn:aws:iam::role/CodeBuildServiceRole"
],
"Effect": "Allow"
}
]
}