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

AwsIamUserDetails

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

Information about an IAM user.

interface AwsIamUserDetails {
AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[] | null;
CreateDate?: string | null;
GroupList?: string[] | null;
Path?: string | null;
PermissionsBoundary?: AwsIamPermissionsBoundary | null;
UserId?: string | null;
UserName?: string | null;
UserPolicyList?: AwsIamUserPolicy[] | null;
}

§Properties

§
AttachedManagedPolicies?: AwsIamAttachedManagedPolicy[] | null
[src]

A list of the managed policies that are attached to the user.

§
CreateDate?: string | null
[src]

Indicates when the user was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
GroupList?: string[] | null
[src]

A list of IAM groups that the user belongs to.

§
Path?: string | null
[src]

The path to the user.

§
PermissionsBoundary?: AwsIamPermissionsBoundary | null
[src]

The permissions boundary for the user.

§
UserId?: string | null
[src]

The unique identifier for the user.

§
UserName?: string | null
[src]

The name of the user.

§
UserPolicyList?: AwsIamUserPolicy[] | null
[src]

The list of inline policies that are embedded in the user.