codestar:DeleteUserProfile is a Write access-level action in the codestar service. Grants permission to delete a user profile in AWS CodeStar, including all personal preference data associated with that profile, such as display name and email address. It does not delete the history of that user, for example the history of commits made by that user
ARNs that codestar:DeleteUserProfile can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants codestar:DeleteUserProfile.
Filters access by actions based on tag-value associated with the resource
A minimal policy that allows codestar:DeleteUserProfile. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowCodestarDeleteUserProfile",
"Effect": "Allow",
"Action": "codestar:DeleteUserProfile",
"Resource": "*"
}
]
}