Module Values.ContainerDetailsSource

Container details related to a finding.

Sourcetype nonrec t = {
  1. containerRuntime : NonEmptyString.t option;
    (*

    The runtime of the container.

    *)
  2. name : NonEmptyString.t option;
    (*

    The name of the container related to a finding.

    *)
  3. imageId : NonEmptyString.t option;
    (*

    The identifier of the container image related to a finding.

    *)
  4. imageName : NonEmptyString.t option;
    (*

    The name of the container image related to a finding.

    *)
  5. launchedAt : NonEmptyString.t option;
    (*

    Indicates when the container started. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  6. volumeMounts : VolumeMountList.t option;
    (*

    Provides information about the mounting of a volume in a container.

    *)
  7. 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).

    *)
}
Sourceval make : ?containerRuntime:??? -> ?name:??? -> ?imageId:??? -> ?imageName:??? -> ?launchedAt:??? -> ?volumeMounts:??? -> ?privileged:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t