CustomDomainRecord
Type: a connected custom domain and its lifecycle status.
import type { CustomDomainRecord } from 'flowstack-sdk'Returned by listDomains and echoed in status calls. Lifecycle status: validating → issued → activating → live (or failed).
Signature
interface CustomDomainRecord { domain: string; site_id: string; status: 'validating' | 'issued' | 'activating' | 'live' | 'failed'; cert_arn?: string; connected_at?: string; activated_at?: string; last_check?: string; cert_status?: string }Returns
| Field | Type | Description |
|---|---|---|
domain | string | The custom domain. |
status | 'validating' | 'issued' | 'activating' | 'live' | 'failed' | Lifecycle stage. cert_status carries the ACM detail when failed. |
cert_arn | string? | ACM certificate ARN once requested. |
See also
connectDomain · listDomains · getDomainStatus
Source: src/types/index.ts (Custom Domains, P0-158) · Also available in llms-full.txt and registry.json.