Record: ResponseLimitConfigs
Provides inbound response status line, total header and entity body size threshold configurations.
Closed record
Fields
- maxStatusLineLength int(default 4096)
- maxHeaderSize int(default 8192)
- maxEntityBodySize int(default -1)
Maximum allowed length for response status line(HTTP/1.1 200 OK
). Exceeding this limit will
result in a ClientError
Maximum allowed size for headers. Exceeding this limit will result in a ClientError
Maximum allowed size for the entity body. By default it is set to -1 which means there is no
restriction maxEntityBodySize
, On the Exceeding this limit will result in a ClientError