Amazon Inspector · JSON Structure

Inspector Create Findings Report Request Structure

CreateFindingsReportRequest schema

Type: object Properties: 3 Required: 2
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

Properties

filterCriteria reportFormat s3Destination

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-inspector/refs/heads/main/json-structure/inspector-create-findings-report-request-structure.json",
  "name": "CreateFindingsReportRequest",
  "description": "CreateFindingsReportRequest schema",
  "type": "object",
  "properties": {
    "filterCriteria": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FilterCriteria"
        },
        {
          "description": "The filter criteria to apply to the results of the finding report."
        }
      ]
    },
    "reportFormat": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportFormat"
        },
        {
          "description": "The format to generate the report in."
        }
      ]
    },
    "s3Destination": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Destination"
        },
        {
          "description": "The Amazon S3 export destination for the report."
        }
      ]
    }
  },
  "required": [
    "reportFormat",
    "s3Destination"
  ]
}