Values.AwsEcsContainerDetailsSourceProvides information about an Amazon ECS container.
type nonrec t = {name : NonEmptyString.t option;The name of the container.
*)image : NonEmptyString.t option;The image used for the container.
*)mountPoints : AwsMountPointList.t option;The mount points for data volumes in your container.
*)privileged : Boolean.t option;When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of
[> `Structure of (string * [> `String of NonEmptyString.t ]) list ]
list
| `String of NonEmptyString.t ])
list ]