Module Values.BatchGetPolicyErrorItemSource

Contains the information about an error resulting from a BatchGetPolicy API call.

Sourcetype nonrec t = {
  1. code : BatchGetPolicyErrorCode.t option;
    (*

    The error code that was returned.

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

    The identifier of the policy store associated with the failed request.

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

    The identifier of the policy associated with the failed request.

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

    A detailed error message.

    *)
}
Sourceval make : ?code:??? -> ?policyStoreId:??? -> ?policyId:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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