AccessBookmark
Source:
src/Cloudflare/Access/Bookmark.ts
A Cloudflare Zero Trust Access bookmark application — an unprotected link shown in the App Launcher.
Creating a Bookmark
Section titled “Creating a Bookmark”Basic bookmark
const bookmark = yield* Cloudflare.AccessBookmark("Wiki", { domain: "wiki.example.com",});Bookmark with a logo, hidden from the App Launcher
const bookmark = yield* Cloudflare.AccessBookmark("Wiki", { name: "internal-wiki", domain: "wiki.example.com", logoUrl: "https://example.com/logo.png", appLauncherVisible: false,});Preferred Alternative
Section titled “Preferred Alternative”const app = yield* Cloudflare.AccessApplication("Wiki", { type: "bookmark", domain: "wiki.example.com",});