Module Values.AwsEcsTaskDefinitionContainerDefinitionsUlimitsDetailsSource

A ulimit to set in the container.

Sourcetype nonrec t = {
  1. hardLimit : Integer.t option;
    (*

    The hard limit for the ulimit type.

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

    The type of the ulimit. Valid values are as follows: core cpu data fsize locks memlock msgqueue nice nofile nproc rss rtprio rttime sigpending stack

    *)
  3. softLimit : Integer.t option;
    (*

    The soft limit for the ulimit type.

    *)
}
Sourceval make : ?hardLimit:??? -> ?name:??? -> ?softLimit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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