Skip to content

User

Source: src/AWS/IAM/User.ts

An IAM user with optional inline policies, managed policies, and tags.

User manages a long-lived IAM identity together with its attached managed policies, inline policies, permissions boundary, and tags.

const user = yield* User("AppUser", {
userName: "app-user",
managedPolicyArns: [
"arn:aws:iam::aws:policy/ReadOnlyAccess",
],
});