Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateLoadBalancerRequest

import type { CreateLoadBalancerRequest } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";
interface CreateLoadBalancerRequest {
certificateAlternativeNames?: string[] | null;
certificateDomainName?: string | null;
certificateName?: string | null;
healthCheckPath?: string | null;
instancePort: number;
ipAddressType?: IpAddressType | null;
loadBalancerName: string;
tags?: Tag[] | null;
}

§Properties

§
certificateAlternativeNames?: string[] | null
[src]

The optional alternative domains and subdomains to use with your SSL/TLS certificate (e.g., www.example.com, example.com, m.example.com, blog.example.com).

§
certificateDomainName?: string | null
[src]

The domain name with which your certificate is associated (e.g., example.com).

If you specify certificateDomainName, then certificateName is required (and vice-versa).

§
certificateName?: string | null
[src]

The name of the SSL/TLS certificate.

If you specify certificateName, then certificateDomainName is required (and vice-versa).

§
healthCheckPath?: string | null
[src]

The path you provided to perform the load balancer health check. If you didn't specify a health check path, Lightsail uses the root path of your website (e.g., "/").

You may want to specify a custom health check path other than the root of your application if your home page loads slowly or has a lot of media or scripting on it.

§
instancePort: number
[src]

The instance port where you're creating your load balancer.

§
ipAddressType?: IpAddressType | null
[src]

The IP address type for the load balancer.

The possible values are ipv4 for IPv4 only, and dualstack for IPv4 and IPv6.

The default value is dualstack.

§
loadBalancerName: string
[src]

The name of your load balancer.

§
tags?: Tag[] | null
[src]

The tag keys and optional values to add to the resource during create.

Use the TagResource action to tag a resource after it's created.