GradientEdge CDK Utils
    Preparing search index...

    Properties for creating a Cloudflare Workers Custom Domain

    interface WorkerDomainProps {
        accountId?: Input<string>;
        environment?: Input<string>;
        hostname: Input<string>;
        service: Input<string>;
        zoneId?: Input<string>;
        zoneName?: Input<string>;
    }

    Hierarchy

    • WorkersCustomDomainArgs
      • WorkerDomainProps
    Index

    Properties

    accountId?: Input<string>

    Identifier.

    environment?: Input<string>

    Worker environment associated with the domain.

    This attribute is deprecated.

    hostname: Input<string>

    Hostname of the domain. Can be either the zone apex or a subdomain of the zone. Requests to this hostname will be routed to the configured Worker.

    service: Input<string>

    Name of the Worker associated with the domain. Requests to the configured hostname will be routed to this Worker.

    zoneId?: Input<string>

    ID of the zone containing the domain hostname.

    zoneName?: Input<string>

    Name of the zone containing the domain hostname.