Module Values_0.FailedBatchAssociationSummarySource

Contains information about a resource that failed to be associated with a workspace in a batch operation.

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

    The Amazon Resource Name (ARN) of the resource that failed to be associated.

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

    The error code indicating why the association failed.

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

    An error message describing why the association failed.

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