RetryStrategy provides controls on how to retry a taskgraph node
| Name | Type | Description | Notes |
|---|---|---|---|
| backoff | Backoff | [optional] | |
| expression | String | Expression is a condition expression for when a node will be retried. If it evaluates to false, the node will not be retried and the retry strategy will be ignored | [optional] |
| limit | Integer | Limit is the maximum number of retry attempts when retrying a container. It does not include the original container; the maximum number of total attempts will be `limit + 1`. | [optional] |
| retryPolicy | RetryPolicy | [optional] |