Module Values.FailedResourceSource

A resource that failed to be added to or removed from a group.

Sourcetype nonrec t = {
  1. resourceArn : ResourceArn.t option;
    (*

    The Amazon resource name (ARN) of the resource that failed to be added or removed.

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

    The error message text associated with the failure.

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

    The error code associated with the failure.

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