Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions link2aws.js
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ class ARN {
"index": null,
},
"kinesis": { // Amazon Kinesis
"stream": null,
"stream": () => `https://${this.region}.console.aws.amazon.com/kinesis/home?region=${this.region}#/streams/details/${this.resource}/details`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a unit test case to cover this change? You can see examples here: https://github.com/link2aws/link2aws.github.io/blob/master/testcases/aws.json

},
"kinesisanalytics": { // Amazon Kinesis Analytics V2
"application": null,
Expand Down Expand Up @@ -1102,4 +1102,4 @@ if (typeof (require) !== 'undefined' && require.main === module) {
}
}

exports.ARN = ARN;
exports.ARN = ARN;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you remove the unnecessary whitespace change?