import type * as apprunner from "@distilled.cloud/aws/apprunner"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Service } from "./Service.ts"; export interface DisassociateCustomDomainRequest extends Omit { } /** * Disassociate a custom domain from an App Runner {@link Service} from a * Lambda (or other AWS runtime) — the teardown half of the multi-tenant * SaaS domain flow when a customer removes their domain. * * Provide `AppRunner.DisassociateCustomDomainHttp` on the hosting * function's Effect to implement the binding. * * ### Custom Domains * **Example:** Remove a customer domain * ```typescript * const disassociateCustomDomain = * yield* AppRunner.DisassociateCustomDomain(service); * yield* disassociateCustomDomain({ DomainName: "app.customer.com" }); * ``` * * @binding */ export interface DisassociateCustomDomain extends Binding.Service Effect.Effect<(request: DisassociateCustomDomainRequest) => Effect.Effect>> { } export declare const DisassociateCustomDomain: DisassociateCustomDomain; //# sourceMappingURL=DisassociateCustomDomain.d.ts.map