Module Values.AwsEcsContainerDetailsSource

Provides information about an Amazon ECS container.

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

    The name of the container.

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

    The image used for the container.

    *)
  3. mountPoints : AwsMountPointList.t option;
    (*

    The mount points for data volumes in your container.

    *)
  4. 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 : ?name:??? -> ?image:??? -> ?mountPoints:??? -> ?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