Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UserDetail

import type { UserDetail } from "https://aws-api.deno.dev/v0.4/services/iam.ts?docs=full";

Contains information about an IAM user, including all the user's policies and all the IAM groups the user is in.

This data type is used as a response element in the "GetAccountAuthorizationDetails" operation.

interface UserDetail {
Arn?: string | null;
AttachedManagedPolicies: AttachedPolicy[];
CreateDate?: Date | number | null;
GroupList: string[];
Path?: string | null;
PermissionsBoundary?: AttachedPermissionsBoundary | null;
Tags: Tag[];
UserId?: string | null;
UserName?: string | null;
UserPolicyList: PolicyDetail[];
}

§Properties

§
Arn?: string | null
[src]
§
AttachedManagedPolicies: AttachedPolicy[]
[src]

A list of the managed policies attached to the user.

§
CreateDate?: Date | number | null
[src]

The date and time, in ISO 8601 date-time format, when the user was created.

§
GroupList: string[]
[src]

A list of IAM groups that the user is in.

§
Path?: string | null
[src]

The path to the user. For more information about paths, see IAM identifiers in the IAM User Guide.

§
PermissionsBoundary?: AttachedPermissionsBoundary | null
[src]

The ARN of the policy used to set the permissions boundary for the user.

For more information about permissions boundaries, see Permissions boundaries for IAM identities in the IAM User Guide.

§
Tags: Tag[]
[src]

A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

§
UserId?: string | null
[src]

The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM User Guide.

§
UserName?: string | null
[src]

The friendly name identifying the user.

§
UserPolicyList: PolicyDetail[]
[src]

A list of the inline policies embedded in the user.