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

UserPoolConfig

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

Describes an Amazon Cognito user pool configuration.

interface UserPoolConfig {
appIdClientRegex?: string | null;
awsRegion: string;
defaultAction: DefaultAction;
userPoolId: string;
}

§Properties

§
appIdClientRegex?: string | null
[src]

A regular expression for validating the incoming Amazon Cognito user pool app client ID.

§
awsRegion: string
[src]

The Amazon Web Services Region in which the user pool was created.

§
defaultAction: DefaultAction
[src]

The action that you want your GraphQL API to take when a request that uses Amazon Cognito user pool authentication doesn't match the Amazon Cognito user pool configuration.

§
userPoolId: string
[src]

The user pool ID.