A map of [[HttpRequestType]] to HTTP status codes. For the included request types, requests will not be retried if they return those codes.

The key must be a string belonging to [[HttpRequestType]]

Since

8.4

Example:

disable_retry_for_response_status: {
[HttpRequestType.MANIFEST_DASH]: [ 401 ]
}
interface ResponseStatusMap {
    [name: string]: number[];
}

Indexable

[name: string]: number[]