Module Values.ErrorDetailSource

An object representing an error when an asynchronous operation fails.

Sourcetype nonrec t = {
  1. errorCode : ErrorCode.t option;
    (*

    A brief description of the error. SubnetNotFound: We couldn't find one of the subnets associated with the cluster. SecurityGroupNotFound: We couldn't find one of the security groups associated with the cluster. EniLimitReached: You have reached the elastic network interface limit for your account. IpNotAvailable: A subnet associated with the cluster doesn't have any available IP addresses. AccessDenied: You don't have permissions to perform the specified operation. OperationNotPermitted: The service role associated with the cluster doesn't have the required access permissions for Amazon EKS. VpcIdNotFound: We couldn't find the VPC associated with the cluster.

    *)
  2. errorMessage : String_.t option;
    (*

    A more complete description of the error.

    *)
  3. resourceIds : StringList.t option;
    (*

    An optional field that contains the resource IDs associated with the error.

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