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

AdminSetUserPasswordRequest

import type { AdminSetUserPasswordRequest } from "https://aws-api.deno.dev/v0.3/services/cognitoidentityserviceprovider.ts?docs=full";
interface AdminSetUserPasswordRequest {
Password: string;
Permanent?: boolean | null;
Username: string;
UserPoolId: string;
}

§Properties

§
Password: string
[src]

The password for the user.

§
Permanent?: boolean | null
[src]

True if the password is permanent, False if it is temporary.

§
Username: string
[src]

The user name of the user whose password you wish to set.

§
UserPoolId: string
[src]

The user pool ID for the user pool where you want to set the user's password.