Module Values.ResourceIdentifierSource

The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name.

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

    The type of resource.

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

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

    *)
  3. resourceName : ResourceName.t option;
    (*

    The custom name of the resource (if available).

    *)
  4. resourceDeletionTime : ResourceDeletionTime.t option;
    (*

    The time that the resource was deleted.

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