Values.ContainerSourceDetails of a container.
type nonrec t = {containerRuntime : String_.t option;The container runtime (such as, Docker or containerd) used to run the container.
*)id : String_.t option;Container ID.
*)name : String_.t option;Container name.
*)image : String_.t option;Container image.
*)imagePrefix : String_.t option;Part of the image name before the last slash. For example, imagePrefix for public.ecr.aws/amazonlinux/amazonlinux:latest would be public.ecr.aws/amazonlinux. If the image name is relative and does not have a slash, this field is empty.
*)volumeMounts : VolumeMounts.t option;Container volume mounts.
*)securityContext : SecurityContext.t option;Container security context.
*)}