codestar:DeleteUserProfile

Write

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

Resource types

ARNs that codestar:DeleteUserProfile can be scoped to in an IAM policy.

arn:${Partition}:iam::${Account}:user/${AwsUserName}
user

Condition keys

Keys you can use in the Condition block of a policy that grants codestar:DeleteUserProfile.

iam:ResourceTag/${TagKey} String

Filters access by actions based on tag-value associated with the resource

Example IAM policy

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": "*"
    }
  ]
}

Related actions in codestar

View all codestar actions →