Amazon Elastic Load Balancing · JSON Structure

Amazon Elastic Load Balancing Rule Structure

Describes a rule

Type: object Properties: 5
Amazon Web ServicesHigh AvailabilityLoad BalancingNetworkingScalability

Rule is a JSON Structure definition published by Amazon Elastic Load Balancing, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ruleArn priority conditions actions isDefault

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-elastic-load-balancing/refs/heads/main/json-structure/amazon-elastic-load-balancing-rule-structure.json",
  "name": "Rule",
  "description": "Describes a rule",
  "type": "object",
  "properties": {
    "ruleArn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the rule"
    },
    "priority": {
      "type": "string",
      "description": "The priority of the rule"
    },
    "conditions": {
      "type": "array",
      "description": "The conditions for the rule",
      "items": {
        "type": "object",
        "properties": {
          "field": {
            "type": "string",
            "description": "The name of the field"
          },
          "values": {
            "type": "array",
            "description": "The condition values",
            "items": {
              "type": "string"
            }
          }
        }
      }
    },
    "actions": {
      "type": "array",
      "description": "The actions for the rule",
      "items": {
        "$ref": "#/components/schemas/Action"
      }
    },
    "isDefault": {
      "type": "boolean",
      "description": "Whether this is the default rule"
    }
  }
}