Module Values.UnsupportedResourceSource

Defines a resource that is not supported by Resilience Hub.

Sourcetype nonrec t = {
  1. logicalResourceId : LogicalResourceId.t option;
    (*

    Logical resource identifier for the unsupported resource.

    *)
  2. physicalResourceId : PhysicalResourceId.t option;
    (*

    Physical resource identifier for the unsupported resource.

    *)
  3. resourceType : String255.t option;
    (*

    The type of resource.

    *)
  4. unsupportedResourceStatus : String255.t option;
    (*

    The status of the unsupported resource.

    *)
}
Sourceval make : ?logicalResourceId:??? -> ?physicalResourceId:??? -> ?resourceType:??? -> ?unsupportedResourceStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String255.t | `Structure of (string * [> `Enum of string | `String of String255.t ]) list ]) 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