Module Values.NetworkMigrationFailedResourceDetailsSource

Details about a resource that failed to deploy.

Sourcetype nonrec t = {
  1. logicalID : LogicalID.t option;
    (*

    The logical ID of the failed resource.

    *)
  2. status : NetworkMigrationFailedResourceStatus.t option;
    (*

    The status of the failed resource.

    *)
  3. statusReason : LargeBoundedString.t option;
    (*

    The reason why the resource failed.

    *)
}
Sourceval make : ?logicalID:??? -> ?status:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LogicalID.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