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

AdminDeleteUserAttributesRequest

import type { AdminDeleteUserAttributesRequest } from "https://aws-api.deno.dev/v0.3/services/cognitoidentityserviceprovider.ts?docs=full";

Represents the request to delete user attributes as an administrator.

interface AdminDeleteUserAttributesRequest {
UserAttributeNames: string[];
Username: string;
UserPoolId: string;
}

§Properties

§
UserAttributeNames: string[]
[src]

An array of strings representing the user attribute names you wish to delete.

For custom attributes, you must prepend the custom: prefix to the attribute name.

§
Username: string
[src]

The user name of the user from which you would like to delete attributes.

§
UserPoolId: string
[src]

The user pool ID for the user pool where you want to delete user attributes.