codebuild:ListReportsForReportGroup is a List access-level action in the codebuild service. Grants permission to return a list of report ARNs that belong to the specified report group. Each report ARN represents one report
ARNs that codebuild:ListReportsForReportGroup can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants codebuild:ListReportsForReportGroup.
Filters access by actions based on tag key-value pairs attached to the resource
A minimal policy that allows codebuild:ListReportsForReportGroup. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowCodebuildListReportsForReportGroup",
"Effect": "Allow",
"Action": "codebuild:ListReportsForReportGroup",
"Resource": "*"
}
]
}