Interface HttpDeployment

HttpDeployment represents an API that has been deployed and is available at a URL.

interface HttpDeployment {
    customDomainNames: Output<string>[];
    url: Output<string>;
}

Properties

customDomainNames: Output<string>[]

An optional list of custom domain names, each corresponding to a previous call to attachCustomDomain on the API. Each name should be mapped using a DNS A record.

url: Output<string>

The URL at which the HttpDeployment is available to the Internet.

Generated using TypeDoc