Amazon Inspector · Schema

GetEc2DeepInspectionConfigurationResponse

GetEc2DeepInspectionConfigurationResponse schema

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
errorMessage object
orgPackagePaths object
packagePaths object
status object
View JSON Schema on GitHub

JSON Schema

inspector-get-ec2-deep-inspection-configuration-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-get-ec2-deep-inspection-configuration-response-schema.json",
  "title": "GetEc2DeepInspectionConfigurationResponse",
  "description": "GetEc2DeepInspectionConfigurationResponse schema",
  "type": "object",
  "properties": {
    "errorMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "An error message explaining why Amazon Inspector deep inspection configurations could not be retrieved for your account."
        }
      ]
    },
    "orgPackagePaths": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PathList"
        },
        {
          "description": "The Amazon Inspector deep inspection custom paths for your organization."
        }
      ]
    },
    "packagePaths": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PathList"
        },
        {
          "description": "The Amazon Inspector deep inspection custom paths for your account."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Ec2DeepInspectionStatus"
        },
        {
          "description": "The activation status of Amazon Inspector deep inspection in your account."
        }
      ]
    }
  }
}