Module Values.RemediationExceptionResourceKeySource

The details that identify a resource within Config, including the resource type and resource ID.

Sourcetype nonrec t = {
  1. resourceType : StringWithCharLimit256.t option;
    (*

    The type of a resource.

    *)
  2. resourceId : StringWithCharLimit1024.t option;
    (*

    The ID of the resource (for example., sg-xxxxxx).

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StringWithCharLimit256.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