Values.CreateContainerServiceDeploymentRequestSourceCreates a deployment for your Amazon Lightsail container service. A deployment specifies the containers that will be launched on the container service and their settings, such as the ports to open, the environment variables to apply, and the launch command to run. It also specifies the container that will serve as the public endpoint of the deployment and its settings, such as the HTTP or HTTPS port to use, and the health check configuration. You can deploy containers to your container service using container images from a public registry such as Amazon ECR Public, or from your local machine. For more information, see Creating container images for your Amazon Lightsail container services in the Amazon Lightsail Developer Guide.
type nonrec t = {serviceName : ContainerServiceName.t;The name of the container service for which to create the deployment.
*)containers : ContainerMap.t option;An object that describes the settings of the containers that will be launched on the container service.
*)publicEndpoint : EndpointRequest.t option;An object that describes the settings of the public endpoint for the container service.
*)}val make :
?containers:??? ->
?publicEndpoint:??? ->
serviceName:ContainerServiceName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of ContainerName.t ]
* [> `Structure of
(string
* [> `List of [> `String of String_.t ] list
| `Map of
([> `String of String_.t ]
* [> `Enum of string | `String of String_.t ])
list
| `String of String_.t ])
list ])
list
| `String of ContainerServiceName.t
| `Structure of
(string
* [> `Integer of Integer.t
| `String of String_.t
| `Structure of
(string * [> `Integer of Integer.t | `String of String_.t ])
list ])
list ])
list ]