String returns the string format of the ARN
()
| 133 | |
| 134 | // String returns the string format of the ARN |
| 135 | func (arn Arn) String() string { |
| 136 | return "arn:" + arn.Partition + ":" + arn.Service + ":" + arn.Region + ":" + arn.AccountID + ":" + arn.Resource |
| 137 | } |
| 138 | |
| 139 | // Config - represents one single notification configuration |
| 140 | // such as topic, queue or lambda configuration. |
no outgoing calls