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.
Creating IAM Users
Section titled “Creating IAM Users”const user = yield* User("AppUser", { userName: "app-user", managedPolicyArns: [ "arn:aws:iam::aws:policy/ReadOnlyAccess", ],});