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

ContainerServiceDeploymentRequest

import type { ContainerServiceDeploymentRequest } from "https://aws-api.deno.dev/v0.4/services/lightsail.ts?docs=full";

Describes a container deployment configuration of an Amazon Lightsail container service.

A deployment specifies the settings, such as the ports and launch command, of containers that are deployed to your container service.

interface ContainerServiceDeploymentRequest {
containers?: {
[key: string]: Container | null | undefined;
}
| null;
publicEndpoint?: EndpointRequest | null;
}

§Properties

§
containers?: {
[key: string]: Container | null | undefined;
}
| null
[src]

An object that describes the configuration for the containers of the deployment.

§
publicEndpoint?: EndpointRequest | null
[src]

An object that describes the endpoint of the deployment.