link2aws 1.0.5 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/link2aws.js +5 -4
- package/package.json +1 -1
package/link2aws.js
CHANGED
|
@@ -361,7 +361,7 @@ class ARN {
|
|
|
361
361
|
},
|
|
362
362
|
"dynamodb": { // Amazon DynamoDB
|
|
363
363
|
"global-table": null,
|
|
364
|
-
"table":
|
|
364
|
+
"table": () => `https://${this.region}.${this.console}/dynamodbv2/home?region=${this.region}#table?name=${this.resource}`,
|
|
365
365
|
},
|
|
366
366
|
"ec2": { // AWS Systems Manager
|
|
367
367
|
"capacity-reservation": null,
|
|
@@ -387,10 +387,10 @@ class ARN {
|
|
|
387
387
|
"placement-group": null,
|
|
388
388
|
"reserved-instances": null,
|
|
389
389
|
"route-table": null,
|
|
390
|
-
"security-group":
|
|
390
|
+
"security-group": () => `https://${this.region}.${this.console}/vpc/home?region=${this.region}#SecurityGroup:groupId=${this.resource}`,
|
|
391
391
|
"snapshot": null,
|
|
392
392
|
"spot-instances-request": null,
|
|
393
|
-
"subnet":
|
|
393
|
+
"subnet": () => `https://${this.region}.${this.console}/vpc/home?region=${this.region}#SubnetDetails:subnetId=${this.resource}`,
|
|
394
394
|
"traffic-mirror-filter": null,
|
|
395
395
|
"traffic-mirror-filter-rule": null,
|
|
396
396
|
"traffic-mirror-session": null,
|
|
@@ -664,7 +664,7 @@ class ARN {
|
|
|
664
664
|
"StaticIp": null,
|
|
665
665
|
},
|
|
666
666
|
"logs": { // Amazon CloudWatch Logs
|
|
667
|
-
"log-group":
|
|
667
|
+
"log-group": () => `https://${this.region}.${this.console}/cloudwatch/home?region=${this.region}#logsV2:log-groups/log-group/${this.resource.replace(/:\*$/, "").replace(/#/g, "$2523").replace(/[/]/g, "$252F")}`,
|
|
668
668
|
},
|
|
669
669
|
"machinelearning": { // Amazon Machine Learning
|
|
670
670
|
"batchprediction": null,
|
|
@@ -942,6 +942,7 @@ class ARN {
|
|
|
942
942
|
"sns": { // Amazon SNS
|
|
943
943
|
},
|
|
944
944
|
"sqs": { // Amazon SQS
|
|
945
|
+
"": () => `https://${this.region}.${this.console}/sqs/v2/home?region=${this.region}#/queues/https%3A%2F%2Fsqs.${this.region}.amazonaws.com%2F${this.account}%2F${this.resource}`
|
|
945
946
|
},
|
|
946
947
|
"ssm": { // AWS Systems Manager
|
|
947
948
|
"association": null,
|