Module Values.BatchGetRouterOutputErrorSource

An error that occurred when retrieving multiple router outputs in the BatchGetRouterOutput operation, including the ARN, error code, and error message.

Sourcetype nonrec t = {
  1. arn : RouterOutputArn.t option;
    (*

    The Amazon Resource Name (ARN) of the router output for which the error occurred.

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

    The error code associated with the error.

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

    A message describing the error.

    *)
}
Sourceval make : ?arn:??? -> ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RouterOutputArn.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