codepipeline:GetPipelineExecution is a Read access-level action in the codepipeline service. Grants permission to view information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline
ARNs that codepipeline:GetPipelineExecution can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants codepipeline:GetPipelineExecution.
Filters actions based on tag key-value pairs attached to the resource
A minimal policy that allows codepipeline:GetPipelineExecution. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowCodepipelineGetPipelineExecution",
"Effect": "Allow",
"Action": "codepipeline:GetPipelineExecution",
"Resource": "*"
}
]
}