Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dependencies: Add the AWS ARN package
We can now turn this: ``` arn := fmt.Sprintf("arn:%s:rds:%s:%s:cluster:%s", partition, region, accountid, identifier) ``` into a much nicer way to represent it: ``` arn := arn2.ARN{ Partition: partition, Region: region, Service: "rds", AccountID: accountid, Resource: fmt.Sprintf("cluster/%s", identifier), } ```
- Loading branch information