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

LoginProfile

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

Contains the user name and password create date for a user.

This data type is used as a response element in the "CreateLoginProfile" and "GetLoginProfile" operations.

interface LoginProfile {
CreateDate: Date | number;
PasswordResetRequired?: boolean | null;
UserName: string;
}

§Properties

§
CreateDate: Date | number
[src]

The date when the password for the user was created.

§
PasswordResetRequired?: boolean | null
[src]

Specifies whether the user is required to set a new password on next sign-in.

§
UserName: string
[src]

The name of the user, which can be used for signing in to the Amazon Web Services Management Console.