Documentation
¶
Overview ¶
Package resourceexplorer2 serves the AWS Resource Explorer 2 REST-JSON protocol against a *resourcediscovery.Engine.
Resource Explorer maintains stateful Views (saved filter expressions) and Indexes (per-region resource catalogs). This handler stores both in memory and routes Search/ListResources through the engine.
Filter language: a documented subset of real Resource Explorer query syntax. Supported tokens:
service:<name> (e.g., service:s3) tag.<key>:<value> (e.g., tag.env:prod) region:<name> (e.g., region:us-east-1)
Unknown tokens are tolerated and ignored. Real Resource Explorer supports a wider grammar; tighten this as later phases need.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler serves Resource Explorer 2 REST-JSON requests.
func New ¶
func New(engine *resourcediscovery.Engine, accountID, region string) *Handler
New returns a Resource Explorer 2 handler.