Module Values.DiscoveredResourceSource

A resource in the organization that's available to be associated with a Firewall Manager resource set.

Sourcetype nonrec t = {
  1. uRI : Identifier.t option;
    (*

    The universal resource identifier (URI) of the discovered resource.

    *)
  2. accountId : AWSAccountId.t option;
    (*

    The Amazon Web Services account ID associated with the discovered resource.

    *)
  3. type_ : ResourceType.t option;
    (*

    The type of the discovered resource.

    *)
  4. name : ResourceName.t option;
    (*

    The name of the discovered resource.

    *)
}
Sourceval make : ?uRI:??? -> ?accountId:??? -> ?type_:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Identifier.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