Amazon GuardDuty · Schema

GetIPSetResponse

GetIPSetResponse schema from Amazon GuardDuty API

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Name object
Format object
Location object
Status object
Tags object
View JSON Schema on GitHub

JSON Schema

guardduty-get-ip-set-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-get-ip-set-response-schema.json",
  "title": "GetIPSetResponse",
  "description": "GetIPSetResponse schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "The user-friendly name for the IPSet."
        }
      ]
    },
    "Format": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpSetFormat"
        },
        {
          "xml": {
            "name": "format"
          },
          "description": "The format of the file that contains the IPSet."
        }
      ]
    },
    "Location": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Location"
        },
        {
          "xml": {
            "name": "location"
          },
          "description": "The URI of the file that contains the IPSet."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpSetStatus"
        },
        {
          "xml": {
            "name": "status"
          },
          "description": "The status of IPSet file that was uploaded."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "xml": {
            "name": "tags"
          },
          "description": "The tags of the IPSet resource."
        }
      ]
    }
  },
  "required": [
    "Name",
    "Format",
    "Location",
    "Status"
  ]
}