Module Values.AccountLimitSource

Limits that are related to concurrency and storage. All file and storage sizes are in bytes.

Sourcetype nonrec t = {
  1. totalCodeSize : Long.t option;
    (*

    The amount of storage space that you can use for all deployment packages and layer archives.

    *)
  2. codeSizeUnzipped : Long.t option;
    (*

    The maximum size of a function's deployment package and layers when they're extracted.

    *)
  3. codeSizeZipped : Long.t option;
    (*

    The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files.

    *)
  4. concurrentExecutions : Integer.t option;
    (*

    The maximum number of simultaneous function executions.

    *)
  5. unreservedConcurrentExecutions : UnreservedConcurrentExecutions.t option;
    (*

    The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.

    *)
}
Sourceval make : ?totalCodeSize:??? -> ?codeSizeUnzipped:??? -> ?codeSizeZipped:??? -> ?concurrentExecutions:??? -> ?unreservedConcurrentExecutions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.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