Module Values.ValidationExceptionSource

The specified request parameters are invalid, missing, or inconsistent with Amazon Managed Workflows for Apache Airflow Serverless service requirements. This can occur when workflow definitions contain unsupported operators, when required IAM permissions are missing, when S3 locations are inaccessible, or when network configurations are invalid. The service validates workflow definitions, execution roles, and resource configurations to ensure compatibility with the managed Airflow environment and security requirements.

Sourcetype nonrec t = {
  1. message : ErrorMessage.t option;
  2. reason : ValidationExceptionReason.t option;
    (*

    The reason the request failed validation.

    *)
  3. fieldList : ValidationExceptionFields.t option;
    (*

    The fields that failed validation.

    *)
}
Sourceval make : ?message:??? -> ?reason:??? -> ?fieldList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `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