Module Values.ResourceQuotasSource

A set of per-resource AWS Elastic Beanstalk quotas associated with an AWS account. They reflect Elastic Beanstalk resource limits for this account.

Sourcetype nonrec t = {
  1. applicationQuota : ResourceQuota.t option;
    (*

    The quota for applications in the AWS account.

    *)
  2. applicationVersionQuota : ResourceQuota.t option;
    (*

    The quota for application versions in the AWS account.

    *)
  3. environmentQuota : ResourceQuota.t option;
    (*

    The quota for environments in the AWS account.

    *)
  4. configurationTemplateQuota : ResourceQuota.t option;
    (*

    The quota for configuration templates in the AWS account.

    *)
  5. customPlatformQuota : ResourceQuota.t option;
    (*

    The quota for custom platforms in the AWS account.

    *)
}
Sourceval make : ?applicationQuota:??? -> ?applicationVersionQuota:??? -> ?environmentQuota:??? -> ?configurationTemplateQuota:??? -> ?customPlatformQuota:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of BoxedInt.t ]) list ]) 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