Module Values.PutTargetsResultEntrySource

Represents a target that failed to be added to a rule.

Sourcetype nonrec t = {
  1. targetId : TargetId.t option;
    (*

    The ID of the target.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code that indicates why the target addition failed. If the value is ConcurrentModificationException, too many requests were made at the same time.

    *)
  3. errorMessage : ErrorMessage.t option;
    (*

    The error message that explains why the target addition failed.

    *)
}
Sourceval make : ?targetId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TargetId.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