Module Values.ServiceQuotaExceededExceptionSource

The request exceeds the service quota for Amazon Managed Workflows for Apache Airflow Serverless resources. This can occur when you attempt to create more workflows than allowed, exceed concurrent workflow run limits, or surpass task execution limits. Amazon Managed Workflows for Apache Airflow Serverless implements admission control using DynamoDB-based counters to manage resource utilization across the multi-tenant environment. Contact Amazon Web Services Support to request quota increases if you need higher limits for your use case.

Sourcetype nonrec t = {
  1. message : ErrorMessage.t option;
  2. resourceId : String_.t option;
    (*

    The unique identifier of the resource.

    *)
  3. resourceType : String_.t option;
    (*

    The type of resource affected.

    *)
  4. serviceCode : String_.t option;
    (*

    The code for the service.

    *)
  5. quotaCode : String_.t option;
    (*

    The code of the quota.

    *)
}
Sourceval make : ?message:??? -> ?resourceId:??? -> ?resourceType:??? -> ?serviceCode:??? -> ?quotaCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ErrorMessage.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