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

SignUpResponse

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

The response from the server for a registration request.

interface SignUpResponse {
CodeDeliveryDetails?: CodeDeliveryDetailsType | null;
UserConfirmed: boolean;
UserSub: string;
}

§Properties

§
CodeDeliveryDetails?: CodeDeliveryDetailsType | null
[src]

The code delivery details returned by the server response to the user registration request.

§
UserConfirmed: boolean
[src]

A response from the server indicating that a user registration has been confirmed.

§
UserSub: string
[src]

The UUID of the authenticated user. This is not the same as username.