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

BackendAuthAppleProviderConfig

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

Describes Apple social federation configurations for allowing your app users to sign in using OAuth.

interface BackendAuthAppleProviderConfig {
ClientId?: string | null;
KeyId?: string | null;
PrivateKey?: string | null;
TeamId?: string | null;
}

§Properties

§
ClientId?: string | null
[src]

Describes the client_id (also called Services ID) that comes from Apple.

§
KeyId?: string | null
[src]

Describes the key_id that comes from Apple.

§
PrivateKey?: string | null
[src]

Describes the private_key that comes from Apple.

§
TeamId?: string | null
[src]

Describes the team_id that comes from Apple.