Amazon Shield · JSON Structure

Amazon Shield Api Create Protection Group Request Structure

CreateProtectionGroupRequest schema from api

Type: object Properties: 5 Required: 3
DDoS ProtectionNetworkingSecurity

CreateProtectionGroupRequest is a JSON Structure definition published by Amazon Shield, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ProtectionGroupId Aggregation Pattern ResourceType Members

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-shield/refs/heads/main/json-structure/amazon-shield-api-create-protection-group-request-structure.json",
  "description": "CreateProtectionGroupRequest schema from api",
  "type": "object",
  "properties": {
    "ProtectionGroupId": {
      "type": "string"
    },
    "Aggregation": {
      "type": "string",
      "enum": [
        "SUM",
        "MEAN",
        "MAX"
      ]
    },
    "Pattern": {
      "type": "string",
      "enum": [
        "ALL",
        "ARBITRARY",
        "BY_RESOURCE_TYPE"
      ]
    },
    "ResourceType": {
      "type": "string",
      "enum": [
        "CLOUDFRONT_DISTRIBUTION",
        "ROUTE_53_HOSTED_ZONE",
        "ELASTIC_IP_ALLOCATION",
        "CLASSIC_LOAD_BALANCER",
        "APPLICATION_LOAD_BALANCER",
        "GLOBAL_ACCELERATOR"
      ]
    },
    "Members": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "ProtectionGroupId",
    "Aggregation",
    "Pattern"
  ],
  "name": "CreateProtectionGroupRequest"
}