AwsErrorMessage Example: { "errorMessage": "2018-05-10T06:42:59.753Z 5f46a493-541d-11e8-a58a-ed2562190b91 Task timed out after 3.00 seconds" }
| 35 | // "errorMessage": "2018-05-10T06:42:59.753Z 5f46a493-541d-11e8-a58a-ed2562190b91 Task timed out after 3.00 seconds" |
| 36 | // } |
| 37 | type AwsErrorMessage struct { |
| 38 | ErrorMessage string `json:"errorMessage"` |
| 39 | } |
| 40 | |
| 41 | func (m *AwsErrorMessage) String() string { |
| 42 | if m == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected