Module Values_0.TargetPreviewSource

Information about the resources that would be included in the actual runbook execution, if it were to be run.

Sourcetype nonrec t = {
  1. count : Integer.t option;
    (*

    The number of resources of a certain type included in an execution preview.

    *)
  2. targetType : String_.t option;
    (*

    A type of resource that was included in the execution preview.

    *)
}
Sourceval make : ?count:??? -> ?targetType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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