Akamai · Schema

behavioral-ddos-sensitivity-override

Hostnames and path, overriding the global sensitivity setting.

CDNCloudEdge ComputingNetworksPlatformSecurity

Properties

Name Type Description
host string Hostname in host and path pair to override. Wildcards are allowed (`*` and `?`).
path string Path in host and path pair to override. Wildcards are allowed (`*` and `?`).
sensitivity string Sensitivity level, specify `CONSERVATIVE` to provide tolerance for more substantial traffic deviations, `MODERATE` to provide tolerance for traffic fluctuations, or `STRICT` or high-security environme
View JSON Schema on GitHub

JSON Schema

appsec-behavioral-ddos-sensitivity-override-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/akamai/main/json-schema/appsec-behavioral-ddos-sensitivity-override-schema.json",
  "title": "behavioral-ddos-sensitivity-override",
  "additionalProperties": false,
  "description": "Hostnames and path, overriding the global sensitivity setting.",
  "properties": {
    "host": {
      "description": "Hostname in host and path pair to override.  Wildcards are allowed (`*` and `?`).",
      "type": "string"
    },
    "path": {
      "description": "Path in host and path pair to override.  Wildcards are allowed (`*` and `?`).",
      "type": "string"
    },
    "sensitivity": {
      "description": "Sensitivity level, specify `CONSERVATIVE` to provide tolerance for more substantial traffic deviations, `MODERATE` to provide tolerance for traffic fluctuations, or `STRICT` or high-security environments, where minor deviations in traffic might signal a potential DDoS attack.",
      "enum": [
        "CONSERVATIVE",
        "MODERATE",
        "STRICT"
      ],
      "type": "string"
    }
  },
  "required": [
    "host",
    "path",
    "sensitivity"
  ],
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/behavioral-ddos-sensitivity-override.yaml"
  }
}