-
Notifications
You must be signed in to change notification settings - Fork 24
Description
The way this library is set up, a particular resource ARN basically always maps to a single console URL. In practice though the AWS console often has multiple pages associated with a given ARN.
One case is when a resource has a number of subpages or tabs. For some resources you can just append the subpath to the end of the URL that link2aws gives you back, but for others (e.g. ECS Services, CodePipelines) the URL has a query string so you've got to splice the subpath in.
A more compelling case to me is sub-resources that have console URLs but don't have their own resource type. Some of these (e.g. Cloudwatch Log Streams, S3 Objects) have ARN representations, others (e.g. CodePipeline executions) don't appear to. It would be useful to be able to generate console links for these guys.
There are a bunch of ways this functionality could be implemented, but in general it seems pretty far outside the current scope of this project. Was wondering if you've thought about this and whether this is a feature you'd be interested in vs. a non-goal.
Thanks!