(args inProgressJobLogURLTemplateArgs)
| 100 | } |
| 101 | |
| 102 | func inProgressBatchJobLogsURL(args inProgressJobLogURLTemplateArgs) (string, error) { |
| 103 | buf := &bytes.Buffer{} |
| 104 | err := _inProgressJobLogsURLTemplate.Execute(buf, args) |
| 105 | if err != nil { |
| 106 | return "", err |
| 107 | } |
| 108 | |
| 109 | return strings.TrimSpace(buf.String()), nil |
| 110 | } |
| 111 | |
| 112 | func APILogURL(api spec.API) (string, error) { |
| 113 | partition := "aws.amazon" |
no test coverage detected